Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (88)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (7366)

  • avformat/movenc : treat ALAC same as FLAC and write correct info

    14 décembre 2018, par Paul B Mahol
    avformat/movenc : treat ALAC same as FLAC and write correct info
    

    Fixes #7291.

    • [DH] libavformat/movenc.c
  • avfilter/buffersrc : print relevant info when skipping filter reinit

    25 janvier 2019, par Gyan Doshi
    avfilter/buffersrc : print relevant info when skipping filter reinit
    

    The timestamp of the changed input frame as well as its relevant
    properties can be examined by the user. Only applicable when
    reinit_filter is disabled on the input stream.

    • [DH] libavfilter/buffersrc.c
  • How to dump the H264/RTP stream to a file without losing time info ?

    3 février 2014, par Fernando Silveira

    I coded an application to receive RTP packets via TCP (no packets are lost) from a hardware camera and dump its H264 packets to a file so I could play the video using MPlayer or VLC. This is already working and I pretty much did the steps described here. The commands to play the video are mplayer -fps 24 -demuxer h264es foobar.h264 and vlc foobar.h264.

    The issue is now when I play the video. The camera changes the FPS frequently and because I drop the RTP info when writing the H264 file, the timestamp of each frame is lost. My question is : what do I have to do to fix the frame frequency ? Should I create empty/blank P-frames (if that is possible) ? If so, how would I do it ?

    Any solution using Linux compatible tools or libraries (like ffmpeg, libx264, libavcodec) using shell, C/C++ or Python is very much welcome.

    PS : I have almost no experience with video encoding and RTP.