You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please read the [README.md] and understand whatever code you’re using – not just in case of this project but anytime. Heroku Buildpacks can especially do almost anything with your data (and code) and you put enormous trust in them…
If you want to use FFmpeg version which Kontent Core guys didn’t compile and don’t host, you have to do that yourself. This is not a bug and it’s described in README. And it’s simple do it yourself anyway. Clone the repo locally and do something like this:
docker build -t heroku-buildpack-ffmpeg .
docker run \
-e "AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id)"
-e "AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key)" \
-e "FFMPEG_S3_BUCKET=your-ffmpeg-binaries-s3-bucket"
-e "FFMPEG_VERSION=4.1.3"
heroku-buildpack-ffmpeg
You have to set FFMPEG_S3_BUCKET and FFMPEG_VERSION as config vars in your Heroku app so that this buildpack doesn’t expect defaults which suit Kontent Core but probably not you.
The text was updated successfully, but these errors were encountered: