
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (71)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
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 (11869)
-
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.
-
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 - 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