
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (12253)
-
ffmpeg : removing hard subtitles from video [closed]
22 juin 2024, par cahro88Is it possible to remove, e.g. to interpolation like done in images, hard embedded subtitles/text


from a video using ffmpeg or any other solution for Linux ? Example : https://www.youtube.com/shorts/2ZIwg9fjev0


I already tried it with images, thumbnail without subtitles and image with subtitles. Which worked quite fine. Is there any solution for videos out there ?


-
FFmpeg Subtitles - New Line \n Break
30 avril 2021, par John DoeI am trying to find a way to add line breaks (returns) to my subtitles in ffmpeg, but so far coming up with nothing. If I add \n to the subtitle text it just doesn't show it. Here's my video filter :


subtitles=thumb.srt:force_style='FontName=Lilita One,Fontsize=60,Outline=8'



Any ideas ?


-
Ffmpeg , overlay two sequences of png's and turn them into a movie
12 mai 2014, par Lau Llobeti’ve found how to turn a png sequence into a movie, also i’ve found how to overlay two movies using transparency but I don’t know how to do both things at once (using png’s tranparency).
The bottom layer of png’s is smaller than the top one and needs to be stretched to a certain resolution and also have a padding to be centered.
The output dont have to have alpha (black for alpha is ok).
I’m a bit confused by the abundance of filter options
Edit :
for the moment i’ve found :
./ffmpeg -i ./seq1/%d.bmp -vf "movie=./%d.png [a]; [in][a] overlay=0:366" combined.m2v
it works , now i’ve got to find the padding and resize things
thank you in advance.