Recherche avancée

Médias (91)

Autres articles (34)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5984)

  • avcodec/idctdsp : Transmit studio_profile to init instead of using AVCodecContext...

    28 mai 2018, par Michael Niedermayer
    avcodec/idctdsp : Transmit studio_profile to init instead of using AVCodecContext profile
    

    These 2 fields are not always the same, it is simpler to always use the same field
    for detecting studio profile

    Fixes : null pointer dereference
    Fixes : ffmpeg_crash_3.avi

    Found-by : Thuan Pham <thuanpv@comp.nus.edu.sg>, Marcel Böhme, Andrew Santosa and Alexandru RazvanCaciulescu with AFLSmart
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/idctdsp.c
    • [DH] libavcodec/idctdsp.h
    • [DH] libavcodec/mpegvideo.c
  • Anomalie #2001 (Nouveau) : revisions_rubrique - pipeline ’post_edition’

    22 février 2011, par Julien Férard

    Sauf erreur de ma part... Localisation de l’anomalie¶ Dans le fichier spip/ecrire/action/editer_rubrique.php Dans la fonction revisions_rubriques A la ligne 124. Nature de l’anomalie¶ La variable $champs qui est appelée par le pipeline n’a pas été initialisée. Elle devrait être remplacée par la (...)

  • avfilter : add a blend_vulkan filter

    31 décembre 2021, par Wu Jianhua
    avfilter : add a blend_vulkan filter
    

    This commit adds a blend_vulkan filter and a normal blend mode, and
    reserves support for introducing the blend modes in the future.

    Use the commands below to test : (href : https://trac.ffmpeg.org/wiki/Blend)
    I. make an image for test
    ffmpeg -f lavfi -i color=s=256x256,geq=r='H-1-Y':g='H-1-Y':b='H-1-Y' -frames 1 \
    - y -pix_fmt yuv420p test.jpg

    II. blend in sw
    ffmpeg -i test.jpg -vf "split[a][b] ;[b]transpose[b] ;[a][b]blend=all_mode=normal,\
    pseudocolor=preset=turbo" -y normal_sw.jpg

    III. blend in vulkan
    ffmpeg -init_hw_device vulkan -i test.jpg -vf "split[a][b] ;[b]transpose[b] ;\
    [a]hwupload[a] ;[b]hwupload[b] ;[a][b]blend_vulkan=all_mode=normal,hwdownload,\
    format=yuv420p,pseudocolor=preset=turbo" -y normal_vulkan.jpg

    Signed-off-by : Wu Jianhua <jianhua.wu@intel.com>

    • [DH] configure
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/vf_blend_vulkan.c