@playkit-js/media-melon 1.0.16-canary.0-27f926d → 1.0.16-canary.0-311ce1f
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +34 -33
- package/package.json +1 -1
package/README.md
CHANGED
@@ -17,39 +17,40 @@ and transpiled in ECMAScript5 using [Babel](https://babeljs.io/) and the [TypeSc
|
|
17
17
|
## Configuration
|
18
18
|
|
19
19
|
```js
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
20
|
+
{
|
21
|
+
"plugins": {
|
22
|
+
"mediaMelon": {
|
23
|
+
"customerId": "13145423100",
|
24
|
+
"domainName": "DOMAIN_NAME",
|
25
|
+
"subscriberTag": "SUBSCRIBER_TAG",
|
26
|
+
"subscriberId": "SUBSCRIBER_ID",
|
27
|
+
"subscriberType": "SUBSCRIBER_TYPE",
|
28
|
+
"playerName": "KalturaTestPlayer",
|
29
|
+
"playerVersion": "PLAYER_VERSION",
|
30
|
+
"playerBrand": "PLAYER_BRAND",
|
31
|
+
"playerModel": "PLAYER_MODEL",
|
32
|
+
"videoAssetInfo": {
|
33
|
+
"assetId": "2313000",
|
34
|
+
"assetName": "Mike, json validator is a friend",
|
35
|
+
"videoId": "VIDEO_ID",
|
36
|
+
"seriesTitle": "SERIES_TITLE",
|
37
|
+
"episodeNumber": "EPISODE_NUMBER",
|
38
|
+
"season": "SEASON",
|
39
|
+
"contentType": "CONTENT_TYPE",
|
40
|
+
"drmProtection": "DRM_PROTECTION",
|
41
|
+
"genre": "GENRE"
|
42
|
+
},
|
43
|
+
"appName": "APP_NAME",
|
44
|
+
"appVersion": "APP_VERSION",
|
45
|
+
"deviceMarketingName": "DEVICE_MARKETING_NAME",
|
46
|
+
"videoQuality": "VIDEO_QUALITY",
|
47
|
+
"deviceId": "DEVICE_ID",
|
48
|
+
"customTags": {
|
49
|
+
"KEY1": "VALUE1",
|
50
|
+
"KEY2": "VALUE2"
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
53
54
|
}
|
54
55
|
```
|
55
56
|
|