1.0.0 • Published 6 years ago

hyper-media-control-vlc v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

hyper-media-control-vlc

License hyper GitHub issues

Extend hyper-media-control with support for VLC Media Player.

Installation

Add hyper-media-control and hyper-media-control-vlc to your Hyper configuration.

Enable the http interface in VLC and set a password in Access Control (instructions here)

Enter the password you chose into your Hyper configuration.

Configuration

hyper-media-control-vlc defines the following configuration options:

module.exports = {
    config: {
        ...
        hyperMedia: {
            ...
            vlc: {
                port: 8080, // The port used to communicate with VLC.
                username: '', // The username used to authenticate with VLC. For most users, this will be blank.
                password: '' // The password used to authenticate with VLC.
            }
            ...
        }
    }
}