Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (78)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10881)

  • lavc/pngdec : restructure exporting frame meta/side data

    20 mars 2021, par Anton Khirnov
    lavc/pngdec : restructure exporting frame meta/side data
    

    This data cannot be stored in PNGDecContext.picture, because the
    corresponding chunks may be read after the call to
    ff_thread_finish_setup(), at which point modifying shared context data
    is a race.

    Store intermediate state in the context and then write it directly to
    the output frame.

    Fixes exporting frame metadata after 5663301560
    Fixes #8972

    Found-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/pngdec.c
  • Anomalie #4008 : sauvegarde partielle du site via maintenance : une table meta est importée, même ...

    1er octobre 2017, par b b

    Le bon projet et la bonne branche, à noter que la 3.1 est aussi impactée.

  • Add length for each frame in a MJPEG stream transcoded by ffmpeg

    8 décembre 2020, par user3612643

    I am using the following command to transcode my cam's stream into mjpeg which I decode and present in my custom home-control app :

    &#xA;

    ffmpeg -i rtsp://mycamera:554/onvif1 -c:v mjpeg -f mjpeg -

    &#xA;

    That works quite nicely, but the result is just a continuous sequence of jpeg images/frames. For faster decoding, I would like to have a length header before each frame, so that I can cut out the exact JPEG from the stream :

    &#xA;

    LENGTH FRAME LENGTH FRAME

    &#xA;

    Each LENGTH should be 4-bytes encoding in LE or BE the length of the following FRAME in bytes.

    &#xA;