[Solved] Compile error when using FFMPEG library

A lowercase -l is a linker option used to specify libraries. They might look like libsomething.a and becomes -lsomething in the linker invocation. In order to add a directory to the header search path, use a capital i, -I. gcc main.c -L/some/path/ffmpeg_build/lib -I/some/path/ffmpeg_build/include 1 solved Compile error when using FFMPEG library

[Solved] FFMPEG : Adding font to Video gives error

SOLVED I used text file for inserting space between characters in ffmpeg command. As the direct space was not working as i said in question. So build a text file text.txt. The contents will be the text you want on your video. Then build the command like this : “-i “+path+”out.mp4 -vf drawtext=fontfile=”+path+”f1.ttf:textfile=”+path+”text.ttf -y -c:v … Read more