Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (43)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • 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 (...)

Sur d’autres sites (5612)

  • 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".

  • Writing decoded YUV420P data into a file with FFmpeg ?

    9 mai 2016, par Sir DrinksCoffeeALot

    I’ve read frame which is encoded with H264, decoded it, and converted it to YUV420P and the data is stored in frameYUV420->data, (type of frame is AVFrame). I want to save that data into a file that can be displayed with GIMP for example.

    I know how to save RGB25 pixel format but i’m not quite sure how to do YUV420P. Though i know that Y component will take width x height , and Cb/Cr will take (width/2) x (height/2) amount of space needed to save the data. So i’m guessing i need to first write Y data, and after that i need to write Cb and Cr data. Does anyone have finished code that i could take a look at ?