diff options
author | Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> | 2018-08-29 08:21:23 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-29 01:21:23 +0200 |
commit | ad94e1d50a1a13951d82aefcba97f581c54ca70a (patch) | |
tree | 0fcd55d778380aa0f1441950e2fc296e754a6167 | |
parent | 4bfd786550c9381f172e9dd30b99b60cc8c70013 (diff) |
Add ffmpeg buildpack for scalingo (#8500)
* Add ffmpeg buildpack for scalingo. * Add environment variable to install ffprobe Note: For existing applications, admins needs to add 'WITH_FFPROBE=true' to environment variable.
-rw-r--r-- | .buildpacks | 1 | ||||
-rw-r--r-- | scalingo.json | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.buildpacks b/.buildpacks index c232c712f..3450683ce 100644 --- a/.buildpacks +++ b/.buildpacks @@ -1,3 +1,4 @@ https://github.com/heroku/heroku-buildpack-apt +https://github.com/Scalingo/ffmpeg-buildpack https://github.com/Scalingo/nodejs-buildpack https://github.com/Scalingo/ruby-buildpack diff --git a/scalingo.json b/scalingo.json index 873731ac9..dd8fb5530 100644 --- a/scalingo.json +++ b/scalingo.json @@ -91,6 +91,11 @@ "description": "Internal scalingo configuration", "required": true, "value": "https://github.com/Scalingo/multi-buildpack.git" + }, + "WITH_FFPROBE": { + "description": "Internal scalingo configuration to install ffprobe", + "required": true, + "value": "true" } }, "scripts": { |