
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (78)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8728)
-
ffmpeg - scrolling text with specified boundaries and cut video when text ends
19 février 2017, par Elma PaulHaving this working ffmpeg filter with overlayed scrolling text
f -i text_bg.mp4 -vf "drawtext=enable:fontsize=200:fontcolor=White:fontfile='ARIALN.TTF':text='asdfhlajsdh LKFJAHSDFH':x=-(mod(8*n\,w+tw)-tw):y=h/2-th/2" outtt.mp4 -y
I have two questions :
1.) How can I set specified boundaries for drawtext ? Just fix positions where the text will dissapear. Like here in picture
scrolling text with specified boundaries example
2.) How is it possible to cut the video(specify time) according to the text length.Meaning that the video will finish after ends the text line +plus one second ? -
First image not showing image to video using ffmpeg
3 octobre 2014, par death_relic0I am very new to ffmpeg and trying to convert a series of images to a video.
The command I am using (copied/modified from a tutorial)
ffmpeg -framerate 1/5 -start_number 1 -i dog%01d.jpg -c:v libx264 -r 30 -pix_fmt rgb24 dog.mp4
Basically, I have 4 images labelled dog1.jpg, dog2.jpg, dog3.jpg and dog4.jpg.
The problem is the output video I get has image starting at "dog2.jpg" and ending at "dog4.jpg" meaning that it is missing the first image in the sequence (i.e dog1.jpg).
I tried with different image combinations and the same behavior happened, the resulting video never had the first image in the sequence.
Any ideas ?
-
How can I resize an overlay image with ffmpeg ?
28 novembre 2020, par Andrei DascaluI am trying to add an overlay to a video using the following command


ffmpeg -y -i "$videoPath" -i "$overlayPath" -filter_complex "[0:v] [1:v] overlay=$overlayPosition" -pix_fmt yuv420p -c:a copy "$outputPath" 



However, I would like to be able to resize the overlay I am about to apply to some arbitrary resolution (no care for keeping proportions). However, although I followed a couple of similar solutions from SO (like FFMPEG - How to resize an image overlay ?), I am not quite sute about the meaning of the parameters or what I need to add it in my case.


I would need to add something like (?)


[1:v]scale=360:360[z] [1:v]overlay=$overlayPosition[z]



This doesn't seem to work so I'm not sure what I should be aiming for.


I would appreciate any assistance, perhaps with some explanation.


Thanks !