Recherche avancée

Médias (91)

Autres articles (104)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (9611)

  • ffmpeg save remote file to user's computer

    18 mai 2018, par hmaxx

    I can cut and save a video from a remote server to my server using the below command :

    ffmpeg -ss 00:00:30 -i "example.com/test.mp4" -t 00:00:09 -acodec copy -vcodec copy -async 1 -y out.mp4

    I was wondering if I could prompt the user for a permission to save it on his computer instead of downloading it to my server. I will be using php with the exec function.

  • RTMP Stream Save Video using FFMPEG

    9 août 2019, par Abhishek Sengupta

    I am having trouble saving a live stream to disk using FFMPEG.

    It is saving the file after running the command :

    ffmpeg -i rtmp://000.00.0.0/hls/test1705269295 -c copy -f mp4 /var/www/html/1_1564654090862.mp4

    But it is becoming corrupted, if we dont use CTRL+C to save it manually, while the stream is still live.

    Is there any way so that ffmpeg will automatically save the files properly when the live stream ends by the streamer ?

  • How can I save a RTSP stream into PNG pictures with ffmpeg ?

    2 novembre 2015, par cirfe

    Now I can save a rtsp stream into PPM file with ffmepg.

    I want to know how to save a RTSP stream into PNG pictures ? Is there any one who can help me ?

    P.S. I want to achieve this with coding not in ffmpeg command like this "ffmpeg –i input_file –r 1 –f image2 image-%3d.png".