Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (45)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • avformat/asf : Factor common code out

    29 mars 2021, par Andreas Rheinhardt
    avformat/asf : Factor common code out
    

    Both functions to read attached pictures coincide since
    e83f27a21a6d2f602b55e541ef66e365400e9827 (save for some log messages
    in case av_dict_set failed).

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

    • [DH] libavformat/asf.c
    • [DH] libavformat/asf.h
    • [DH] libavformat/asfdec_f.c
    • [DH] libavformat/asfdec_o.c
  • avcodec/proresenc_kostya : Factor flushing PutBitContext out

    25 mars 2021, par Andreas Rheinhardt
    avcodec/proresenc_kostya : Factor flushing PutBitContext out
    

    The function to write an ordinary (luma or chroma) plane as well as
    the function for writing an alpha plane have some similarities :
    They record the initial bitposition (despite said position always being
    byte-aligned), flush the PutBitContext themselves and return the amount
    of bytes they wrote.

    This commit factors this out ; it also replaces bitpositions by
    bytepositions and it avoids recording the initial byteposition because
    said information is already available from the position at the end of
    the last plane.

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

    • [DH] libavcodec/proresenc_kostya.c
  • lavc : factor out encoder init/validation from avcodec_open2()

    9 mars 2021, par Anton Khirnov
    lavc : factor out encoder init/validation from avcodec_open2()
    

    avcodec_open2() is massive, splitting it makes it more readable.

    Also, add a missing error code to ticks_per_frame sanity check.

    • [DH] libavcodec/encode.c
    • [DH] libavcodec/encode.h
    • [DH] libavcodec/utils.c