Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (103)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (7464)

  • Revision 66300 : style des forum, a finir

    27 septembre 2012, par cedric@… — Log

    style des forum, a finir

  • doc/examples : add fuzz target for individual ffmpeg APIs for in-process fuzzing with...

    28 octobre 2016, par Thomas Garnier
    doc/examples : add fuzz target for individual ffmpeg APIs for in-process fuzzing with libFuzzer, AFL, and similar fuzzing engines.
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/examples/decoder_targeted.c
  • How can I make a GStreamer pipeline to read individual frames and publish stream ?

    30 janvier 2024, par Alvan Rahimli

    I have an external system which sends individual H264 encoded frames one by one via socket. What I'm trying to do is getting these frames and publishing an RTSP stream to RTSP server that I have.

    &#xA;

    After getting frames (which is just reading TCP socket in chunks) my current approach is like this :

    &#xA;

    I read frames, then start a process with following command, and then write every frame to STDIN of the process.

    &#xA;

    gst-launch-1.0 -e fdsrc fd=0 ! &#xA;                  h264parse ! &#xA;                  avdec_h264 ! &#xA;                  videoconvert ! &#xA;                  videorate ! &#xA;                  video/x-raw,framerate=25/1 ! &#xA;                  avimux ! &#xA;                  filesink location=gsvideo3.avi&#xA;

    &#xA;

    I know that it writes stream to AVI file, but this is closest I was able to get to a normal video. And it is probably very inefficient and full of redundant pipeline steps.

    &#xA;

    I am also open to FFMPEG commands, but GStreamer is preferred as I will be able to embed it to my C# project via bindings and keep stuff in-process.

    &#xA;

    Any help is appreciated, thanks in advance !

    &#xA;