
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (59)
-
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 -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (9322)
-
Convert Image and gif to mp4 video [closed]
17 février 2020, par Rahul KumarI am trying to make mp4 video using ffmpeg
with one 2 png image and one gif image to mp4 videoFirst one png image will show on video then gif image will be display and after that second png
image will be show in mp4 video -
Image is not rotating correctly in ffmpeg
23 juin 2022, par Dinesh ReddyThis is the image having image rotation




I am trying to rotate the image 277 degrees and i am using the command which is


ffmpeg -y -i input.mp4 -i image.png -filter_complex "[1:v]scale=w=280:h=280, rotate=a=277.9791451500245:c=black@0[ovr1]; [0][ovr1]overlay=x=801.92161682248:y=639.210841671306:enable='between(t,0,3)'[v1]; [0:a]amix=1[mixout]" -map "[v1]" -frames:v 900 -map [mixout] output.mp4



By using this command not rotating the image properly, not only the image video elements also not rotating correctly and also changing the overlay position.
Can you help in this


Thanks in advance....


-
FFMPEG add image at the end of a video
29 mars 2020, par PimagerI need to add an image for one second at the end of a .mp4 video file using FFMPEG. My video size is WxH and my image size is MxM, so video and image sizes are different.
I have tried different options in order to add the image at the end of the video as :
ffmpeg -i "concat: videoIn.mp4|image.jpg" -c copy videoOut.mp4
or
ffmpeg -i videoIn.mp4 -loop 1 -t 1 -i image.jpg -f lavfi -t 2 -i anullsrc -filter_complex "[0:v][0:a][1:v][2:a] concat = n=2:v=1:a=1[v][a] -c:v libx264 -c:a aac -strict -2 -map" [v] "-map" [a]" videoOut.mp4
but none gave me the result I need.
Can someone help me ?
Kind regards