
Recherche avancée
Autres articles (62)
-
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 (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8971)
-
How to merge two videos using ffmpeg Android
12 août 2021, par Usama ShakeelI have two videos which I want to merge. Both have same resolution. The second video does not have any audio


ffmpeg -i test.mp4 -i picture.mp4 -filter_complex "[0:v] [0:a] [1:v] [1:a] concat=n=1:v=2:a=1 [v] [a]" -map "[vv]" -map "[aa]" mergedVideo.mp4


this is the command that I am using but I am getting the following error
Stream specifier ':a' in filtergraph description [0:v] [0:a] [1:v] [1:a] concat=n=2:v=2:a=1 [v] [a] matches no streams.


I am not very familiar with ffmpeg commands but I guess I am giving some wrong -filter complex values


-
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 ?


-
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 ?