Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (55)

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

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

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

Sur d’autres sites (5168)

  • avfilter/formats : Make check for buffer overflow redundant

    13 août 2020, par Andreas Rheinhardt
    avfilter/formats : Make check for buffer overflow redundant
    

    and remove the redundant check.

    This check for whether the allocated buffer is sufficient has been added
    in commit 1cbf7fb4345a3e5b7791d483241bf4759bde4ece (merging commit
    5775a1832c4165e6acc1d307004b38701bb463f4). It is not sufficient to
    detect invalid input lists (namely lists with duplicates) ; its only use
    is to avoid buffer overflows. And this can be achieved by simpler means :
    Make sure that one allocates space for so many elements as the outer loop
    ranges over and break out of the inner loop if a match has been found.
    For valid input without duplicates, no further match will be found anyway.

    This change will temporarily make the allocated formats array larger
    than before and larger than necessary ; this will be fixed in a later
    commit that avoids the allocation altogether.

    If a check for duplicates in the lists is deemed necessary, it should be
    done properly somewhere else.

    Finally, the error message that is removed in this commit used
    __FUNCTION__, which is a GCC extension (C99 added __func__ for this).
    So this commit removes a warning when compiling in -pedantic mode.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/formats.c
  • Revision 125132 : le commit précédent avait oublié la partie PHP des ...

    11 juin 2020, par Maïeul Rouquette — Log

    le commit précédent avait oublié la partie PHP des affichages_conditionnels avec MATCh

  • JPG Right Colors [closed]

    17 avril 2024, par user1897354

    For this type of video, do I get the right colors for jpgs ?

    &#xA;

    Color space : YUV
    &#xA;Chroma subsampling : 4:4:4
    &#xA;Color range : Limited
    &#xA;Color primaries : BT.709
    &#xA;Transfer characteristics : BT.709
    &#xA;Matrix coefficients : BT.709

    &#xA;

    For the video, I tried making jpegs using this code, but the colors did not match :

    &#xA;

    ffmpeg -i input.mkv -vf zscale=min=709:m=170m:rin=limited:r=full,format=yuv444p -qmin 1 -qmax 1 -q:v 1 output%03d.jpg

    &#xA;