
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (82)
-
Les vidéos
21 avril 2011, parComme 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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (8528)
-
Fade in image on existing video [closed]
2 décembre 2024, par csphmayI'm currently trying to create a video which has a background image and a mp3 set for background audio and now I want to achieve to add a second image which fades in over 5 seconds. The result should be a video where the background image is shown and the second image is laying over it (The second image is basically a logo which I would like to place in the bottom right corner).


To this point I wasn't able to achieve the result described above with a single FFMPEG command.
With the following two commands I generate the video with the first background image and with the second command I try to add the overlay which should fade in from 0-5 seconds. Unfortunately the second video will be black for the first 5 seconds and afterwards just the background image fades in from 5-10 seconds and the overlay is not even shown.


ffmpeg -framerate 25 -loop 1 -t 00:04:52 -i background.jpg -i wedding.mp3 -c:v libx264 -c:a aac -pix_fmt yuv420p -shortest -y part1.mp4



ffmpeg -i part1.mp4 -framerate 25 -loop 1 -t 00:04:52 -i overlay.png -filter_complex "[0:v][1:v]overlay=enable='between(t,5,4.52)':shortest=1,fade=t=in:st=5:d=5[v]" -map "[v]" -map 0:a -c:v libx264 -c:a aac -pix_fmt yuv420p -y output.mp4



Is there a way to make this work with FFMPEG (at best only with one command) ?


-
Burn picture in picture from two streams with ffmpeg
9 juillet 2021, par Nagy AlfredI have a nice opportunity solving this with ffmpeg, but can not find solution :


I need to burn picture in picture (pip from Desktop capture) to the top right corner of a recorded rtsp stream.


I need to do it real time with the recording command (it can be really easy after the recording, but I do not have time to do it after the recording)


The recording is done with this command :




ffmpeg -i "rtsp://[username]:[pass]@xx.xx.xx.xx/cam/realmonitor?channel=1&subtype=0&unicast=true" -map 0:v -c:v copy -an -fflags flush_packets -max_delay 3 -flags -global_header -hls_time 20 -hls_list_size 1000 -vcodec copy -y "video.m3u8"







The picture in picture is a Desktop capture with ffmpeg (real time capturing, not an existing video).


Please help me solving this problem.


Thanks !


-
Using FFMPEG to create animated GIF from series of images and insert text for each image
11 janvier 2021, par mwcmwcI am generating an animated gif from a series of png's labeled img_00.png, img_01.png, etc. I want to insert text to the top right corner of the animated gif for each frame that is generated from the png to display some specific information. For example say I have 3 pngs, img_00, img_01, and img_02...what I want from the gif is :


For frame generated from img_00, display "This is from img_00".
For frame generated from img_01, display "This is from img_01".
For frame generated from img_02, display "This is the last image generated from img_02 !".


So far I have been messing around with drawtext option (assuming framerate=1) :


ffmpeg -f image2 -framerate 1 -i img_%02d.png -filter_complex "drawtext=enable='between(t,0,1)':text='word1':fontsize=24:fontcolor=white:x=w-tw:y=0,drawtext=enable='between(t,1,2)':text='word2':fontsize=24:fontcolor=white:x=w-tw:y=0" out.gif



But I am getting "word1" and "word2" overlapped on top of each other. Is there a better way of doing this or someway to fix drawtext so the overlap doesn't happen ?