in my heroku PHP app I have to use ffmpeg with libx264 support but found no buildpack that provides libx264 support. So
- I forked Heroku Buildpack with ffmpeg support
- Compiled ffmpeg on 64 bit Ubuntu 14.04 using the steps mentioned here. (I compiled without -libvpx)
- Moved the items of ~/bin folder to the bin folder of ~/ffmpeg_build folder and then compressed the ffmpeg_build folder. Uploaded it here.
- In my forked rep I updated the downloaded_url to my ffmpeg_build.
- Created a .buildpacks file with following entry:
https://github.com/snehasishroy/heroku-buildpack-ffmpeg
https://github.com/heroku/heroku-buildpack-php
Finally I created my heroku app with
heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi
But when I ran heroku run "ffmpeg -version" error message stated that ffmpeg:command not found
Can anybody please tell me what mistake I committed? Any help would be appreciated.