
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (92)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8006)
-
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 ?


-
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