Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • JPG Right Colors [closed]

    17 avril 2024, par user1897354

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

    


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

    


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

    


    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

    


  • 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

  • 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