Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (95)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (10020)

  • avformat/mxfenc : Write Audio Ref Level for D10

    6 avril 2018, par Michael Niedermayer
    avformat/mxfenc : Write Audio Ref Level for D10
    

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

    • [DH] libavformat/mxfenc.c
    • [DH] tests/ref/fate/copy-trac4914
    • [DH] tests/ref/fate/mxf-reel_name
    • [DH] tests/ref/fate/time_base
    • [DH] tests/ref/lavf/mxf
    • [DH] tests/ref/lavf/mxf_d10
    • [DH] tests/ref/lavf/mxf_dv25
    • [DH] tests/ref/lavf/mxf_dvcpro50
    • [DH] tests/ref/lavf/mxf_opatom
    • [DH] tests/ref/lavf/mxf_opatom_audio
  • cbs_h265 : read/write content light level information SEI message

    10 mai 2018, par Haihao Xiang
    cbs_h265 : read/write content light level information SEI message
    

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/cbs_h2645.c
    • [DH] libavcodec/cbs_h265.h
    • [DH] libavcodec/cbs_h265_syntax_template.c
  • How can I optimize MP4 file encoding in openRTSP to the same level as FFmpeg ?

    2 juillet 2018, par Wolfgang Klenk

    I currently receive and store a RTSP stream from a camera with openRTSP with a command like this :

    openRTSP -4 "rtsp://192.168.41.185/rtsp_tunnel?h26x=4&amp;line=1&amp;inst=2" > movie.mp4

    I can do the same using FFmpeg :

    ffmpeg -i "rtsp://192.168.41.185/rtsp_tunnel?h26x=4&amp;line=1&amp;inst=2" -vcodec copy movie.mp4

    The video frames from the camera are 1280x720 (H.264) at around 30 fps and have a milliseconds timestamp stamped in. When I view the movie.mp4 created by ffmpeg it looks pretty nice, the seconds stamped into the video stream seem rather accurate. On the contrary, if I view the movie.mp4 created by openRTSP, the seconds in the video timestamp last definitively longer than the ones in reality. So one second on video could last two seconds in reality. I made several tests, and it is not an issue of network performance or of handling the messages received from the camera. The reason seems to be the part where the messages are encoded into this MP4 container.

    Is FFmpeg so much faster doing this than openRTSP ?

    Can I optimize the MP4 encoding in openRTSP somehow ?