
Recherche avancée
Autres articles (111)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8223)
-
fftools/ffmpeg_filter : Avoid inserting hflip filter
18 décembre 2021, par Andreas Rheinhardt -
avfilter : add a blend_vulkan filter
31 décembre 2021, par Wu Jianhuaavfilter : 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.jpgIII. 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.jpgSigned-off-by : Wu Jianhua <jianhua.wu@intel.com>
-
avfilter : add overlay vaapi filter
22 novembre 2021, par Xinpeng Sunavfilter : add overlay vaapi filter
Overlay one video on the top of another.
It takes two inputs and has one output. The first input is the "main" video on
which the second input is overlaid. This filter requires same memory layout for
all the inputs.An example command to use this filter to overlay overlay.mp4 at the top-left
corner of the main.mp4 :ffmpeg -init_hw_device vaapi=foo :/dev/dri/renderD128 \
hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i main.mp4 \
hwaccel vaapi -hwaccel_device foo -hwaccel_output_format vaapi -c:v h264 -i overlay.mp4 \
filter_complex "[0:v][1:v]overlay_vaapi=0:0:100:100:0.5[t1]" \
map "[t1]" -an -c:v h264_vaapi -y out_vaapi.mp4
Signed-off-by : U. Artie Eoff <ullysses.a.eoff@intel.com>
Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
Signed-off-by : Zachary Zhou <zachary.zhou@intel.com>
Signed-off-by : Fei Wang <fei.w.wang@intel.com>
Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>