
Recherche avancée
Autres articles (80)
-
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. -
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4765)
-
Using ffmpeg to split MP3 file to multiple equally sound length files
11 septembre 2019, par daliaessamHow to use the command line tool ffmpeg on Windows to split a sound file to multiple sound files without changing the sound properties same everything each one is fixed 30 seconds length. I got this manual example from here :
ffmpeg -i long.mp3 -acodec copy -ss 00:00:00 -t 00:00:30 half1.mp3
ffmpeg -i long.mp3 -acodec copy -ss 00:00:30 -t 00:00:30 half2.mp3But is there a way to tell it to split the input file to equally sound files each one is 30 seconds and the last one is the remaining what ever length.
-
How can i split a video file in C# ?
19 février 2015, par fthymnI’m using c# on vs2012.
I wanna split to video file for a custom time arrange.
For Example ; my video file length 30 minutes and i want to watching just selection time arrange. (like between 10th second and 45th second.)I dont want to physical new file.
My steps for what am i doing :)
1- Select Source Video File.
2- I must learn source video time length.
3- I use rangetrackbar control user select time arrange.
4- User click play then selected time arrange scenes played.Is it possible ?
-
ffmpeg auto split into exact timeframes
27 novembre 2022, par Rey BetI've been trying to autosplit a video into smaller clips of same length using ffmpeg. I know the command :


ffmpeg -i "video.mp4" -c copy -map 0 -segment_time 00:00:05 -f segment -reset_timestamps 1 output%03d.mp4)



But this one splits videos into frames so the time is varying.
I found a command


ffmpeg -i "name" -ss 0 -t 5 p1.mp4
ffmpeg -i "name.mp4" -ss 5 -t 5 p2.mp4
ffmpeg -i "name" -ss 10 -t 5 p3.mp4 



But this would mean i would have to do it manually for whole video. Is there way to automate the process so i can split the video into exact time ? Thank you.


I'm using Windows 10 if it makes any difference