├── .gitignore ├── Dockerfile ├── FFmpeg.asc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── compile ├── detect ├── ffmpeg ├── release └── util └── rakelib └── ffmpeg.rake /.gitignore: -------------------------------------------------------------------------------- 1 | /.bundle/ 2 | /.env 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/Dockerfile -------------------------------------------------------------------------------- /FFmpeg.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/FFmpeg.asc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "FFmpeg" 4 | exit 0 5 | -------------------------------------------------------------------------------- /bin/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/bin/ffmpeg -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo -n "" 4 | -------------------------------------------------------------------------------- /bin/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/bin/util -------------------------------------------------------------------------------- /rakelib/ffmpeg.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kontentcore/heroku-buildpack-ffmpeg/HEAD/rakelib/ffmpeg.rake --------------------------------------------------------------------------------