Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (109)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12251)

  • Revision 8350e7fe38 : Make intra prediction pointers RTCD-based. This probably has a mildly negative

    9 juillet 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_reconintra.c


     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/common/x86/vp9_recon_sse2.asm


     Delete /vp9/common/x86/vp9_recon_wrapper_sse2.c


     Modify /vp9/encoder/vp9_mbgraph.c


     Modify /vp9/vp9_common.mk



    Make intra prediction pointers RTCD-based.

    This probably has a mildly negative impact on performance, but will
    (in future commits - or possibly merged with this one) allow SIMD
    implementations of individual intra prediction functions. We may
    perhaps want to consider having separate functions per txfm-size
    also (i.e. 4x4, 8x8, 16x16 and 32x32 intra prediction functions for
    each intra prediction mode), but I haven't played much with that
    yet.

    Change-Id : Ie739985eee0a3fcbb7aed29ee6910fdb653ea269

  • pngdec : add ability to check chunk CRC

    7 mars 2019, par Lynne
    pngdec : add ability to check chunk CRC
    

    By default now, if AV_EF_CRCCHECK or AV_EF_IGNORE_ERR are enabled the decoder
    will skip the chunk and carry on with the next one. This should make the
    decoder able to decode more corrupt files because the functions which decode
    individual chunks will very likely error out if fed invalid data and stop the
    decoding of the entire image.

    • [DH] libavcodec/pngdec.c
  • tile option in FFMPEG command result to black screenshot

    4 mars 2020, par sammax

    I am managing to create a screenshot using ffmpeg engine and it works fine when I am try to output one individual image

    ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "scale=width:high"

    But when I try to create a multi-image (Thumbnail grid sheets) using tile option the output screenshot is empty black

    ffmpeg -ss 01:05 -i input.mp4 -an -dn -sn -r 1 -vframes 1 -y -qscale 3 -vf "select=not(mod(n\,3000)),scale=320:240,tile=4x3"

    and here is what I want to achieve image