hjkjkh

var art = new Artplayer({ container: ‘.artplayer-app’, url: ‘https://rebamoney.shop/wp-content/uploads/2025/07/Inzira-Kirabo-Jane-.mp4’, poster: ‘/assets/sample/poster.jpg’, volume: 0.5, isLive: false, muted: false, autoplay: true, pip: true, autoSize: true, autoMini: true, screenshot: true, setting: true, loop: true, flip: true, playbackRate: true, aspectRatio: true, fullscreen: true, fullscreenWeb: true, subtitleOffset: true, miniProgressBar: true, mutex: true, backdrop: true, playsInline: true, autoPlayback: true, airplay: true, theme: ‘#23ade5’, lang: navigator.language.toLowerCase(), moreVideoAttr: { crossOrigin: ‘anonymous’, }, settings: [ { width: 200, html: ‘Subtitle’, tooltip: ‘Bilingual’, icon: ‘‘, selector: [ { html: ‘Display’, tooltip: ‘Show’, switch: true, onSwitch: function (item) { item.tooltip = item.switch ? ‘Hide’ : ‘Show’; art.subtitle.show = !item.switch; return !item.switch; }, }, { default: true, html: ‘Bilingual’, url: ‘/assets/sample/subtitle.srt’, }, { html: ‘Chinese’, url: ‘/assets/sample/subtitle.cn.srt’, }, { html: ‘Japanese’, url: ‘/assets/sample/subtitle.jp.srt’, }, ], onSelect: function (item) { art.subtitle.switch(item.url, { name: item.html, }); return item.html; }, }, { html: ‘Switcher’, icon: ‘‘, tooltip: ‘OFF’, switch: false, onSwitch: function (item) { item.tooltip = item.switch ? ‘OFF’ : ‘ON’; console.info(‘You clicked on the custom switch’, item.switch); return !item.switch; }, }, { html: ‘Slider’, icon: ‘‘, tooltip: ‘5x’, range: [5, 1, 10, 0.1], onRange: function (item) { return item.range[0] + ‘x’; }, }, { html: ‘Button’, icon: ‘‘, tooltip: ‘tooltip’, onClick() { return ‘Button clicked’; } }, ], contextmenu: [ { html: ‘Custom menu’, click: function (contextmenu) { console.info(‘You clicked on the custom menu’); contextmenu.show = false; }, }, ], layers: [ { html: ‘‘, click: function () { window.open(‘https://aimu.app’); console.info(‘You clicked on the custom layer’); }, style: { position: ‘absolute’, top: ’20px’, right: ’20px’, opacity: ‘.9’, }, }, ], quality: [ { default: true, html: ‘SD 480P’, url: ‘/assets/sample/video.mp4?q=480’, }, { html: ‘HD 720P’, url: ‘/assets/sample/video.mp4?q=720’, }, ], thumbnails: { url: ‘/assets/sample/thumbnails.png’, number: 60, column: 10, scale: 0.85, }, subtitle: { url: ‘/assets/sample/subtitle.srt’, type: ‘srt’, style: { color: ‘#fe9200′, fontSize: ’20px’, }, encoding: ‘utf-8’, }, highlight: [ { time: 15, text: ‘One more chance’, }, { time: 30, text: ‘谁でもいいはずなのに’, }, { time: 45, text: ‘夏の想い出がまわる’, }, { time: 60, text: ‘こんなとこにあるはずもないのに’, }, { time: 75, text: ‘终わり’, }, ], controls: [ { position: ‘right’, html: ‘Control’, index: 1, tooltip: ‘Control Tooltip’, style: { marginRight: ’20px’, }, click: function () { console.info(‘You clicked on the custom control’); }, }, ], icons: { loading: ‘‘, state: ‘‘, indicator: ‘‘, }, });

Leave a Reply

Your email address will not be published. Required fields are marked *