Recherche avancée

Médias (1)

Mot : - Tags -/publicité

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 (11524)

  • tiffenc : initialize return value

    9 novembre 2014, par Vittorio Giovara
    tiffenc : initialize return value
    

    ’ret’ can only be used without initialization if s->height <= 0, which can
    only happen if avctx->height <= 0, which is validated elsewhere. Doesn’t hurt
    to still initialize it though.

    CC : libav-stable@libav.org
    Bug-Id : CID 732296

    • [DH] libavcodec/tiffenc.c
  • vp9 : make decode_coeffs() return value void.

    30 novembre 2013, par Ronald S. Bultje
    vp9 : make decode_coeffs() return value void.
    

    It was previously int and would return error if decode_coeffs_b()
    returns an error ; however, that can never happen, so refactor all
    that code to make all dependent functions return void also (all the
    way up to decode_coeffs_sb()).

    • [DH] libavcodec/vp9.c
  • avformat_open_input return value, error code

    25 juillet 2013, par Jar

    I try to use ffmpeg library to decode video and get stream.
    I'm using avformat_open_input.
    I get the return value -2 (it means no such file) when the input file is url, such as rtmp://xxx, and I get the return value -1052488119 when the input file is mp4 video.

    I'm not understand what error code -1052488119 means and why the input file is url I got so such file ?

    Please help me to figure out what happen.
    Thanks very much.