Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (26)

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

  • avcodec/rawdec : check for side data before checking its size

    4 novembre 2016, par James Almer
    avcodec/rawdec : check for side data before checking its size
    

    Fixes valgrind warnings about usage of uninitialized values.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/rawdec.c
  • lavu/frame : add QP side data

    1er mars 2018, par wm4
    lavu/frame : add QP side data
    

    This adds a way for an API user to transfer QP data and metadata without
    having to keep the reference to AVFrame, and without having to
    explicitly care about QP APIs. It might also provide a way to finally
    remove the deprecated QP related fields. In the end, the QP table should
    be handled in a very similar way to e.g. AV_FRAME_DATA_MOTION_VECTORS.

    There are two side data types, because I didn't care about having to
    repack the QP data so the table and the metadata are in a single
    AVBufferRef. Otherwise it would have either required a copy on decoding
    (extra slowdown for something as obscure as the QP data), or would have
    required making intrusive changes to the codecs which support export of
    this data.

    The new side data types are added under deprecation guards, because I
    don't intend to change the status of the QP export as being deprecated
    (as it was before this patch too).

    • [DH] doc/APIchanges
    • [DH] libavutil/frame.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
    • [DH] tests/ref/fate/exif-image-embedded
    • [DH] tests/ref/fate/exif-image-jpg
  • avcodec/decode : Preserve AFD side data when going from AVPacket to AVFrame

    30 juin 2023, par Devin Heitmueller
    avcodec/decode : Preserve AFD side data when going from AVPacket to AVFrame
    

    This is needed to ensure that AFD data continues to work when
    capturing V210 video with the Decklink libavdevice input.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/decode.c