
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (56)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (9276)
-
configure : Fix debugging on mingw-w64 with gdb
29 mars 2016, par Alex Smithconfigure : Fix debugging on mingw-w64 with gdb
The relocation hack broke debugging on mingw-w64 when using gdb. This
makes the reloc hack dependent on —disable-debug so it’s still enabled
for release builds.This is simply an immediate fix for the issue of broken debugging, we
should probably still look at the possibility of reverting it outright
if it proves to be more trouble than it’s worth. For now keeping it
enabled for release builds is a reasonable trade off.Signed-off-by : Alex Smith <theryuu@warpsharp.info>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
how can i add watermark and compress a batch of video with ffmpeg
27 mai 2021, par The Funstersi am using ffmpeg for video editing


i am adding watermark to a bulk of videos with


for %%a in ("*.mp4") do ffmpeg -i "%%a" -i watermark.jpg -filter_complex "overlay=1000:10" -preset slow -codec:a copy "newfiles%% na.mp4"


now i want to merge


for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec libx264 -crf 28 -preset faster -tune film "newfiles%% na.mp4"


so it will add watermark and compress the size of the videos


is there any way to merge them ?????


-
Get video resolution in nodejs
24 août 2016, par tgdnI have been trying to get an answer to this without really finding any. Excuse me if this sounds stupid or obvious.
I have a nodejs application and basically I would like to simply get the resolution of a video. Imagine I have film stored on disk and I would like to be able to know if it is in 720p or 1080p or anything else.
I understood that I might need to use ffmpeg to do so, but then I also understood that ffmpeg was mostly used to "record, convert and stream audio and video files".
That does not mean retrieve video resolution.Thank you for your help
Edit 1 :
The node.js app is a desktop app and needs to be portable to Linux, windows and OS X. If possible a portable answer would be more appreciated but of course any answer is welcome.