Yet Another Ffmpeg/libx264 Issue
My current situation is; ffmpeg and libx264 has been compiled for Android, as shared and static libraries respectively. Since I have libx264.a and libffmpeg.so with me, only thing
Solution 1:
Your errors are nothing to do with ffmpeg/libx264. You cannot have those comments in the middle. Look at the error
./buildnew.sh: line 35: --extra-cflags=-I/usr/local/include: No such file or directory
It thinks --extra-cflags is a command and so on for everyline that is the first one after the comment.
Your command should be continous and without any comments. The "\" operator does not work from comments.
Post a Comment for "Yet Another Ffmpeg/libx264 Issue"