
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 (62)
-
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 (10737)
-
Blending Videos in FFmpeg : Excluding Transparent Areas from the Blend [closed]
12 novembre 2024, par li luI have two videos : one background video and one foreground video (with doves flying, containing an alpha channel). I want to blend these two videos so that only the dove parts participate in the blending, while the transparent parts do not. When I use the ffmpeg blend filter, the overall color of the output video changes, as if the entire video is being blended.


-
ffmpeg-python crossfade transition for unknown number of videos
1er mai 2022, par Sarah PetersonHow to pass a list of file names (videos) to ffmpeg and have it concat and crossfade between each in the simplest way ?


Thanks


-
how to put a red frame before each video programmatically, when concatenating videos using ffmpeg
7 février 2023, par Maifee Ul AsadTo merge files with ffmpeg I'm creating a text file like this :


file 'a.mkv'
file 'b.mkv'
file 'c.mkv'



Then I'm running this command to concat these videos :


ffmpeg -f concat -i file.txt -c copy merged.mkv



But the thing is, I want to put red frame for three seconds in the middle of each video.


Now I can get these videos' frame dimensions and create a video and modify the text file like this :


file 'red.mkv'
file 'a.mkv'
file 'red.mkv'
file 'b.mkv'
file 'red.mkv'
file 'c.mkv'



But this is not a programmatical approach, so is there any way I can concat videos and put red frames for three seconds (before every video) ?


I want to generate that red frame video, on run time.