
Recherche avancée
Autres articles (63)
-
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 (...) -
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 (13618)
-
How to add a text watermark to multiple videos with ffmpeg
28 avril 2022, par che10I am currently using this command to output all videos in folder without the first 5 seconds :


FORFILES /M "*.mkv" /c "cmd /c ffmpeg -ss 5.5 -i ^"@file^" -c copy -map 0 ^"done\\@file^""



I would like to know how can I add a text watermark to all of them in the same command. The location of the watermark should be on top left of the video.


-
How to remove or attenuate background noise in videos
20 août 2019, par DavidTried removing typical background noise (low volume TV, indoor and outdoor air-conditioner/fan) from videos using following code. Didn’t work. Would appreciate advice on how to do this.
ffmpeg -loglevel warning -y -strict -2 -i IN.mts -af "highpass=f=200, lowpass=f=3000" OUT.mts
SHORT SAMPLE VIDEOS :
low volume TV in background :
https://youtu.be/wOQuKgDeC5AInside air conditioner or fan :
https://youtu.be/BTDFtH3vksYOutside air conditioner :
https://youtu.be/EeSyKM25Gig -
Hi, I am struggling with batch converting a whole files of videos to a new frame rate using ffmpeg ?
31 octobre 2023, par JosieI am using this to convert videos. I would like to be able to convert more than video at once in a natch conversion. I am currently using the below code to do one video, but I am struggling to adjust it to make it so it can do more than one at once. Does anyone know how ?


ffmpeg -i “filename.mp4” –vf "fps=5,scale=640:360" “fileconverted.mp4”