
Advanced search
Medias (91)
-
GetID3 - Boutons supplémentaires
9 April 2013, by
Updated: April 2013
Language: français
Type: Picture
-
Core Media Video
4 April 2013, by
Updated: June 2013
Language: français
Type: Video
-
The pirate bay depuis la Belgique
1 April 2013, by
Updated: April 2013
Language: français
Type: Picture
-
Bug de détection d’ogg
22 March 2013, by
Updated: April 2013
Language: français
Type: Video
-
Exemple de boutons d’action pour une collection collaborative
27 February 2013, by
Updated: March 2013
Language: français
Type: Picture
-
Exemple de boutons d’action pour une collection personnelle
27 February 2013, by
Updated: February 2013
Language: English
Type: Picture
Other articles (38)
-
Les vidéos
21 April 2011, byComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 May 2011, byThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 April 2011, byMediaSPIP 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 (...)
On other websites (4299)
-
how can i stack videos which have different durations?
16 November 2018, by user2707690I made a ffmpeg filter graph using hstack to merge two videos. The two videos have different durations. One has 1:30 and the other has 8:48 length.
I had expected the output video has 8:48, but the result was 2:14. Is this hstack filter spec?
And is there any other solution?
command line is here. (these webms have only video streams)
ffmpeg -i vonly_short.webm -i vonly_long.webm -filter_complex "[0:v]scale=-1:270, pad=480:270:-1:-1[v0];[1:v]scale=-1:270, pad=480:270:-1:-1[v1]; [v0][v1]hstack=2:0[outv]" -map [outv] -c:v vp8 out.webm
-
FFMPEG to trim off last 3 seconds of videos
27 January 2023, by humble5050I am trying to trim/cut off the last 3 secs of my videos with FFMPEG but this has really been an headache.



The following code trims but only retains the last 3 seconds.
I don't want to retain the 3 secs, i don't need that, i want to retain the deleted part.



ffmpeg -sseof -3 -i input.mp4 output.mp4



Can someone please help me with the right code?.
I will also like to request a batch code that will auto trim all last 3 secs of videos in my folder.
Thanks for the help.


-
Concat videos without shifting audio
8 November 2016, by VixinGI have a few videos I’m concating with
ffmpeg -f concat -i myfiles.txt -c copy
, and two of the videos in the middle have no audio track. After concat the audio shifts. It moves the audio from later videos on top of the muted ones.How can I concat without shifting the audio, so the muted parts are still muted?
audiovideo + audiovideo + audiovideo + video + video + audiovideo + audiovideo