
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (32)
-
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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (7153)
-
ffmpeg - creating segments of equivalent duration
13 octobre 2014, par Code_Ed_StudentI am testing out segment to split a video into segments of 10 seconds each, but I’m noticing some unusual results. In particular, some of the segments generated have varying lengths from 5 seconds to 11 seconds. I’ve tried playing around with segment_time_delta and force_key_frames to make the segments as close to 10 seconds as possible, but it doesn’t seem to be working out so well. How could I make all segments the same duration ?
ffmpeg -i input.mp4 -force_key_frames 10,20,30,40,50,60,70,80,90,100,110,120 -c copy -map 0 -segment_time 10 -f segment output%01d.mp4
Results :
My_vid.mp4 – total duration - 00:02:08
Output1.mp4 00:00:07
Output2.mp4 00:00:07
Output3.mp4 00:00:08
Output4.mp4 00:00:08
Output5.mp4 00:00:09
Output6.mp4 00:00:09
Output7.mp4 00:00:10
Output8.mp4 00:00:10
Output9.mp4 00:00:10
Output10.mp4 00:00:11
Output11.mp4 00:00:11
Output12.mp4 00:00:11
Output12.mp4 00:00:13 -
Make segments of equivalent duration
27 octobre 2014, par Code_Ed_StudentAccording to ffmpeg I can slpit a video file using
-f segment
option. I followed the documentation I found HERE. The only problem is that it segments the video but not in equivalent duration for each segments. It seems that it segments at the nearest0i-frame
. I was able to get it to work but I had to re encode the video. Therefore making the process very slow. Is there a better way to segment a video in segments of equivalent duration ?Normal segmenting
ffmpeg -i input.mp4 -c copy -map 0 -segment_time 9 -f segment output%03d.mp4
Rencoding and segmenting
ffmpeg -i input.mp4 -codec:v libx264 -crf 23 -preset medium -map 0 -segment_time 9 -g 225 -r 25 -sc_threshold 0 -force_key_frames expr:gte(t,n_forced*9) -f segment -codec:a copy -movflags faststart -vf scale=-1:720,format=yuv420p output -%03d.mp4
-
ffmpeg - Is there a way to automatically convert a video to the equivalent file in mp4 h.264 aac ?
8 avril 2018, par David AlshI’m trying to convert video files to
mp4 h.264 aac
to avoid transcoding on Plex, avoiding any quality loss or major increase in file size.Is there an
auto
mode in ffmpeg or any way for me to pipe/parse the details of a video into ffmpeg to make a decision ?Right now I am using :
ffmpeg -i input-file.mkv -vcodec libx264 -acodec aac output-file.mp4
But the resulting files are nearly double the size of the input files.