Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (37)

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

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • avcodec/libxevd : Remove FF_CODEC_CAP_SETS_PKT_DTS cap

    27 février 2024, par Andreas Rheinhardt
    avcodec/libxevd : Remove FF_CODEC_CAP_SETS_PKT_DTS cap
    

    This decoder implements the receive_frame API ; such decoders
    always have to set the pkt_dts field themselves and the avcodec
    test checks for this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libxevd.c
  • avcodec/mpegvideo_enc : Don't reset statistics twice

    19 mars, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Don't reset statistics twice
    

    This happens currently for the non-main slice contexts.
    But these variables get reset at the start of encode_thread()
    anyway for all slices, so this is unnecessary.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpegvideo_enc.c
  • avcodec/iff : Use unsigned to avoid compiler warning

    11 juillet 2022, par Andreas Rheinhardt
    avcodec/iff : Use unsigned to avoid compiler warning
    

    GCC 12 apparently believes that negative palette sizes are
    possible (they are not, as this has already been checked during
    init) and therefore emits a -Wstringop-overflow= for the memcpy.
    Using unsigned avoids this.
    (To be honest, there might be a compiler bug involved.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/iff.c