Recherche avancée

Médias (91)

Autres articles (97)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (15605)

  • lavfi : add ICC profile support via lcms2

    9 avril 2022, par Niklas Haas
    lavfi : add ICC profile support via lcms2
    

    This introduces an optional dependency on lcms2 into FFmpeg. lcms2 is a
    widely used library for ICC profile handling, which apart from being
    used in almost all major image processing programs and video players,
    has also been deployed in browsers. As such, it's both widely available
    and well-tested.

    Add a few helpers to cover our major use cases. This commit merely
    introduces the helpers (and configure check), even though nothing uses
    them yet.

    It's worth pointing out that the reason the cmsToneCurves for each
    AVCOL_TRC are cached inside the context, is because constructing a
    cmsToneCurve requires evaluating the curve at 4096 (by default) grid
    points and constructing a LUT. So, we ideally only want to do this once
    per curve. This matters for e.g. ff_icc_profile_detect_transfer, which
    essentially compares a profile against all of these generated LUTs.
    Re-generating the LUTs for every iteration would be unnecessarily
    wasteful.

    The same consideration does not apply to e.g. cmsCreate*Profile, which
    is a very lightweight operation just involving struct allocation and
    setting a few pointers.

    The cutoff value of 0.01 was determined by experimentation. The lowest
    "false positive" delta I saw in practice was 0.13, and the largest
    "false negative" delta was 0.0008. So a value of 0.01 sits comfortaby
    almost exactly in the middle.

    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] configure
    • [DH] libavfilter/fflcms2.c
    • [DH] libavfilter/fflcms2.h
  • lavc/mediacodecdec : set codec profile and level from extradata for H264+HEVC

    13 décembre 2021, par sfan5
    lavc/mediacodecdec : set codec profile and level from extradata for H264+HEVC
    

    This value is later passed to MediaCodec and checked at decoder init.
    Notably decoding of 10-bit streams before this commit would "work" without
    returning errors but only return garbage output (on most Android devices).

    • [DH] libavcodec/mediacodecdec.c
  • lavc/libopenh264enc : Rewrite profile handling

    6 mai 2020, par Linjie Fu
    lavc/libopenh264enc : Rewrite profile handling
    

    Support the profiles "constrained_baseline" and "high" for libopenh264
    version >= 1.8, support "constrained_baseline" and "main" for earlier
    version.

    If option not supported with current version, convert to constrained
    baseline with a warning for users.

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Linjie Fu <linjie.fu@intel.com>

    • [DH] libavcodec/libopenh264enc.c