Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (40)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

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

  • avformat/dashdec : Fix leak of string on error when parsing representation

    19 septembre 2020, par Andreas Rheinhardt
    avformat/dashdec : Fix leak of string on error when parsing representation
    

    The DASH demuxer currently extracts several strings at once from an xml
    document before processing them one by one ; these strings are allocated,
    stored in local variables and need to be freed by the demuxer itself.
    So if an error happens when processing one of them, all strings need to
    be freed before returning. This has simply not been done, leading to
    leaks.

    A simple fix would be to add the necessary code for freeing ; yet there is
    a better solution : Avoid having several strings at the same time by
    extracting a string, processing it and immediately freeing it. That way
    one only has to free at most one string on error.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/dashdec.c
  • avformat/hlsenc : Fix leak of options when initializing muxing fails

    16 décembre 2019, par Andreas Rheinhardt
    avformat/hlsenc : Fix leak of options when initializing muxing fails
    

    hls_mux_init() currently leaks an AVDictionary if opening a dynamic
    buffer fails or if avformat_init_output fails. This has been fixed by
    moving the initialization resp. the freeing of the dictionary around :
    In the former case to a place after opening the dynamic buffer, in the
    latter to a place before the check for initialization failure so that it
    is done unconditionally.

    Furthermore, the dictionary is now only copied and freed if the options
    in it are actually used (namely when in SEGMENT_TYPE_FMP4 mode).

    Finally, a similar situation in hls_start() has been fixed, too.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Steven Liu <lq@onvideo.cn>

    • [DH] libavformat/hlsenc.c
  • avformat/hls : add #EXT-X-START tag support by prefer_x_start opt

    22 juin 2022, par Li Kai
    avformat/hls : add #EXT-X-START tag support by prefer_x_start opt
    

    Reviewed-by : Steven Liu <liuqi05@kuaishou.com>
    Signed-off-by : Li Kai <wolfleekay@gmail.com>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/hls.c