summaryrefslogtreecommitdiff
path: root/libretube-theme/static/js/play.js
blob: 6655e8a37742236d5740c844c5c4a56d32c820de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// @license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3-or-Later
const player = new Plyr('#player-ply', {
  captions: { active: true, language: 'es' },
  controls: [
    'play-large',
    'play',
    'progress',
    'current-time',
    'duration',
    'mute',
    'volume',
    'captions',
    'settings',
    'download',
    'fullscreen'
  ],
  iconUrl: "/theme/modules/plyr/plyr.svg",
  blankVideo: "/theme/modules/plyr/blank.webm",
  debug: false,
});
// @license-end