
Recherche avancée
Autres articles (47)
-
Les vidéos
21 avril 2011, parComme 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 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 (...)
Sur d’autres sites (8618)
-
How to make fade in/out effect between concatenate videos using ffmpeg
7 février 2018, par no nameI have three videos which divide into three parts on is the start then main video then end of the video in which I concatenate them together I want to add fade in/out effect at the end of the first video and at the start of the third video so they are separated nicely to the viewer.
i used this code to concatenate the video together by adding videos name to the text fileffmpeg -f concat -i ffmpeg-sound.txt -c copy final_output.mp4
now what command should i pass so i can add this effect as iam not good at ffmgep. or if there is any other things to follow.
Thanks in advance -
Storing large videos on the Server
14 novembre 2019, par civ15In my application the client is uploading relatively large videos, average is 500 MB. I have to encode the video in the backend to reduce the size, and I’m trying to use ffmpeg for that. However, ffmpeg needs around 10 minutes for each video, and I should be able to serve the video to the client instantly, or, at least in a few seconds after the upload is finished.
What would be the best practice in this context ?
-
When concatenating videos With FFMPEG, the audio becomes out of sync (python)
22 juin 2022, par Funny FightsSo I have a txt file like this with a path to all my videos :


file 'video1.mp4'


file 'video2.mp4'


file 'video3.mp4'


and I want to combine them into one big video :


I am using in python :


ffmpeg -f concat -safe 0 -re -i txtfile.txt -c copy concatenatedvideo.mp4


But the concatenatedvideo.mp4 ends up having the video and audio become out of sync.


How do I make it so the videos simply combine and keep their audio as it was, instead of becoming out of sync ?