
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (44)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (4216)
-
How to collect specific Youtube channel uploaded videos and use FFMPEG to convert to MP3 [on hold]
6 novembre 2014, par Daniel KirkbyI am currently attempting to create a php script that can crawl a Youtube channel’s uploaded videos and parse them through FFMPEG to a mp3.
.eg (https://www.youtube.com/user/PandoraMuslc/videos) download each .flv then convert to mp3 using a script that can do the whole channel instead of one at a time as there are a few hundred uploads. while I have found scripts that can make FFMPEG convert to mp3 and scripts to show the uploaded videos in XML I kinda just want to figure out how to get each video automaticly, Maybe a script that can be cron’d ?
-
ffmpeg save difference between 2 videos to file
10 août 2020, par 0x-1I'm currently trying to learn everything related to videos and encountered a problem that I need help with.


The Question is : How can I save the difference between 2 videos to a seperate file with ffmpeg ?

For example here is the ffplay command I'm trying with :
(Source : https://superuser.com/questions/854543/how-to-compare-the-difference-between-2-videos-color-in-ffmpeg)

ffplay -f lavfi "movie=left.mp4,setpts=PTS-STARTPTS,split=3[a0][a1][a2];
 movie=right.mp4,setpts=PTS-STARTPTS,split[b0][b1];
 [a0][b0]blend=c0_mode=difference[y];
 [a1]lutyuv=y=val:u=128:v=128[uv];
 [y][uv]mergeplanes=0x001112:yuv420p,pad=2*iw:ih:0:0[down];
 [a2][b1]hstack[up];[up][down]vstack"



In this case I would want to have the bottom left video saved to a new file.

Can someone help me get together the right ffmpeg filter and explain the proccessing of ffmpeg ?

-
How do i extract individual frames from videos using ffmpeg ?
15 novembre 2015, par yzhuI have a bunch of videos downloaded from Youtube and I would like to extract frames from them. The current command I am using is :
ffmpeg -i input.mp4 -an -s qvga %06d.png
But I also want to set the -r and -t option. I want the fps to be the fps of each video, and the duration time is their duration. I know that if I don’t set the -r option, the default is 25 fps.
So could anyone help ? how to add the -r and -t option ? and is there any better and accurate way to obtain individual frames from videos ? Thanks a lot.