
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (89)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (18054)
-
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 ?


-
Split a very short second video into multiple parts
6 décembre 2020, par Nicolas TapinoI've been looking for a lot of softwares that can split videos into multiple parts but most of them only manage to split large videos to let's say 1 or 2 minutes for each part.


What I would like to do is to actually split a few seconds video into, let's say, 10 or more parts (therefore less that one second each, but still not frames).


I don't know if ffmpeg can be that precise or if there is any other solutions that exist.


-
split video and keep pts unchanged
31 mai 2020, par nobody0dayI am trying to split a big video into small ones and keep the pts unchanged in small videos. Any ideas on how to program with ffmpeg library in c programming language.



My first thought is that split video around the I-frame and keep the I-frame's pts as first_pts of next video but it didn't works.