So I am trying to combine a .mp3 and a image and add text then turn it into a .mp4 with ffmpeg, what would the command for this be.
I tried: ffmpeg -i audio.mp3 -i background.jpg -filter_complex "[0:v][1:v]overlay=10:10,drawtext=text='Hello World'" -c:a copy -movflags +faststart output.mp4
But it gave me this error: Stream specifier ':v' in filtergraph description [0:v][1:v]overlay=10:10,drawtext=text='Hello World' matches no streams.
Also how would I change the font of the text.