
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (67)
-
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 (6549)
-
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 ?


-
How do i add xfade transition to a batch of videos in ffmpeg ?
28 novembre 2023, par QR7I'm currently trying to concatenate multiple videos in a folder using FFmpeg. I've successfully applied a xfade transition between two videos using the following command :
However, I'm facing two challenges :


Applying xfade to multiple videos : I want to extend this process to apply the xfade transition between all videos in the folder and save it as a single video. I'm wondering if there's a way to automate this process using Python, perhaps by iterating over the files in the folder.


Audio issue after transition : While the visual transition works seamlessly, I've noticed that the audio is muted as soon as the transition finishes in the output video. Is there a modification I can make to the FFmpeg command to ensure that the audio remains synchronized with the video throughout the output ?


This is the command i am currently using :


ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "xfade=transition=fade:duration=0.25:offset=4.5" -c:v libx264 -c:a aac -strict experimental output.mp4