Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (44)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6157)

  • What is the difference between "png" and "jpg -q 0" ?

    28 août 2015, par xkfz007

    When you are using ffmpeg to extract images from videos, what is the difference between "png" and "jpg -q 0" ?
    In my opinion, "-q 0" means the quantization is 0 and there is no compression. And the fact is the "jpg -q 0" is much smaller than "png"
    The commands like :

    ffmpeg -i a.mp4 image-%d.png
    ffmpeg -i a.mp4 -q 0 image-%d.jpg
  • avcodec/aac* : Make initializing ff_aac_pow*sf_tab thread-safe

    19 novembre 2020, par Andreas Rheinhardt
    avcodec/aac* : Make initializing ff_aac_pow*sf_tab thread-safe
    

    This table is currently initialized up to three times : Once by the
    encoder and twice by the decoders (once by the fixed and once by the
    floating-point decoder) ; each of these initializations is guarded by an
    AVOnce, yet the fact that there are three of them implies that there
    might be data races (the fact that each entry is only written to once
    (to its final value) when initializing means that this is safe in
    practice, yet it is still undefined behaviour). Fix this by only
    initializing the table from one place that is guarded by a single AVOnce.
    This also avoids unnecessary duplications of the init code.

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

    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aactab.c
    • [DH] libavcodec/aactab.h
  • what are all the operations that FFMPEG uses to convert from yuv420p to rgb bmp ?

    12 avril 2019, par MaikonNascimento

    I am trying to replicate in my own code, not using ffmpeg libraries, the operations that ffmpeg does to convert yuv420p to rgb. Initially I thought it would be inside the function : xyz12Torgb48 in swscale.c but doing some tracing , it looks to be in yuv2rgb.c ff_yuv2rgb_c_init_tables, which I can not quite see it.