9951 explained code solutions for 126 technologies


ffmpegHow to add text from file to video using drawtext filter


ffmpeg -i in.mp4 -vf "drawtext=x=10:y=20:fontsize=24:fontcolor=white:textfile=text.txt" -c:a copy out.mp4ctrl + c
-i in.mp4

input video file

-vf

apply specific video filters

drawtext=

drawtext filter options

x=

horizontal position in pixels from top left corner

y=

vertical position in pixels from top left corner

fontsize

size of the text to display

fontcolor

color of the text

-c:a copy

copy audio without converting

out.mp4

resulting video file

textfile=

path text file with text to add to video