
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (88)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (8441)
-
FFMPEG : what is the limit of parameter using for text to video ?
11 juillet 2017, par Bunker Boyi am using ffmpeg for text to video conversion and everything working fine just only can not decide how much fontsize can accepted there and height & width limit for video as well as how many characters can allow ?
the command i am usingffmpeg -f lavfi -i color=c=0x000000:s=1600x1600 -vf
"drawtext=fontfile=PATHOFFONTS/DejaVuSans.ttf:fontsize=96:fontcolor=0xffffff:y=(h-line_h)/2:x=-(4*n)+W:text=’text
text text long text long text long text’" -r 24 -t 1140
PATHTOSAVE/video.mp4here text moving from right to left.
-t 1140 // is the time i have calculated separately
s=1600x1600 then video mime type got corrupted and video is not working well.
can anybody let me know what is the minimum and maximum range i can pass for fontsize, height, width and text ?
-
FFMPEG - Multiple filters at same time (add background, draw text, add overlay) [closed]
11 août 2023, par Jason z- 

- I am adding a bitmap in start of a video, remains there for 2 seconds, then actual video starts, using following command






ffmpeg -i SRC.mp4 -framerate 25 -loop 1 -t 2 -i first-bg.png -f lavfi -t 2 -i anullsrc -filter_complex "[0:v]trim=0:2,drawbox=t=fill[base] ;[1][base]scale2ref=iw:ih:force_original_aspect_ratio=decrease:flags=spline[2nd][base2] ;[base2][2nd]overlay='(W-w)/2' :'(H-h)/2'[padded] ;[padded][2:a][0:v][0:a]concat=n=2:v=1:a=1[v][a]" -c:v libx264 -c:a aac -map "[v]" -map "[a]" -to 0:05 -y z_with_intro.mp4




- 

- Then am drawing text on video for first 2 seconds using this :






ffmpeg -i z_with_intro.mp4 -filter_complex "drawtext=text='Structures in C Language':line_spacing=30:x=100:y=100:fontcolor=#FFFFFF:fontsize=96:fontfile=arial.TTF:enable='between(t,0,2)'" -to 0:05 -c:v libx264 -c:a aac -y z_with_text.mp4




Problem :
I tried combining both of commands by repeating -filter_complex in command, it didn't work, neither when I used comma and append draw text like this :
....:a=1[v][a],drawtext=text.....


Additionally : I also want to add audio from e.g. SRC.m4a for 2 seconds in the beginning of target file where I added intro in first command, how will I do that too, all in single command.


thanks


-
avcodec/version : bump minor after evc parser and frame_merge bsf additions
15 juin 2023, par James Almer