Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (15)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

  • Error at the stage initialization ffmpeg

    13 juin 2017, par Sasha Tsvigun

    I am developing an ios application to display an online stream through a rtsp link from IP cameras using the FFMPEG library. I’ve successfully added all the libraries and headers, successfully built the project. But at the initialization stage of the ffmpeg framework, when calling the function av_register_all () ; in the DidFinishLaunchingOutNOptions method, I get the following error.

    "_av_register_all", referenced from:
    clang: error: linker command failed with exit code 1 (use -v to see invocation)

    enter image description here

    If the function is commented - there is no error and the project is successfully started

    I understand that the problem is not great, but I can not solve it on my own. Maybe someone will tell how to solve it ?
    Thanks for any advice !

  • yuv420p pixel format in GStreamer ?

    5 août 2022, par cubecubed

    I am trying to stream a video from opencv/python to rtsp-simple-server via GStreamer. I am able to view the video fine in vlc, but the online streaming application I am using is very picky. I need the stream to have a pixel format of yuv420p. How do I convert a stream to this format with GStreamer ?

    


    This is my current code which creates a stream with the yuv444p :

    


    out = cv2.VideoWriter('appsrc ! videoconvert' + \
' ! x264enc speed-preset=ultrafast bitrate=600 key-int-max=40' + \
' ! rtspclientsink location=rtsp://localhost:554/video',
cv2.CAP_GSTREAMER, 0, fps, (width, height), True)


    


    I am looking for the GStreamer equivalent of -pix_fmt yuv420p

    


  • Overlaying alpha images on a video using ffmpeg

    10 mai 2016, par neuro_sys

    I have the following ffmpeg-cli command which does not produce the described effect in documentation. Could this be a bug, or I have something wrong with the command.

    ffmpeg \
       -y \
       -i small.mp4 \
       -i monkey/monkey_%04d.png \
       -filter_complex "[0:v][1:v]overlay=enable='between(t,1,5)'[out1]" \
       -map '[out1]' \
       output.mp4

    I expect it to overlay the #1 stream on top of #0 between seconds 1 and 5.

    You may download the test tarball from this link :

    It includes assets for the test case.

    The build I tried with :

    • ffmpeg-3.0.2-64bit-static (available online)