
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (53)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9151)
-
Ffmpeg how to split then concate another video in one command
4 juillet 2018, par Cuong NguyenI want to split video a into a1 and a2 videos.
Then I want to concat a1, b, a2 into c video.
Transition time between a1 and b ; b and a2, I want add 1 second fade in fade out effect.
How to do that in one command by FFmpeg ?
Thank you ! -
Split Video Files Batch Mac
11 août 2022, par dolomite41Noob Here. I have about 300 files that I want to split into segments. About 5 seconds each. I figured how to do it for one file, but is there anyway I can do it to the whole folder directory ? Been searching online and can't seem to find exactly what I need.


here is what I did for the single file


ffmpeg -i test2.mp4 -c copy -map 0 -segment_time 00:0:05 -f segment output%03d.mp4


would like to do it for all the files at once


- 

- Is there a batch command that can do it for all files
- If not, is there a way I can put more than one command line into Terminal and run them all at once ?






OS - Mac - Monterey - FFMPEG and Brew installed


Real noobie, any help would be appreciated


-
Split video every x secondes with ffmpeg
30 mai 2017, par Boris ELOSHVILII try to cut the mp4 video with ffmpeg.
I have a mp4 video input and I want to split this video for all 1 second, so use the segment and save the file in the date format.
I use the following command but apparently it does not work. But the files are not cut cleanly, there is always the difference between size and time. The files are not generating in any 1 second.
ffmpeg -re -i im1.mp4 -threads 3 -c:v copy -f segment -segment_time 1 -strftime 1 -segment_format mp4 %Y-%m-%d-%H-%M-%S.mp4
Someone has an idea ?