
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (104)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (7809)
-
ffmpeg - Any way to add a transition to a list of clips to combine into a single video ?
29 avril, par J. PenaLet's say I have a directory with 5 videos with the titles listed as the following


- 

- 1.mp4
- 2.mp4
- 3.mp4
- 4.mp4
- 5.mp4












I created the text file named mylist.txt with the following written.


file '1.mp4'
file '2.mp4'
file '3.mp4'
file '4.mp4'
file '5.mp4'



I have an ffmpeg command that will combine these clips into one file beautifully already using the text file.


ffmpeg -f concat -safe 0 -i mylist.txt -c copy combined.mp4



My question is how can I add a fade transition to clips 2-4 using the text file ? The filter_complex parameter gives me an error.


Streamcopy requested for output stream fed from a complex filtergraph. Filtering and streamcopy cannot be used together.



-
is it possible to have other text blend effects in ffmpeg other than transparency ? eg multiply or difference
26 mars 2023, par shelbypereiraIn ffmpeg it is straightforward using alpha to set a transparency when using drawtext, but is it possible to have more complex effects ? eg if I want to blend text using difference or multiply ?


I am guessing it is not possible with drawtext directly is it possible to simulate this using other features of ffmpeg ?


The blend functionality is extremely powerful :
https://trac.ffmpeg.org/wiki/Blend


But I don't see how I can add text to a video with drawtext and use those blending options.


-
What is the purpose of the split filter in FFMpeg ?
1er juin 2024, par TheOrbitHeartIn complex filters specifically, is there a situation where it is necessary to use the split filter, rather than use the same input multiple times ?


For example, consider the following FFmpeg command :


ffmpeg -i input.mp4 -filter_complex \
 "[0:v]hflip[out1]; \
 [0:v]boxblur=10[blurred]; \
 [out1][blurred]hstack[out]" \
 -map "[out]" output.mp4



It seems to work perfectly fine, But I saw some tutorials consistently using "split" in situations like this, where the input is split before any other filters are applied, making me wonder if there are unintended consequences to using inputs directly like this, I tried to find filters that may alter the input or optimization issues but I found no difference. So, it begs the question, what's the purpose of "split" ? and when should I use it ?