Add documentation for Subtitles
This commit is contained in:
parent
1311ab0678
commit
1f5b791b94
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -128,7 +128,7 @@ By default, these buttons are hidden. If you want to show them, just add the `Sh
|
|||
<Zorn ShowBackAndForward/>
|
||||
```
|
||||
|
||||
**Settings Menu** - `SettingsMenu`
|
||||
**Settings Menu** - `SettingsMenu` [`<slot/>`]
|
||||
|
||||
<video title="Settings Menu in action on MinPluto" controls autoplay muted loop src="https://md.sudovanilla.org/videos/webm/Screencast%20from%202024-07-31%2000-44-01.webm"></video>
|
||||
|
||||
|
@ -211,6 +211,23 @@ If you need to add an addition attribute to either the video and/or audio source
|
|||
<Zorn VideoAttributes="muted" AudioAttributes={'download="media.ogg"'}/>
|
||||
```
|
||||
|
||||
**Subtitles** - `Subtitles` [`<slot/>`]
|
||||
|
||||
![Native HTML5 Subtitles (Firefox)](https://md.sudovanilla.org/images/subtitles-example-native-html5.png)
|
||||
|
||||
To apply subtitles to the video player, add a slot for tracks and insert HTML5 [`textTracks`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/textTracks). Make sure to set the `label` and `srclang`.
|
||||
|
||||
```jsx
|
||||
<Zorn Subtitles>
|
||||
<slot slot="subtitles">
|
||||
<track kind="subtitles" src="/subtitles/English.vtt" label="English" srclang="en" />
|
||||
<track kind="subtitles" src="/subtitles/Russian.vtt" label="Russian" srclang="ru" />
|
||||
</slot>
|
||||
</Zorn>
|
||||
```
|
||||
|
||||
When the `Subtitles` option is enabled, a subtitles button will appear automatically in the control on the right side and a menu will be generated for you.
|
||||
|
||||
**Milieu** - `Milieu`
|
||||
|
||||
The Milieu option is an attempt to copy YouTube's ambient player feature. Where it adds a blurry glow around the player. This uses two `<canvas/>`s behind the player to make a smooth transition when it changes.
|
||||
|
|
Loading…
Reference in a new issue