Recherche avancée

Médias (91)

Autres articles (76)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (5871)

  • Fix some broken clamping in rate control.

    11 octobre 2015, par Tim Terriberry
    Fix some broken clamping in rate control.
    

    If we have some dupe frames right near the end of the buffer, our
    metric window can be slightly larger than the buffer.
    However, the clamping we use to determine how many frames' worth of
    metrics to add to the buffer had a mix of signed and unsigned
    types, so if that number when negative, instead of clamping
    against zero, it would ask for all remaining frames in the file.
    That would cause an infinite loop when we tried to find the last
    keyframe in the circular buffer in oc_enc_select_qi() (which was
    not big enough to actually hold that many frames).

    This patch changes the clamp to a form that works with all unsigned
    values.

    Thanks to Brion Vibber for the report.

    Fixes #2229

    git-svn-id : http://svn.xiph.org/trunk/theora@19507 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/rate.c
  • dnxhddec : better support for 4:4:4

    4 octobre 2015, par Christophe Gisquet
    dnxhddec : better support for 4:4:4
    

    Profiles 1256 & 1270 (currently) signal at the frame header and MB
    levels the colorspace used, either RGB or YUV. While a MB-level
    varying colorspace is not supported, whether it is constant can be
    tracked so as to determine the exact colorspace.

    This requires having bitdepth and the ACT and 4:4:4 flags, in turn
    needing the CID. Because setting those before having validated
    enough things may result in invalid/unset DSP fucntions, setting
    the bitdepth in the context is delayed.

    It is not tested against a true RGB sequence, though.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dnxhddec.c
  • avcodec/h264 : keep SPS and PPS bitstream data

    2 octobre 2015, par wm4
    avcodec/h264 : keep SPS and PPS bitstream data
    

    We assume an upper bound of 4096 bytes for each raw SPS/PPS. It’s hard
    to determine an exact maximum size, but this value was was considered
    high enough and safe.

    Needed for the following VideotoolBox commit.

    • [DH] libavcodec/h264.h
    • [DH] libavcodec/h264_ps.c