
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (45)
-
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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6424)
-
FFMPEG : how can I properly add a text overlay to my video and save it to a thumbnail ?
12 août 2013, par AWainbI have a ffmpeg command that goes to a url and successfully creates thumbnails at specified intervals. What I would like to do is add the time (eg : 03:45:20) to the bottom-left corner of the video in white text with a black shadow. I have seen a few examples online with drawtext but none of them seem to work with my current command :
C:\ffmpeg\bin\ffmpeg.exe -ss 00:23:12 -i "http://myvideourl.com/videofile.mp4" -f mjpeg -vframes 1 -y C:\thumb2.jpg
Can someone suggest how I can implement the correct drawtext filter with my current command so that it outputs the thumbnail with the duration stamped at the bottom-left corner ?
-
creating thumbnails from multiple videos
28 septembre 2020, par blueI have multiple videos, and i want to create a thumbnail image for each video.i also want the image thumbnails to have the same names as the videos and have specific width/height.

Is it also possible to have ffmpeg create thumbnails with a specific aspect ratio and instead of stretching the video it could add black bars ?

Now i don't know a thing about how ffmpeg works so i looked up a tutorial online and configured it,tested out a simple script and it worked.

i found what the script i was looking for but i don't know a thing about bash scripts so it just throws an error and i don't how to figure it out.


for f in *.mp4; do ffmpeg -i "$f" -ss 00:00:03 -vframes 1 -s 480x320 "${f%.mp4}.jpg"; done



-
How to use ffmpeg to merge the median of pixels in 2 videos
24 avril 2020, par jocelynI'm new to coding and ffmpeg so please go easy on me !



I am trying to merge 2 videos (they are identical) using the median of the each pixel. I have to use ffmpeg to do this but am unable to find any information online.



I have managed to merge 2 identical videos using the average of each pixel using the following command(I think at least, I'm not sure how to tell if this worked but the command didn't give any errors so I assume it did)
- "ffmpeg -i video1.avi -i video2.avi -filter_complex "blend=all_mode='average'" mergedvideo.avi"



Can anyone help provide more information on how I can use ffmpeg to merge the videos using the median of each video pixel ?



Thanks in advance !