
Recherche avancée
Autres articles (94)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (5676)
-
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