
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 (81)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (12253)
-
ffmpeg : New text after a few seconds without having both texts at the same time for one frame
21 avril 2022, par principal-ideal-domainThis answer was very usefull for me to learn how to include texts in a video using ffmepg. Now at one position of the video I want to always show a text but it changes. So what I did is for one text I used for example
enable='between(t,0,5)'
and for the nextenable='between(t,5,10)'
. Now at the frame at 5 seconds the video shows both texts. That is not what I want. I guess the reason is thatenable='between(t,0,5)'
includes the boundaries of the interval. So I somehow need ffmpeg to stop showing the first text one frame earlier. How do I do that ?

-
Is it possible to add a border around the box under the text for drawtext ? [closed]
23 octobre 2024, par NickI got the following command that adds an overlay with red text on a white box. How do I add a black border around the white box ?


ffmpeg -i "input.mp4" -vf "drawtext=textfile='./text.txt':x=(w-text_w)/2:y=h-th-10-150:font='Arial':fontsize=60:fontcolor=red:box=1:boxcolor=white@1:boxborderw=25:enable='between(t,0,3)'" -c:a copy "output.mp4"



-
Overlay text using FFmpeg command in android programmatically
2 mars 2024, par Daniel NyamasyoI need to know what is the issue with my FFmpeg command for overlaying text to a video in android.



command = new String[]{"ffmpeg", "-i", original_path, "-vf", "drawtext=text='SiteName.local': fontsize=18: fontcolor=white: x=10:y=h-th-10", "-acodec", "copy", "-y", dest.getAbsolutePath()};




I am trying to create a video with a text overlay. However, i'm getting an error



[NULL @ 0xea699600] Unable to find a suitable output format for 'ffmpeg'
 ffmpeg: Invalid argument




I have tested for the input file and output file using different command for trimming videos and it worked. However, the FFmpeg command for overlaying text does not work. I kindly ask for help.



Besides, i also need to know how i can animate the text to scroll from left to right, bounce using FFmpeg commands in android etc