Recherche avancée

Médias (91)

Autres articles (36)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (4700)

  • avformat/http: avoid ff_http_do_new_request after http/1.0 response

    25 décembre 2017, par Aman Gupta
    avformat/http: avoid ff_http_do_new_request after http/1.0 response
    

    This makes do_new_request fail early when dealing with a http/1.0 server, avoiding unnecessary "reconnecting" warnings shown to the user.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/http.c
  • fftool/ffplay : avoid same name in local variable

    30 décembre 2023, par xufuji456
    fftool/ffplay : avoid same name in local variable
    

    There is a warning in XCode :"Declaration shadows a local variable"

    Signed-off-by : xufuji456 <839789740@qq.com>
    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] fftools/ffplay.c
  • avformat/matroskaenc : Avoid seeking when writing level 1 elements

    20 avril 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Avoid seeking when writing level 1 elements
    

    Up until now, the writing process for level 1 elements (those elements
    for which CRC-32 elements are written by default) was this in case the
    output was seekable : Write the EBML ID, write an "unkown length" EBML
    number of the desired length, then write the element into a dynamic
    buffer, then write the dynamic buffer (after possible calculation and
    writing of the CRC-element), then seek back to the size element and
    overwrite the unknown-size element with the real size. The seeking and
    overwriting part has been eliminated by not writing the size initially.

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

    • [DH] libavformat/matroskaenc.c