
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (61)
-
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 (11639)
-
How to concat videos using ffmpeg ?
5 septembre 2021, par schissmanticsI'm trying to concat several videos using ffmpeg on macOS BigSur. I tried :


ffmpeg -i concat:"01-vid.mov|02-vid.mov|03-vid.mov|04-vid.mov" out.mov



which results in only
01-vid.mov
being re-encoded for some reason and saved toout.mov
.

and :


cat '01-vid.mov' > vid.txt
cat '02-vid.mov' > vid.txt
cat '03-vid.mov' > vid.txt
cat '04-vid.mov' > vid.txt
ffmpeg -f concat -safe 0 -i vid.txt -c copy out.mp4



Which results in the same outcome.


and :


cat 01-vid.mov 02-vid.mov 03-vid.mov 04-vid.mov > out.mov



which results in
out.mov
having the size of the 4 combined but a duration of only the first one.

and :


I join the vids using quicktime but whenever I try to re-encode the resulting vid using ffmpeg, it produces a corrupt video despite the input seemingly ok.


-
How to encode multiple videos parallel (Debian)
20 juillet 2012, par WolfenI'd like to encode some video files either to MP4 and X264 format in Linux Debian.
It is very important that I encode multiple files parallel.
E.g. I want to encode two videos parallel on a Dual Code Machine and put the other videos in a queue. When a Video is finished I want the free core to encode the next video in the queue. Also even when this'd work with x264 I don't know about MP4.What is the best approach here ?
x264 supports parallel encoding but I don't know whether this is parallel encoding for multiple files or parallel encodings of different version for one single video.
Is there a way I can assign a encoding-process to core1 and another to core2 ?Sincerly,
wolfen -
Why aren't the videos merging ?
25 décembre 2023, par user9987656I have 100 videos (total duration of 10 hours) from one author, and I'm trying to merge them into one large video, but I'm encountering an issue. ffmpeg is giving me several errors with the following message :


"mp4 @ 000002067f56ecc0] Non-monotonic DTS in output stream 0:0 ; previous : 968719404, current : 434585687 ; changing to 968719405. This may result in incorrect timestamps in the output file."


As a result, I end up with a 10-hour video, but I can only view the first 3 hours and the last 2 hours.


What could be causing this problem ? I'm using the streaming copy command.


-f concat -safe 0 -i input.txt -c copy