Recherche avancée

Médias (91)

Autres articles (74)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

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

  • avformat/tls_openssl : fix warnings when openssl is lower version

    15 juin, par Jack Lau
    avformat/tls_openssl : fix warnings when openssl is lower version
    

    api doc : https://docs.openssl.org/1.0.2/man3/BIO_s_mem

    In higher versions (openssl 1.0.2 and higher),
    the function signature is BIO *BIO_new_mem_buf(const void *buf, int len),
    so passing a const string doesn't cause an warnings.
    However, in lower versions of OpenSSL,
    the function signature becomes BIO *BIO_new_mem_buf(void *buf, int len),
    which leads to warnings.

    OpenSSL guarantees that it will not modify the string,
    so it's safe to cast the pem_str to (void *) to avoid this warning.

    Signed-off-by : Jack Lau <jacklau1222@qq.com>
    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavformat/tls_openssl.c
  • avformat/rtpdec : explicit timestamp wraparound handling

    8 juin, par Clément Péron
    avformat/rtpdec : explicit timestamp wraparound handling
    

    Change delta_timestamp to int32_t and add explicit cast to handle
    RTP timestamp wraparound correctly. This fixes implementation-defined
    behavior when computing negative timestamp differences due to 32-bit
    wraparound.

    Signed-off-by : Clément Péron <peron.clem@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/rtpdec.c
  • avcodec/webp : Check more directly for invalid codes

    18 avril, par Andreas Rheinhardt
    avcodec/webp : Check more directly for invalid codes
    

    Don't rely on invalid codes leading to get_vlc2() returning
    - 1, which then gets converted to an uint8_t, i.e. to 255
    and runs afoul of a length check later. After all, get_vlc2()
    could be changed to return something else which may
    be valid when cast to uint8_t.

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

    • [DH] libavcodec/webp.c