- This uses vanilla JS and can be styled with classes.
- You may want to use the settings API directly though.
-`window.NativeShell.AppHost.exit()` - Closes the application.
## Media Playback
See [mpvVideoPlayer.js](https://github.com/jellyfin/jellyfin-media-player/blob/master/native/mpvVideoPlayer.js) for a complete example of how to connect and control the player.
Notable API methods:
-`api.power.setScreensaverEnabled(enabled: boolean)` - Enable or disable screensaver.
-`api.player.load(url, positiondata, streamdata, audioStream, subtitleStream)` - Play media. See below.
-`api.player.setSubtitleStream(subtitleStream)` - Set subtitle stream. See below.
-`api.player.setSubtitleDelay(msDelay: int)` - Set subtitle delay.
-`api.player.setAudioStream(audioStream)` - Set audio stream. See below.
-`api.player.stop()` - Stop playback.
-`api.player.seekTo(positionMs: int)` - Seek to absolute position in milliseconds.
-`api.player.getPosition((positionMs: int) => void)` - Get current position in milliseconds.
-`api.player.pause()` - Pause playback.
-`api.player.play()` - Resume playback.
-`api.player.setPlaybackRate(playbackRate: int)` - Set playback rate. 1000 is normal speed.
-`api.player.setVolume(volume: int)` - Set volume. 100 is full volume.
-`api.player.setMuted(muted: boolean)` - Set if player should be muted.
Notable events (see API info below for how to connect/disconnect):
-`api.player.playing: void` - Fires when playback starts.
-`api.player.positionUpdate: int` - Fires periodically to update current position in milliseconds.
-`api.player.finished: void` - Fires when playback finishes.
-`api.player.updateDuration: int` - Fires to provide duration in milliseconds when available.
-`api.player.error: string` - Fires if media playback fails.
-`api.player.paused: void` - Fires when playback is paused.
Loading media:
```js
api.player.load(
url,
{
startMilliseconds: ms,
autoplay: true
},
streamdata,
audioStream,
subtitleStream,
callback
)
```
Note: The callback does NOT mean the video actually finished loading. You need to wait for events to determine this.
`streamdata`:
```js
{
type: 'video', // use 'music' to disable video rendering
headers: {
'User-Agent': 'JellyfinMediaPlayer'
},
metadata: {
// Only used for system UI integration, eg. taskbar/windows media.
`audioStream` is `#{index}` (It starts at 1, for instance `#1`. The index is relative and only includes audio tracks.)
`subtitleStream` is:
- empty string - disables subtitles
-`#{index}` - subtitles embedded in file (It starts at 1, for instance `#1`. The index is relative and only includes subtitles tracks.)
-`#,{url}` - external subtitle to load from remote url (for instance `#,https://example.com/file.srt`)
## Remote Control
You can recieve input from remote controls and gamepads via the input component. There is also an unused
"TV" mode which can be set in the config. It disables keyboard into the webapp and redirects it through
this as well.
See [jmpInputPlugin.js](https://github.com/jellyfin/jellyfin-media-player/blob/master/native/jmpInputPlugin.js) for an example which picks up events and translates them to ones that `jellyfin-web` understands.
```js
api.input.hostInput.connect((actions) => {
actions.forEach(action => {
// action is a string which represents the action
});
});
api.system.hello("jmpInputPlugin"); // signals to start sending user input
```
The inputs which are actually processed by `jellyfin-web` are fairly limited, but there are many more possible events.
See the [inputmaps](https://github.com/jellyfin/jellyfin-media-player/tree/master/resources/inputmaps) folder for event names for various input devices.
## Settings
The application retains some user settings that control advanced functions, such as audio passthrough.
There is already [a modal](https://github.com/jellyfin/jellyfin-media-player/blob/7d5943becc1ca672d599887cac9107836c38d337/native/nativeshell.js#L189-L308) you can invoke display of which allows basic configuration changes.
The configuration options are defined here: [settings_description.json](https://github.com/jellyfin/jellyfin-media-player/blob/master/resources/settings/settings_description.json)
Current Settings:
- Main Section (`main`):
-`fullscreen: boolean`: Forces the application into fullscreen mode.
- Note: Regular HTML5 fullscreen does still work.
-`alwaysOnTop: boolean`: Keeps JMP on top of other windows.
-`useOpenGL: boolean`: Windows only. Controls display method.
-`forceFSScreen: string`: Forces fullscreen to use a specific display.
- The options for this are automatically generated.
-`checkForUpdates: boolean`: Allows user to disable update check plugin script.
- This has no effect if you don't use the update script.
-`enableInputRepeat: boolean`: Allows disabling repeating of control inputs.
-`userWebClient: string`: Hidden option. Set it back to an empty string to allow the user to select a different webclient path.
- Plugins Section (`plugins`):
-`skipintro: boolean`: Enables or disabled the plugin. You likely won't use this.
- Audio Section (`audio`):
-`devicetype: string enum`: Sets the device type. Can be `basic`, `spdif`, or `hdmi`.
-`basic` disables passthrough
-`spdif` transcodes surround sound to specific formats
-`hdmi` supports additional passthrough options
-`channels: string enum`: Sets how many channels are allowed. The default is `stereo` except on MacOS where it is `auto`.
-`auto` - Automatically set.
-`2.0` - Stereo
-`5.1,2.0` - Up to 5.1 surround
-`7.1,5.1,2.0` - Up to 7.1 surround
-`device: string`: Allows forcing media output to a specific device. The default is `auto`.
- The options for this are automatically generated.
The global `window.jmpInfo` object contains settings for the application in the form of `window.jmpInfo.settings.[section][key] = value`.
Settings descriptions are stored in the form `window.jmpInfo.settingsDescriptions.[section] = [{ key, options }]`
- These are kept up-to-date in response to user changes.
- If you want to change any settings, `await window.initCompleted` first.
- To change a setting, simply set the setting to a new value. Don't overwrite an entire section.
- You can subscribe to settings changes by adding a `callback(section, changes)` to `window.jmpInfo.settingsUpdate`.
- Similarly, you can subscribe to settings description updates by adding a `callback(section, changes)` to `window.jmpInfo.settingsDescriptionsUpdate`.
- This is useful for reactive settings, for instance when you change the audio device type.
You can also use the API to set and query settings. This is largely not needed unless you want to be sure a setting change is complete before you do something: