Recherche avancée

Médias (91)

Autres articles (92)

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

  • avformat/rtspdec : fix potential mem leak in listen mode

    27 novembre 2020, par Andriy Gelman
    avformat/rtspdec : fix potential mem leak in listen mode
    

    Currently a repeating setup request (with the same stream id) will
    simply overwrite rtp_handle/transport_priv without freeing the
    resources first. This is fixed by closing the previous setup request.

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtspdec.c
  • avformat/flacdec : Reorder allocations to avoid leak on error

    17 mai 2024, par Andreas Rheinhardt
    avformat/flacdec : Reorder allocations to avoid leak on error
    

    Fixes Coverity issue #1591795.

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

    • [DH] libavformat/flacdec.c
  • avcodec/qsvenc : Fix leak and crash when encoding H.264 due to A53_CC

    25 septembre 2021, par Andreas Rheinhardt
    avcodec/qsvenc : Fix leak and crash when encoding H.264 due to A53_CC
    

    Since commit 3bbe0c210b05fc6fbd7b1d4bbd8479db7f2cf957, the Payloads
    array of every QSVFrame leaks as soon as the frame is reused ;
    the leak is small and not very noticeable, but if there is an attempt
    to use said array the ensuing crash is much more noticeable.
    This happens when encoding H.264 with A53 CC side data.

    Furthermore, if said array can not be allocated at all, an AVFrame
    leaks.

    Fix all of this by not allocating the array separately at all ; put it
    in QSVFrame instead and restore the Payloads array upon reusing the
    frame.

    Finally, use av_freep() instead of av_free() to free the payload
    entries.

    Reviewed-by : Xiang, Haihao <haihao.xiang@intel.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/qsv_internal.h
    • [DH] libavcodec/qsvenc.c