
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (26)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (5325)
-
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


-
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 ?
-
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.