Recherche avancée

Médias (91)

Autres articles (98)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5316)

  • avcodec/h264 : Partially decode and display single fields try #2

    20 janvier 2015, par Michael Niedermayer
    avcodec/h264 : Partially decode and display single fields try #2
    

    This like the previous attempt does not fully correctly decode this
    type of non standard H.264, but it now works fully automatic
    requiring no manual filters or flags to be used

    See Ticket2254

    Reviewed-by : Kieran Kunhya <kierank@obe.tv>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/h264.c
    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_slice.c
  • x86 : 32-byte align the stack if possible

    3 mai 2013, par Jason Garrett-Glaser
    x86 : 32-byte align the stack if possible
    

    Avoids the need for manual 32 byte array alignment on compilers that support
    - mpreferred-stack-boundary.

    • [DH] common/cpu.h
    • [DH] common/osdep.h
    • [DH] common/x86/cpu-a.asm
    • [DH] configure
  • How to make ffmpeg exit when rtmp input stream ends ?

    29 juillet 2021, par Remi

    I am using ffmpeg to transcode a stream from my local nginx rtmp server, and send the transcoded media back to the same local rtmp server. When the stream goes offline, ffmpeg stays active. When the stream starts again, ffmpeg picks up the transcoding work.

    &#xA;

    I'd like ffmpeg to exit when the input rtmp stream stops, but I cannot find out to configure it to do that. I've looked through the manual page and the online documentation.

    &#xA;

    For completeness, these are the arguments I currectly provide to ffmpeg :

    &#xA;

    &#xA;

    ffmpeg -i 'rtmp ://localhost/live/ijsbeer' -s '1280x720' -vcodec 'libx264' -preset 'veryfast' -crf '25' -maxrate '2000k' -bufsize '1000.0k' -force_key_frames '0:00:02' -max_muxing_queue_size '4096' -acodec 'copy' -copyts -copytb '0' -f 'flv' 'rtmp ://localhost/live/ijsbeer_720p'

    &#xA;

    &#xA;

    Making ffmpeg exit itself solves two of my problems. Firstly, ffmpeg sometimes experiences non-monotonous DTS issues when the encoder (OBS) streaming to the rtmp server restarts. Second, I'd like to implement a basic monitoring system to notify me of issues in the transcoder. Making ffmpeg exit when the input stream stops seems like to most reliable way to determine if ffmpeg is doing work. Parsing the stderr/stdout isn't reliable as there is no clear output format.

    &#xA;

    When transcoding I receive these regular stderr lines :

    &#xA;

    &#xA;

    frame= 241 fps= 30 q=30.0 size= 38kB time=00:00:09.74 bitrate= 32.0kbits/s speed= 1.2x

    &#xA;

    &#xA;

    Which pause when I stop the source stream. There is no log output stating the source stream has exited.

    &#xA;