
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (111)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (6695)
-
ffmpeg trim videos at specific start / end frame [closed]
13 mai 2023, par emilectorI have mp4 video files that I need to trim between a start and an end frame. I am using this python command, but instead of the trimmed videos I get long videos of the same frame.


os.system('ffmpeg -i {0}.mp4 -vf trim=start_frame={1}:end_frame={2} -fflags +genpts {3}.mp4'.format(inputVideoPath, startFrame, endFrame, outputVideoPath))



I dont care about audio. Could someone point me in the right direction ?


-
Scrape the precise duration of videos from ffmpeg to .srt
6 février 2016, par user5715027So, I have a folder with a lot of videos. What I need is to create subtitles with the names of those videos also minding their size and length to create subtitles in .srt format. And length of videos should be parsed in such format :
00:00:00,000 => hh:mm:ss:milliseconds
So for example I have three videos in the folder :
1) firstvideo.wmv size:5743KB length: 00:05:34,793
2) secondvideo.mp4 size:3215KB length: 00:02:42,653
3) thirdvideo.avi size:3950KB length: 00:01:55,152I need them to be sorted by size in .srt file with the precise timing one after another (also to remove video format in subtitles). Output file should in .srt format and should look like this :
1
00:00:0,000 --> 00:02:42,653
secondvideo
2
00:02:42,653 --> 00:04:37,805
thirdvideo
3
00:04:37,805 --> 00:10:12,598
firstvideo
(Important => After every time an action is completed there should be an empty line like in the example)I was given an advice to scrape the duration from
ffmpeg -i "mediafile.ext" 2>&1 | find "Duration:"
. That will give me centisecond precision.
Thanks For Your Attention ! Please, Help ! :) -
Is there a function to add a title to multiple videos ? FFMPEG
8 avril 2020, par Samay LakhaniI'm getting started with FFMPEG to add a title video to a few dozen videos I have. What would be the proper command to do this ?