Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (3981)

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