The error message “make: *** [ffmpeg_frame.lo] Error 1” is received while compiling ffmpeg-php and the reason isĀ the missing ffmpeg_frame.lo file. The ffmpeg-php directory contains a ‘ffmpeg_frame.loT’ file which actually should be ‘ffmpeg_frame.lo’.
The solution is to rename the file ffmpeg_frame.loT to ffmpeg_frame.lo. Go to the directory
# cd /path/to/directory/ffmpeg-php-0.x.x
and rename the file
# cp ffmpeg_frame.loT ffmpeg_frame.lo
Once done, compile ffmpeg-php again.
Related Links:
Unable to load dynamic library ffmpeg.so OR error PIX_FMT_RGBA32
Comments are closed.