This is a Heroku buildpack for using vlc in your project.
It doesn't do anything else, so to actually compile your app you should use heroku-buildpack-multi to combine it with a real buildpack.
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/ert55/heroku-buildpack-vlc
https://github.com/heroku/heroku-buildpack-nodejs
$ heroku create --buildpack https://github.com/ddollar/heroku-buildpack-multi
$ git push heroku master
...
You can verify installing vlc by following command.
$ heroku run "vlc -version"