
Recherche avancée
Médias (1)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (75)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9607)
-
avformat/matroskaenc : Improve log message
20 avril 2019, par Andreas Rheinhardtavformat/matroskaenc : Improve log message
Since 4e3bdf729a80f868b014ceb02901d87198b545a5 there is no reason any
more to treat the seekable and non-seekable cases separate with regards
to the log message for a new cluster. This effectively reverts
d41aeea8a64bab5d7aacd602f7214f95baad109f.Also improved the log message : "pts 80dts 0" -> "pts 80, dts 0".
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
Ffmpeg Windows, Add Text on Video (Bottom)
16 juillet 2020, par BukanscamThe code : (create blur background from vertical video and mix audio). This code is OK.


ffmpeg -i VERTICALVIDEO.mp4 -lavfi "[0:v]scale=ih*16/9:-1,boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,crop=h=iw*9/16" -filter_complex "amovie=AUDIO.mp3:loop=0,asetpts=N/SR/TB,volume=0.3[audio];[0:a]volume=3[sa];[sa][audio]amix[fa]" -map 0:v -map [fa] -vcodec libx264 -b:a 32k -preset ultrafast -shortest -vb 800K -y output.MP4



And i want to add color text on the video (bottom center), how to do it ?


Thanks for the response


-
How to insert emote-like images among text with ffmpeg ?
26 janvier 2020, par Vijay BharadwajI am using FFMPEG to recreate a twitch-like video chat for streaming overlay and wanted a way to insert twitch emotes into the chat that I have. The twitch emotes come in small png/jpg files.
Currently, I use the drawtext command on several messages to get the text part of the chat, but the emotes are integral to make it look like twitch chat. Any idea how to do this ?
If it helps, I have a working simulation of the twitch chat on a video in a webpage, using HTML, CSS, and javascript. All I’m trying to do is take what’s simulated and embed it into the video.