
Recherche avancée
Autres articles (64)
-
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10668)
-
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 ?


-
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 ! :) -
How to merge multiple videos end-to-end with yt-dlp or ffmpeg [closed]
12 juillet 2024, par PenguWe want to download a bunch of small sections of videos then stitch them all together into one big video. How would we go about this ? Is there a way to bulk-stitch together videos from a particular folder ? We're planning to have thousands of clips, so the more automated it can be, the better.


We are already using yt-dlp and ffmpeg for downloading the sections, so we would prefer if the solution was using those as well.


The closest thing we could find was this https://github.com/yt-dlp/yt-dlp/issues/6595 which, when we try it, runs fine but the resulting clip is the same length as the parts used and doesn't seem to join them together.