
Recherche avancée
Autres articles (74)
-
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7577)
-
How do I combine videos with ffmpeg with delay ?
8 février, par Isaiah BarrierI have 44 videos that are all encoded the same and have the same dimensions, and they all have audio. I want to combine all of them with a 0.5 second pause between them in ffmpeg. How do I do that ? The command I used that combines them without delay is
ffmpeg -f concat -safe 0 -i fl.txt -c copy -map 0 output.mp4


-
How can one concatenate videos with different playback rates using ffmpeg ?
5 juillet 2015, par ankitI had an mp4 (H-264 AAC) video and I changed the playback rates to make 2 new videos at .5x and 2x.
FFMPEG, "-i", file, filter_complex, output_file_name
Where (in R),
filter_complex = paste0("-filter_complex ", "'[0:v]setpts=", vspeed[i], "*PTS[v];[0:a]atempo=", aspeed[i], "[a]'", " -map ", "'[v]'", " -map ", "'[a]' ", " -strict -2")
When I tried to concatenate them the sped up and slowed down videos using
`FFMPEG, " -f concat -i ", fname, " -c copy ", fileName, "run", ".mp4"`
I found that the concatenated video was getting stuck (asynchronous) at the sped up and slowed down parts. How can I concatenate them such that it plays correctly ?
-
how do I save the videos in an specific bitrate using ffmpeg ?
15 mai 2022, par davidI am trying to save some videos in specific bitrate (8000k) and for this, I used the following code :


ffmpeg -i input_1080p60 -c:v libx264 -pix_fmt yuv420p -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.264



but after saving the videos, I find out each video has a different bitrate except 8000k ( for example 5000k, 6000k, 7500k,...). but I define the minrate 8000k. do you know what is the problem and how can I force the above code to have the specific bitrate ? Thank you.