play.js 510 B

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