by heroku
GitHub Readme.md
This is an official Heroku buildpack to support Rails 5.2 users of Active Storage previews.
One of the marquee features of Active Storage is the ability to use “previews” of non-image attachments. Specifically you can preview PDFs and Videos. To use this feature your application needs access to system resources that know how to work with these files. By default Rails ships with support for two PDF libraries, one of which is available on Heroku, and it can use FFMPEG for Video previews, which is not available by default on Heroku.
If you want the ability to preview video files with Active Support you need to run:
heroku buildpacks:add -i 1 https://github.com/heroku/heroku-buildpack-activestorage-preview
Once you’ve done this, you need to deploy again to get the binaries. You can verify that the dependencies are installed by running which ffmpeg
on the command line. If there is no output then the operation was not performed correctly. If you see a result then the binaries are ready to be used:
heroku run bash
~$ which ffmpeg
/app/.heroku/activestorage-preview/bin/ffmpeg
Instructions for building binaries (currently only FFMPEG) can be found in build/README.md.
The main branch is stable. Each commit is a stand alone version.
Copy the snippet above into CLI.