make: ffmpeg_frame.lo error while compiling ffmpeg-php
Posted by Category: Linux AdministrationThe error message “make: *** [ffmpeg_frame.lo] Error 1″ is received while compiling ffmpeg-php and the reason isĀ the misspelled file name. If you notice, “ffmpeg_frame.lo” file is missing from the ffmpeg-php directory, instead a file called “ffmpeg_frame.loT” is present which shouldn’t be there.
The solution is to rename the file from 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
Tags: ffmpeg_frame.lo Error 1 message while compiling ffmpeg-php, ffmpeg_frame.lo missing from ffmpeg-php-0.xx directory, rename the file ffmpeg_frame.loT
