Recherche avancée

Médias (91)

Autres articles (75)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (12037)

  • avcodec/put_bits : Add functions for amount of bytes written/left

    25 mars 2021, par Andreas Rheinhardt
    avcodec/put_bits : Add functions for amount of bytes written/left
    

    Often a caller doesn't want the amount of bits written via a
    PutBitContext, but the amount of bytes. This in particular happens
    after one has flushed the PutBitContext (e.g. at the end of encoding,
    when one wants to know the actual packet size). The current way of doing
    this is with put_bits_count(pb)/8 (or (put_bits_count(pb) + 7)/8).

    Yet this has some issues : It contains implicit multiplications and
    divisions by 8 with a cast in between ; it obscurs the intent ; and
    it restricts the size of the buffer to (currently) INT_MAX/8 (or
    to 1/8 of the maximum of whatever put_bits_count() returns), although
    said restriction is not really necessary for users that don't need
    a bitcount.

    Corresponding functions for the amount of bytes left have also been
    addded.

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

    • [DH] libavcodec/put_bits.h
  • SECURITY FIX : Only allow image file types by default.

    13 octobre 2018, par blueimp
    SECURITY FIX : Only allow image file types by default.
    

    This prevents remote code execution in Apache servers version 2.3.9+ with the default configuration (AllowOverride None).

    Since Apache version 2.3.9, .htaccess support is disabled by default :
    https://httpd.apache.org/docs/current/mod/core.html#allowoverride

    Without the configuration in the .htaccess file, allowing uploads of all file types allows remote code execution.

    Thanks to @lcashdol for reporting the vulnerability (Closes #3514).

  • avformat/mov : calculate rfps from the first 100 frames of the index

    5 décembre 2013, par Michael Niedermayer
    avformat/mov : calculate rfps from the first 100 frames of the index
    

    This reduces the amount of frames that need to be demuxed in av_find_stream_info()

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mov.c