Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (32)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5756)

  • avcodec/h2645 : allocate film grain metadata dynamically

    13 août 2024, par Dale Curtis
    avcodec/h2645 : allocate film grain metadata dynamically
    

    Film grain support adds a huge amount of overhead to the H264Context
    structure for a feature that is rarely used. On low end devices or
    pages that have lots of media this bloats memory usage rapidly.

    This changes the static film grain metadata allocations to be dynamic
    which reduces the H264Context size from 851808 bytes to 53444 bytes.

    Bug : https://crbug.com/359358875
    Signed-off-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] libavcodec/h2645_sei.c
    • [DH] libavcodec/h2645_sei.h
    • [DH] libavcodec/h264_picture.c
    • [DH] libavcodec/h264_sei.c
    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
    • [DH] libavcodec/hevc/hevcdec.c
    • [DH] libavcodec/hevc/hevcdec.h
  • avcodec/aom_film_grain : allocate film grain metadata dynamically

    25 octobre 2024, par James Almer
    avcodec/aom_film_grain : allocate film grain metadata dynamically
    

    This removes the ABI breaking use of sizeof(AVFilmGrainParams), and achieves the
    same size reduction to decoder structs as 08b1bffa49715a9615acc025dfbea252d8409e1f.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/aom_film_grain.c
    • [DH] libavcodec/aom_film_grain.h
    • [DH] libavcodec/h2645_sei.c
    • [DH] libavcodec/hevc/hevcdec.c
  • avcodec/hevcdec : fix segfault on invalid film grain metadata

    6 avril 2024, par Niklas Haas
    avcodec/hevcdec : fix segfault on invalid film grain metadata
    

    Invalid input files may contain film grain metadata which survives
    ff_h274_film_grain_params_supported() but does not pass
    av_film_grain_params_select(), leading to a SIGSEGV on hevc_frame_end().

    Fix this by duplicating the av_film_grain_params_select() check at frame
    init time.

    An alternative solution here would be to defer the incompatibility check
    to hevc_frame_end(), but this has the downside of allocating a film
    grain buffer even when we already know we can't apply film grain.

    Fixes : https://trac.ffmpeg.org/ticket/10951

    • [DH] libavcodec/hevcdec.c