Recherche avancée

Médias (91)

Autres articles (31)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4642)

  • Restream TS file in HTTP server to RTMP server using ffmpeg

    15 juin 2018, par MatrixCow08

    I want to restream http://example.com/1.ts to a RTMP server.

    The command I use is :

    ffmpeg -i http://example.com/1.ts -ar 44100 -preset medium -crf 22 -x264-params keyint=2:min-keyint=2 -bufsize 500k -vcodec libx264 -b:v 700k -maxrate 700k -r 25 -f flv rtmp://janjuapublisher.com/live/MY_CHANNEL_NAME?key=MY_KEY&id=MY_ID

    I use www.janjua.tv to create my TV channel and it give me the RTMP details as follows :

    FMS URL : rtmp ://janjuapublisher.com/live

    Stream Name : MY_CHANNEL_NAME ?key=MY_KEY&id=MY_ID

    However, I get Connection failed: application rejected and unsupported authentication method when I run this ffmpeg command.

    My command work fine in Twitch’s RTMP server because it is easy to use, but I can’t figure out how to use JanJua.tv .. Where to put the Stream Name, Key, Secret ?

    Any help would be appreciated.

    Thanks !

  • overlay line chart over video clip, having that line go up or down based on excel time series data

    26 janvier 2021, par QRrabbit

    I have a question, if this can be done with ffmpeg. If not, please suggest a plugin or a tool.
My basic need is, I have a video shot from the moving car, and speed is recorded into an excel file, with time and current speed as well as various other parameters.

    


    How can I output this video that combines a video footage with a changing graph, I will align the first record of the dataset with the first frame of the video, and then need to plot that line right over the video. As video progresses, the chart is updated from the excel dataset :
enter image description here

    


  • given a line number. which command sets the string at this line number as a parameter [duplicate]

    1er juillet 2022, par pitterpatter

    i have two lists.

    


    urls.txt contains urls line by line to files.

    


    they are named gibberish like 2345.mp4

    


    filenames.txt contains new filenames i want for those files.

    


    also line by line. both lists are in the correct order.

    


    i want to download those files in urls.txt with ffmpeg and rename them.

    


    i dont know how to work it out for the filenames.txt

    


    so far i have a for loop functioning with the gibberish filenames.

    


    how do i get the new filenames ?

    


    assume the for loop increments line numbers i++, which command sets the string at this line number as a parameter ?

    


    for /f %%a in (urls.txt) do ( 
ffmpeg -i "%%a" -c copy "%%~na.mp4" )