Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (70)

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

  • ffmpeg : add per-stream input option drop_changed

    15 mars, par Gyan Doshi
    ffmpeg : add per-stream input option drop_changed
    

    This is a replacement in ffmpeg for the deprecated avcodec flag AV_CODEC_FLAG_DROPCHANGED.

    This option is meant to be used when the filtergraph should not be
    reinited upon input parameter changes as that leads to loss of state
    in the filtergraph potentially leading to broken or aborted output,
    e.g. inserting of silence with first_pts specified in aresample.

    Generally useful to avoid corrupted yet decodable packets in live
    streaming inputs.

    This option when enabled takes precedence over reinit_filters

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_demux.c
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_opt.c
  • avfilter/vf_scale : add optional "ref" input

    24 avril 2024, par Niklas Haas
    avfilter/vf_scale : add optional "ref" input
    

    This is automatically enabled if the width/height expressions reference
    any ref_* variable. This will ultimately serve as a more principled
    replacement for the fundamentally broken scale2ref.

    See-Also : https://trac.ffmpeg.org/ticket/10795

    • [DH] Changelog
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_scale.c
  • avcodec/h264dec : Use RefStruct-pool API instead of AVBufferPool API

    5 août 2022, par Andreas Rheinhardt
    avcodec/h264dec : Use RefStruct-pool API instead of AVBufferPool API
    

    It involves less allocations and therefore has the nice property
    that deriving a reference from a reference can't fail.
    This allows for considerable simplifications in
    ff_h264_(ref|replace)_picture().
    Switching to the RefStruct API also allows to make H264Picture
    smaller, because some AVBufferRef* pointers could be removed
    without replacement.

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

    • [DH] libavcodec/h264_picture.c
    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h