mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 11:18:46 +08:00
15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
import Player from '../../packages/xgplayer/src'
|
|
import DashPlugin from '../../packages/xgplayer-dash/src'
|
|
|
|
new Player({
|
|
id: 'mse',
|
|
url: 'https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd',
|
|
dashOpts: {
|
|
drm: {
|
|
}
|
|
},
|
|
height: window.innerHeight,
|
|
width: window.innerWidth,
|
|
plugins: [DashPlugin]
|
|
});
|