Recherche avancée

Médias (91)

Autres articles (89)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (7438)

  • aarch64 : vp9mc : Load only 12 pixels in the 4 pixel wide horizontal filter

    3 janvier, par Janne Grunau
    aarch64 : vp9mc : Load only 12 pixels in the 4 pixel wide horizontal filter
    

    This reduces the amount the horizontal filters read beyond the filter
    width to a consistent 1 pixel. The data is not used so this is usually
    not noticeable. It becomes a problem when the application allocates
    frame buffers only for the aligned picture size and the end of it is at
    a page boundary. This happens for picture sizes which are a multiple of
    the page size like 1280x640. The frame buffer allocation is based on
    its most likely done via mmap + MAP_ANONYMOUS so start and end of the
    buffer are page aligned and the previous and next page are not
    necessarily mapped.
    Under these conditions like seen by Firefox a read beyond the end of the
    buffer results in a segfault.
    After the over-read is reduced to a single pixel it's reasonable to use
    VP9's emulated edge motion compensation for this.

    Fixes : https://bugzilla.mozilla.org/show_bug.cgi?id=1881185
    Signed-off-by : Janne Grunau <janne-ffmpeg@jannau.net>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/aarch64/vp9mc_neon.S
  • avcodec/hevc : reduce memory for SAO

    12 janvier 2015, par Fabrice Bellard
    avcodec/hevc : reduce memory for SAO
    

    cherry picked from commit 5d9f79edef2c11b915bdac3a025b59a32082f409

    SAO edge filter uses pre-SAO pixel data on the left and top of the ctb, so
    this data must be kept available. This was done previously by having 2
    copies of the frame, one before and one after SAO.

    This commit reduces the storage to just that, instead of the previous whole
    frame.

    Commit message taken from patch by Christophe Gisquet <christophe.gisquet@gmail.com>

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

    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc.h
    • [DH] libavcodec/hevc_filter.c
  • avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements...

    2 février 2015, par Christophe Gisquet
    avcodec/hevc : Update the USE_SAO_SMALL_BUFFER case for the alignment requirements in FFmpeg
    

    Use edge emu buffers
    And enable the code unconditionally

    Speed difference without USE_SAO_SMALL_BUFFER and with the new code :
    Decicycles : 26772->26220 (BO32), 83803->80942 (BO64)

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

    • [DH] libavcodec/hevc.c
    • [DH] libavcodec/hevc.h
    • [DH] libavcodec/hevc_filter.c