Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (13319)

  • FFmpeg, RTSP and Python : how to control it ?

    3 juin 2016, par Grigory E.

    We can put the RTSP stream into mp4 container this way :

    ffmpeg -hide_banner _RTSP-STREAM_ -c copy -map 0 -f segment -segment_time SEGTIME -segment_atclocktime 1 -segment_format mp4-strftime 1 PATH/%Y-%m-%d_%H-%M-%S.mp4"

    The question is how to wrap it in Python and how to handle SOME errors ?
    For example, some streams are buggy, so we should ignore Invalid UE golomb with ffmpeg

    But we should alert if the RTSP steram is down. And restart the FFmpeg....

    P.S. I don’t think FFmepg is the best choice, but I don’t know anything else.

  • ffprobe : add option to control optional fields display

    1er mai 2021, par Gyan Doshi
    ffprobe : add option to control optional fields display
    
    • [DH] doc/ffprobe.texi
    • [DH] fftools/ffprobe.c
  • FFmpeg AVPacket control

    4 avril 2012, par mmmaaak

    According to the text in avcodec.h file, there are some decoders may support multiple frames in one AVPacket, but avcodec_decode_video2 method decode only first frame... I must get all of them.

    In source code of libavcodec, parameter AVPacket noticed as const AVRacket *avpacket, so while decoding this packet decoder cant change AVPacket's fields, can I change maybe an offset of packet data or delete already recived data for making decoder read in loop all frames in the packet ???