
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (62)
-
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP 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. -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (8991)
-
ffmpeg : zoom over bottom-right or bottom-left corners of an image
24 août 2018, par Vinod MankareI need to create a video with zoom effect over an image to highlight bottom right/left corner with the help of ffmpeg.
I am trying with the following command :
ffmpeg -loop 1 -i image.png -filter_complex "zoompan=z=’zoom+0.002’:x=’trunc(380)’:y=’trunc(287)’:d=100" -ss 0 -i audio.mp3 -c:v libx264 -crf 0 -c:a aac -strict experimental -b:v 6M -b:a 1080k -r 25 -bufsize 1080k -shortest -s 1920x1080 -aspect 16:9 -y output.mp4 2>&1
Its working for the top (right/left) and centre element but not getting proper zoom effect for bottom corners for the same image. Please suggest what am I doing wrong, or is there any other best option to do the same ?
-
How to make Video Effects by ffmpeg from command line to Node JS ?
22 juin 2015, par Nazmul Hossain BilashI am working on ffmpeg. I have already worked on several work for editor. But currently I need to make effect on video. I have got command line command to give effect. But I cant convert it to node Js :
cellauto: ffplay -f lavfi -i cellauto=rule=110
life: ffplay -f lavfi -i life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16So I need to converrt it in filter by node js.
-
FFMPEG overlay video with black background over an image not working without any errors
19 juin 2018, par bil80I have a snow effect video with black background snow.mp4, and i want to overlay it over a fixed jpeg image.jpg
The generated output video result was only with the image without the snow effect, my ffmpeg version is : 3.2.10, i don’t understand why it is not working with me, have you an idea ?This is my command line :
ffmpeg -i image.jpg -i snow.mp4 -filter_complex '[1:v]scale=1280x768,setdar=16:9,colorkey=0x000000:0.3:0.2[ckout];[0:v]scale=1280x768,setdar=16:9,[ckout]overlay[out]' -map '[out]' output.mp4
I tried also with the chromakey instead of colorkey, without success :/
This is the result video that i got :
output.mp4What i want is this result with snow effect : output_with_snow_effect.mp4