Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hekike/heroku-buildpack-ffmpeg2
https://github.com/hekike/heroku-buildpack-ffmpeg2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/hekike/heroku-buildpack-ffmpeg2
- Owner: hekike
- Created: 2014-03-20T08:48:16.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-20T08:51:30.000Z (over 10 years ago)
- Last Synced: 2024-04-14T20:10:21.991Z (7 months ago)
- Language: Shell
- Size: 21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Heroku buildpack: FFMpeg
=======================This is a [Heroku buildpack](http://devcenter.heroku.com/articles/buildpacks) for using [ffmpeg](http://www.ffmpeg.org/) in your project.
It doesn't do anything else, so to actually compile your app you should use [heroku-buildpack-multi](https://github.com/ddollar/heroku-buildpack-multi) to combine it with a real buildpack.Usage
-----
To use this buildpack, you should prepare .buildpacks file that contains this buildpack url and your real buildpack url.$ ls
.buildpacks
...
$ cat .buildpacks
https://github.com/shunjikonishi/heroku-buildpack-ffmpeg
https://github.com/heroku/heroku-buildpack-play$ heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi
$ git push heroku master
...You can verify installing ffmpeg by following command.
$ heroku run "ffmpeg -version"
Hacking
-------
If you want to use your own ffmpeg binary, fork and rewrite following line.https://github.com/shunjikonishi/heroku-buildpack-ffmpeg/blob/master/bin/compile#L10
It uses
-------
ffmpeg binary by http://johnvansickle.com/ffmpeg/releases/ffmpeg-1.2.5-64bit-static.tar.bz2The binary is stored at gh-pages branch in this repo.