
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (51)
-
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 ;
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
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 (...)
Sur d’autres sites (6789)
-
FFMPEG not moving text
27 janvier 2023, par sullyh7So I'm trying to add scrolling text to a video using ffmpeg (using Golang to execute a ffmpeg command)


I am using this command to test how text moves :


"ffmpeg -y -i %s -filter_complex \"[0]split[txt][orig];[txt]drawtext=fontfile=font/Amejo.ttf:fontsize=20:fontcolor=white:x=(w-text_w)/2+20:y=t:text='" + strings.Join(strings.Split(verse.Translation, " "), "\n") + "':bordercolor=black:line_spacing=20:borderw=3[txt];[orig]crop=iw:50:0:0[orig];[txt][orig]overlay\" -c:v libx264 -y -preset ultrafast %s"



I have set the y = t, expecting it to move the text. However my text just stays stationary, I have no idea why.


This is an example output (Its a video but this is all it shows the entire video) :



Thanks


-
Make text always fit inside any sized photo/video frame ffmpeg
29 août 2020, par pigeonburgerI'm trying to use the drawtext filter in ffmpeg to add text to a video, but depending on the frame size, the text can either be too large (parts of it not even in the video frame) or too small (barely readable). Is there a way I can make the text automatically resize itself to perfectly fit the frame ?


Here's the line of code I am using right now :


ffmpeg -i input.jpg -vf "drawtext=font='Impact': text='Test Text': fontcolor=white: borderw=3: fontsize-75: x=(w-tw)/2:y=h/12-th/2" output.jpg



Thanks in advance for anyone who helps.


-
Android place multiple images and text inside video at desired position and frame
19 septembre 2018, par MathaNI am new for video editing in android, I am finding a solution to edit a video in Android application, unfortunately I cannot get any examples for that, I need to place Image or text on video in a desired frame and also need to save it. Just like InShot android app , I tried to add simple text using ffmpeg but it tooks to much of time to save a video. Is there any alternative way to do that ?