Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (84)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (10768)

  • libavcodec/amfenc : Vulkan initialization support for encoder.

    8 août 2019, par OvchinnikovDmitrii
    libavcodec/amfenc : Vulkan initialization support for encoder.
    

    Added linux support for amf encoder through vulkan.

    To use h.264(AMD VCE) encoder on linux amdgru-pro version 19.20+ and
    amf-amdgpu-pro package(amdgru-pro contains, but does not install
    automatically) are required.

    This driver can be installed using amdgpu-pro-install script in
    official amd driver archive.

    Initialization of amf encoder occurs in this order :
    1) trying to initialize through dx11(only windows)
    2) trying to initialize through dx9(only windows)
    3) trying to initialize through vulkan

    Only Vulkan initialization available on linux.

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/version.h
  • X-Bitmap decoder

    22 mars 2014, par Vittorio Giovara
    X-Bitmap decoder
    
    • [DBH] Changelog
    • [DBH] doc/general.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/allcodecs.c
    • [DBH] libavcodec/version.h
    • [DBH] libavcodec/xbmdec.c
  • libavfilter/vf_colorspace.c : fix demarcation point of gamma linearize function

    3 juillet 2019, par Yonglin Luo
    libavfilter/vf_colorspace.c : fix demarcation point of gamma linearize function
    

    The linearize function (usually refered to EOTF) is the inverse of
    delinearize function (usually referred to OETF). Demarcation point of
    EOTF should be beta*delta, but the actual value used now in the source
    code is beta.

    For ITU Rec.709, they are 0.081 (0.018*4.5) and 0.018 respectively
    (beta = 0.018 and delta = 4.5), and they correspond to pixel value 5
    and 21 for an 8-bit image. Linearized result of pixel within that range
    (5-21) will be different, but this commit will make linearize function
    of the filter more accurate in the mathematical sense.

    Signed-off-by : Yonglin Luo <vincenluo@tencent.com>
    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavfilter/vf_colorspace.c