
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (58)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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
Sur d’autres sites (12000)
-
How can I use ffmpeg to split videos into 3 minute chunks ?
29 janvier 2023, par TheBryani want to split a video that is 21 minutes long into 7 videos of 3 minutes long using ffmpeg in cmd windows. The command I'm using is this but it gives me an error.
for /L %i in (0,1,7) do ffmpeg -i test.mp4 -ss 00 :$(%i*3):00 -t 00:03:00 -c copy outputs%i.mp4
If someone could tell me the error and how to fix it I would appreciate it.


that the video is trimmed consecutively


-
FFmpeg : How do I split a 100GB MP4 file into several 1GB files ?
8 janvier 2016, par ZopiroI’ve tried using the -fs switch, but it only creates a single file. The -f segment option allows me to use the -segment_time option, but that only limits the video duration, not its size.
So, suppose I want to use ffmpeg to split a 100GB MP4 file into several 1GB MP4 files, what’s the switch ?
-
Split mp4 in chunks and stream to the browser ?
17 avril 2024, par PaulI have a regular mp4 file which I need to store into smaller chunks in separate locations, what's the proper way of splitting the file and then have the browser be able to play it by requesting chunks ?


I'm a bit confused about segments and fragments, can I do all of this with a single
ffmpeg
command ? Something to split the file into 10s chunks and then still be able to stream it in thevideo
tag by appending to theMediaStream
buffer ?