Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (6953)

  • avutil : Move error.h from avutil.h to common.h

    23 juillet 2021, par Andreas Rheinhardt
    avutil : Move error.h from avutil.h to common.h
    

    Up until now, avutil.h includes common.h which includes mem.h which
    includes avutil.h, so that all these headers are in fact equivalent.
    Yet mem.h does not need to include avutil.h at all and when it no longer
    does, including common.h will no longer include error.h (included by
    avutil.h) as well ; change this by moving error.h to avutil.h, as error.h
    is clearly a commonly used header.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/avutil.h
    • [DH] libavutil/common.h
  • avfilter/vf_bwdif : Add a filter_line3 method for optimisation

    4 juillet 2023, par John Cox
    avfilter/vf_bwdif : Add a filter_line3 method for optimisation
    

    Add an optional filter_line3 to the available optimisations.

    filter_line3 is equivalent to filter_line, memcpy, filter_line

    filter_line shares quite a number of loads and some calculations in
    common with its next iteration and testing shows that using aarch64
    neon filter_line3s performance is 30% better than two filter_lines
    and a memcpy.

    Adds a test for vf_bwdif filter_line3 to checkasm

    Rounds job start lines down to a multiple of 4. This means that if
    filter_line3 exists then filter_line will not sometimes be called
    once at the end of a slice depending on thread count. The final slice
    may do up to 3 extra lines but filter_edge is faster than filter_line
    so it is unlikely to create any noticable thread load variation.

    Signed-off-by : John Cox <jc@kynesim.co.uk>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavfilter/bwdif.h
    • [DH] libavfilter/vf_bwdif.c
    • [DH] tests/checkasm/vf_bwdif.c
  • lavfi/vf_libplacebo : keep track of latest status globally

    15 juin 2023, par Niklas Haas
    lavfi/vf_libplacebo : keep track of latest status globally
    

    This field will effectively hold the most recent status set by any
    input. Currently functionally equivalent to input->status, but will
    change soon.

    • [DH] libavfilter/vf_libplacebo.c