
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (10)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...)
Sur d’autres sites (5648)
-
FFmpeg - Is It Possible To Cut Video Stream According to its SSIM Value
30 juillet 2021, par user4134414I have a video stream with a certain constant event happening from time to time. For example, a traffic light turning green. I would like to cut a few seconds of the video every time the event happens (continuing the example, cars start moving). I managed to use a predefined image and SSIM to detect the event (in the SSIM log file), but I cannot find a way to cut the stream in real time according to its SSIM value. Any help would be appreciated.


-
Multicolor text in FFmpeg
14 septembre 2018, par Holy_diverHow to use drawtext in ffmpeg to draw multicolor text over video ?
Example : I want to highlight a proper nouns in a sentence,
"XYZ company shares hike 91%"
highlight XYZ white yellow
highlight 91% with greenIf you have any other approach not using ffmpeg to draw multicolor text over video, that would work too.
-
FFmpeg How to combine two filter complex commands
14 avril 2020, par Satish BitlaFirst command add logo to video

ffmpeg -y -i VIDEO.mp4 -i image.png \
 -filter_complex "overlay=x=main_w-overlay_w-(main_w*0.01):y=main_h-overlay_h-(main_h*0.01)" \
 OUT.mp4


Second command green screen replace



ffmpeg -i bg.jpg -i input.mp4 -filter_complex "[1:v]chromakey=0x3BBD1E:0.1:0.2[ckout] ;[0:v][ckout]overlay[o]" -map [o] -map 1:a output.mp4