-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.js
32 lines (31 loc) · 878 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const config = {
defaultMedia: {
name: 'Tears of Steel (DASH Widevine)',
url: 'https://demo.unified-streaming.com/k8s/features/stable/video/tears-of-steel/tears-of-steel-dash-widevine.ism/.mpd',
},
defaultLicenseUrl: 'https://cwip-shaka-proxy.appspot.com/no_auth',
defaultDrm: 'widevine',
players: [
{
name: 'Shaka Player',
component: 'ShakaPlayer',
},
{
name: 'HasPlayer.js',
component: 'HasPlayer',
},
{
name: 'dash.js',
component: 'DashjsPlayer',
},
{
name: 'hls.js',
component: 'HlsjsPlayer',
},
],
defaultLicenseServers: {
'com.microsoft.playready': 'https://test.playready.microsoft.com/service/rightsmanager.asmx?PlayRight=1&UseSimpleNonPersistentLicense=1',
'com.widevine.alpha': 'https://cwip-shaka-proxy.appspot.com/no_auth',
},
};
export default config;