@eluvio/elv-client-js 4.0.114 → 4.0.115

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/dist/ElvClient-min.js +67 -0
  2. package/dist/ElvClient-node-min.js +66 -0
  3. package/dist/ElvFrameClient-min.js +60 -0
  4. package/dist/ElvPermissionsClient-min.js +60 -0
  5. package/dist/ElvWalletClient-min.js +67 -0
  6. package/dist/ElvWalletClient-node-min.js +66 -0
  7. package/dist/src/AuthorizationClient.js +2169 -0
  8. package/dist/src/ContentObjectAudit.js +175 -0
  9. package/dist/src/ContentObjectVerification.js +281 -0
  10. package/dist/src/Crypto.js +412 -0
  11. package/dist/src/ElvClient.js +2044 -0
  12. package/dist/src/ElvWallet.js +245 -0
  13. package/dist/src/EthClient.js +1154 -0
  14. package/dist/src/FrameClient.js +485 -0
  15. package/dist/src/HttpClient.js +315 -0
  16. package/dist/src/Id.js +21 -0
  17. package/dist/src/LogMessage.js +25 -0
  18. package/dist/src/PermissionsClient.js +1544 -0
  19. package/dist/src/RemoteSigner.js +385 -0
  20. package/dist/src/UserProfileClient.js +1450 -0
  21. package/dist/src/Utils.js +894 -0
  22. package/dist/src/Validation.js +121 -0
  23. package/dist/src/abr_profiles/abr_profile_live_drm.js +1661 -0
  24. package/dist/src/abr_profiles/abr_profile_live_to_vod.js +1606 -0
  25. package/dist/src/client/ABRPublishing.js +1018 -0
  26. package/dist/src/client/AccessGroups.js +1503 -0
  27. package/dist/src/client/ContentAccess.js +5195 -0
  28. package/dist/src/client/ContentManagement.js +2680 -0
  29. package/dist/src/client/Contracts.js +1520 -0
  30. package/dist/src/client/Files.js +2181 -0
  31. package/dist/src/client/LiveConf.js +569 -0
  32. package/dist/src/client/LiveStream.js +2640 -0
  33. package/dist/src/client/NFT.js +162 -0
  34. package/dist/src/client/NTP.js +581 -0
  35. package/dist/src/contracts/v2/AccessIndexor.js +831 -0
  36. package/dist/src/contracts/v2/Accessible.js +31 -0
  37. package/dist/src/contracts/v2/BaseAccessControlGroup.js +1263 -0
  38. package/dist/src/contracts/v2/BaseAccessWallet.js +1609 -0
  39. package/dist/src/contracts/v2/BaseAccessWalletFactory.js +93 -0
  40. package/dist/src/contracts/v2/BaseContent.js +1076 -0
  41. package/dist/src/contracts/v2/BaseContentFactory.js +219 -0
  42. package/dist/src/contracts/v2/BaseContentSpace.js +1352 -0
  43. package/dist/src/contracts/v2/BaseContentType.js +364 -0
  44. package/dist/src/contracts/v2/BaseFactory.js +107 -0
  45. package/dist/src/contracts/v2/BaseGroupFactory.js +93 -0
  46. package/dist/src/contracts/v2/BaseLibrary.js +1041 -0
  47. package/dist/src/contracts/v2/BaseLibraryFactory.js +96 -0
  48. package/dist/src/contracts/v2/Certifyer.js +86 -0
  49. package/dist/src/contracts/v2/Container.js +540 -0
  50. package/dist/src/contracts/v2/Content.js +443 -0
  51. package/dist/src/contracts/v2/Editable.js +306 -0
  52. package/dist/src/contracts/v2/ExternalUserWallet.js +379 -0
  53. package/dist/src/contracts/v2/IFactorySpace.js +57 -0
  54. package/dist/src/contracts/v2/IKmsSpace.js +52 -0
  55. package/dist/src/contracts/v2/INodeSpace.js +18 -0
  56. package/dist/src/contracts/v2/IUserSpace.js +18 -0
  57. package/dist/src/contracts/v2/LvRecordableStream.js +1037 -0
  58. package/dist/src/contracts/v2/LvRecording.js +627 -0
  59. package/dist/src/contracts/v2/LvStreamRightsHolder.js +562 -0
  60. package/dist/src/contracts/v2/MetaObject.js +119 -0
  61. package/dist/src/contracts/v2/Node.js +167 -0
  62. package/dist/src/contracts/v2/NodeSpace.js +273 -0
  63. package/dist/src/contracts/v2/Ownable.js +87 -0
  64. package/dist/src/contracts/v2/PaymentService.js +627 -0
  65. package/dist/src/contracts/v2/Precompile.js +15 -0
  66. package/dist/src/contracts/v2/Transactable.js +82 -0
  67. package/dist/src/contracts/v2/UserSpace.js +29 -0
  68. package/dist/src/contracts/v2/Utils.js +18 -0
  69. package/dist/src/contracts/v2/Verifier.js +53 -0
  70. package/dist/src/contracts/v2/strings.js +4 -0
  71. package/dist/src/contracts/v3/AccessIndexor.js +774 -0
  72. package/dist/src/contracts/v3/Accessible.js +232 -0
  73. package/dist/src/contracts/v3/Adminable.js +107 -0
  74. package/dist/src/contracts/v3/AvailsDelivery.js +586 -0
  75. package/dist/src/contracts/v3/BaseAccessControlGroup.js +1603 -0
  76. package/dist/src/contracts/v3/BaseAccessWallet.js +1628 -0
  77. package/dist/src/contracts/v3/BaseAccessWalletFactory.js +112 -0
  78. package/dist/src/contracts/v3/BaseContent.js +1312 -0
  79. package/dist/src/contracts/v3/BaseContentFactory.js +183 -0
  80. package/dist/src/contracts/v3/BaseContentFactoryExt.js +175 -0
  81. package/dist/src/contracts/v3/BaseContentSpace.js +1515 -0
  82. package/dist/src/contracts/v3/BaseContentType.js +527 -0
  83. package/dist/src/contracts/v3/BaseFactory.js +126 -0
  84. package/dist/src/contracts/v3/BaseGroupFactory.js +112 -0
  85. package/dist/src/contracts/v3/BaseLibrary.js +1204 -0
  86. package/dist/src/contracts/v3/BaseLibraryFactory.js +115 -0
  87. package/dist/src/contracts/v3/BaseTenantSpace.js +1587 -0
  88. package/dist/src/contracts/v3/Certifyer.js +86 -0
  89. package/dist/src/contracts/v3/Container.js +739 -0
  90. package/dist/src/contracts/v3/Content.js +438 -0
  91. package/dist/src/contracts/v3/CounterObject.js +243 -0
  92. package/dist/src/contracts/v3/Editable.js +519 -0
  93. package/dist/src/contracts/v3/EncToken.js +4 -0
  94. package/dist/src/contracts/v3/ExternalUserWallet.js +587 -0
  95. package/dist/src/contracts/v3/IAdmin.js +18 -0
  96. package/dist/src/contracts/v3/IFactorySpace.js +57 -0
  97. package/dist/src/contracts/v3/IKmsSpace.js +52 -0
  98. package/dist/src/contracts/v3/INodeSpace.js +18 -0
  99. package/dist/src/contracts/v3/IUserSpace.js +32 -0
  100. package/dist/src/contracts/v3/LvRecordableStream.js +1032 -0
  101. package/dist/src/contracts/v3/LvRecording.js +650 -0
  102. package/dist/src/contracts/v3/LvStreamRightsHolder.js +557 -0
  103. package/dist/src/contracts/v3/MetaObject.js +144 -0
  104. package/dist/src/contracts/v3/Node.js +178 -0
  105. package/dist/src/contracts/v3/NodeSpace.js +284 -0
  106. package/dist/src/contracts/v3/Ownable.js +98 -0
  107. package/dist/src/contracts/v3/PaymentService.js +622 -0
  108. package/dist/src/contracts/v3/Precompile.js +26 -0
  109. package/dist/src/contracts/v3/TenantFuncsBase.js +351 -0
  110. package/dist/src/contracts/v3/Transactable.js +82 -0
  111. package/dist/src/contracts/v3/UserSpace.js +43 -0
  112. package/dist/src/contracts/v3/Utils.js +18 -0
  113. package/dist/src/contracts/v3/Verifier.js +53 -0
  114. package/dist/src/contracts/v3/strings.js +4 -0
  115. package/dist/src/contracts/v3b/BaseAccessControlGroup.js +1704 -0
  116. package/dist/src/events/Topics.js +1793 -0
  117. package/dist/src/index.js +8 -0
  118. package/dist/src/walletClient/ClientMethods.js +3102 -0
  119. package/dist/src/walletClient/Configuration.js +38 -0
  120. package/dist/src/walletClient/Notifications.js +168 -0
  121. package/dist/src/walletClient/Profile.js +332 -0
  122. package/dist/src/walletClient/Utils.js +281 -0
  123. package/dist/src/walletClient/index.js +2106 -0
  124. package/package.json +1 -1
  125. package/src/AuthorizationClient.js +24 -16
  126. package/src/ElvClient.js +19 -0
  127. package/src/client/ContentAccess.js +10 -1
  128. package/src/client/LiveConf.js +10 -8
  129. package/src/client/LiveStream.js +6 -4
@@ -0,0 +1,1606 @@
1
+ var AbrProfileLiveVod = {
2
+ "drm_optional": true,
3
+ "store_clear": true,
4
+ "ladder_specs": {
5
+ "{\"media_type\":\"audio\",\"channels\":1}": {
6
+ "rung_specs": [{
7
+ "bit_rate": 128000,
8
+ "media_type": "audio",
9
+ "pregenerate": true
10
+ }]
11
+ },
12
+ "{\"media_type\":\"audio\",\"channels\":2}": {
13
+ "rung_specs": [{
14
+ "bit_rate": 128000,
15
+ "media_type": "audio",
16
+ "pregenerate": true
17
+ }]
18
+ },
19
+ "{\"media_type\":\"audio\",\"channels\":6}": {
20
+ "rung_specs": [{
21
+ "bit_rate": 384000,
22
+ "media_type": "audio",
23
+ "pregenerate": true
24
+ }]
25
+ },
26
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":273,\"aspect_ratio_width\":640}": {
27
+ "rung_specs": [{
28
+ "bit_rate": 9500000,
29
+ "height": 1080,
30
+ "media_type": "video",
31
+ "pregenerate": true,
32
+ "width": 2538
33
+ }, {
34
+ "bit_rate": 6000000,
35
+ "height": 720,
36
+ "media_type": "video",
37
+ "pregenerate": false,
38
+ "width": 1692
39
+ }, {
40
+ "bit_rate": 2640000,
41
+ "height": 540,
42
+ "media_type": "video",
43
+ "pregenerate": false,
44
+ "width": 1270
45
+ }, {
46
+ "bit_rate": 1450000,
47
+ "height": 432,
48
+ "media_type": "video",
49
+ "pregenerate": false,
50
+ "width": 1016
51
+ }, {
52
+ "bit_rate": 1070000,
53
+ "height": 360,
54
+ "media_type": "video",
55
+ "pregenerate": false,
56
+ "width": 846
57
+ }, {
58
+ "bit_rate": 690000,
59
+ "height": 360,
60
+ "media_type": "video",
61
+ "pregenerate": false,
62
+ "width": 846
63
+ }]
64
+ },
65
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":267,\"aspect_ratio_width\":640}": {
66
+ "rung_specs": [{
67
+ "bit_rate": 9500000,
68
+ "height": 1080,
69
+ "media_type": "video",
70
+ "pregenerate": true,
71
+ "width": 2538
72
+ }, {
73
+ "bit_rate": 6000000,
74
+ "height": 720,
75
+ "media_type": "video",
76
+ "pregenerate": false,
77
+ "width": 1692
78
+ }, {
79
+ "bit_rate": 2640000,
80
+ "height": 540,
81
+ "media_type": "video",
82
+ "pregenerate": false,
83
+ "width": 1270
84
+ }, {
85
+ "bit_rate": 1450000,
86
+ "height": 432,
87
+ "media_type": "video",
88
+ "pregenerate": false,
89
+ "width": 1016
90
+ }, {
91
+ "bit_rate": 1070000,
92
+ "height": 360,
93
+ "media_type": "video",
94
+ "pregenerate": false,
95
+ "width": 846
96
+ }, {
97
+ "bit_rate": 690000,
98
+ "height": 360,
99
+ "media_type": "video",
100
+ "pregenerate": false,
101
+ "width": 846
102
+ }]
103
+ },
104
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":729,\"aspect_ratio_width\":1280}": {
105
+ "rung_specs": [{
106
+ "bit_rate": 9500000,
107
+ "height": 1080,
108
+ "media_type": "video",
109
+ "pregenerate": true,
110
+ "width": 1920
111
+ }, {
112
+ "bit_rate": 4500000,
113
+ "height": 720,
114
+ "media_type": "video",
115
+ "pregenerate": false,
116
+ "width": 1280
117
+ }, {
118
+ "bit_rate": 2000000,
119
+ "height": 540,
120
+ "media_type": "video",
121
+ "pregenerate": false,
122
+ "width": 960
123
+ }, {
124
+ "bit_rate": 1100000,
125
+ "height": 432,
126
+ "media_type": "video",
127
+ "pregenerate": false,
128
+ "width": 768
129
+ }, {
130
+ "bit_rate": 810000,
131
+ "height": 360,
132
+ "media_type": "video",
133
+ "pregenerate": false,
134
+ "width": 640
135
+ }, {
136
+ "bit_rate": 520000,
137
+ "height": 360,
138
+ "media_type": "video",
139
+ "pregenerate": false,
140
+ "width": 640
141
+ }]
142
+ },
143
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":1,\"aspect_ratio_width\":2}": {
144
+ "rung_specs": [{
145
+ "bit_rate": 9500000,
146
+ "height": 1080,
147
+ "media_type": "video",
148
+ "pregenerate": true,
149
+ "width": 2160
150
+ }, {
151
+ "bit_rate": 5000000,
152
+ "height": 720,
153
+ "media_type": "video",
154
+ "pregenerate": false,
155
+ "width": 1440
156
+ }, {
157
+ "bit_rate": 2250000,
158
+ "height": 540,
159
+ "media_type": "video",
160
+ "pregenerate": false,
161
+ "width": 1080
162
+ }, {
163
+ "bit_rate": 1200000,
164
+ "height": 432,
165
+ "media_type": "video",
166
+ "pregenerate": false,
167
+ "width": 864
168
+ }, {
169
+ "bit_rate": 910000,
170
+ "height": 360,
171
+ "media_type": "video",
172
+ "pregenerate": false,
173
+ "width": 720
174
+ }, {
175
+ "bit_rate": 580000,
176
+ "height": 360,
177
+ "media_type": "video",
178
+ "pregenerate": false,
179
+ "width": 720
180
+ }]
181
+ },
182
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":67,\"aspect_ratio_width\":120}": {
183
+ "rung_specs": [{
184
+ "bit_rate": 9500000,
185
+ "height": 1080,
186
+ "media_type": "video",
187
+ "pregenerate": true,
188
+ "width": 1920
189
+ }, {
190
+ "bit_rate": 4500000,
191
+ "height": 720,
192
+ "media_type": "video",
193
+ "pregenerate": false,
194
+ "width": 1280
195
+ }, {
196
+ "bit_rate": 2000000,
197
+ "height": 540,
198
+ "media_type": "video",
199
+ "pregenerate": false,
200
+ "width": 960
201
+ }, {
202
+ "bit_rate": 1100000,
203
+ "height": 432,
204
+ "media_type": "video",
205
+ "pregenerate": false,
206
+ "width": 768
207
+ }, {
208
+ "bit_rate": 810000,
209
+ "height": 360,
210
+ "media_type": "video",
211
+ "pregenerate": false,
212
+ "width": 640
213
+ }, {
214
+ "bit_rate": 520000,
215
+ "height": 360,
216
+ "media_type": "video",
217
+ "pregenerate": false,
218
+ "width": 640
219
+ }]
220
+ },
221
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":539,\"aspect_ratio_width\":960}": {
222
+ "rung_specs": [{
223
+ "bit_rate": 9500000,
224
+ "height": 1080,
225
+ "media_type": "video",
226
+ "pregenerate": true,
227
+ "width": 1920
228
+ }, {
229
+ "bit_rate": 4500000,
230
+ "height": 720,
231
+ "media_type": "video",
232
+ "pregenerate": false,
233
+ "width": 1280
234
+ }, {
235
+ "bit_rate": 2000000,
236
+ "height": 540,
237
+ "media_type": "video",
238
+ "pregenerate": false,
239
+ "width": 960
240
+ }, {
241
+ "bit_rate": 1100000,
242
+ "height": 432,
243
+ "media_type": "video",
244
+ "pregenerate": false,
245
+ "width": 768
246
+ }, {
247
+ "bit_rate": 810000,
248
+ "height": 360,
249
+ "media_type": "video",
250
+ "pregenerate": false,
251
+ "width": 640
252
+ }, {
253
+ "bit_rate": 520000,
254
+ "height": 360,
255
+ "media_type": "video",
256
+ "pregenerate": false,
257
+ "width": 640
258
+ }]
259
+ },
260
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":11,\"aspect_ratio_width\":15}": {
261
+ "rung_specs": [{
262
+ "bit_rate": 4900000,
263
+ "height": 1080,
264
+ "media_type": "video",
265
+ "pregenerate": true,
266
+ "width": 1452
267
+ }, {
268
+ "bit_rate": 3375000,
269
+ "height": 720,
270
+ "media_type": "video",
271
+ "pregenerate": false,
272
+ "width": 968
273
+ }, {
274
+ "bit_rate": 1500000,
275
+ "height": 540,
276
+ "media_type": "video",
277
+ "pregenerate": false,
278
+ "width": 726
279
+ }, {
280
+ "bit_rate": 825000,
281
+ "height": 432,
282
+ "media_type": "video",
283
+ "pregenerate": false,
284
+ "width": 580
285
+ }, {
286
+ "bit_rate": 610000,
287
+ "height": 360,
288
+ "media_type": "video",
289
+ "pregenerate": false,
290
+ "width": 484
291
+ }, {
292
+ "bit_rate": 390000,
293
+ "height": 360,
294
+ "media_type": "video",
295
+ "pregenerate": false,
296
+ "width": 484
297
+ }]
298
+ },
299
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":11,\"aspect_ratio_width\":20}": {
300
+ "rung_specs": [{
301
+ "bit_rate": 9500000,
302
+ "height": 1080,
303
+ "media_type": "video",
304
+ "pregenerate": true,
305
+ "width": 1920
306
+ }, {
307
+ "bit_rate": 4500000,
308
+ "height": 720,
309
+ "media_type": "video",
310
+ "pregenerate": false,
311
+ "width": 1280
312
+ }, {
313
+ "bit_rate": 2000000,
314
+ "height": 540,
315
+ "media_type": "video",
316
+ "pregenerate": false,
317
+ "width": 960
318
+ }, {
319
+ "bit_rate": 1100000,
320
+ "height": 432,
321
+ "media_type": "video",
322
+ "pregenerate": false,
323
+ "width": 768
324
+ }, {
325
+ "bit_rate": 810000,
326
+ "height": 360,
327
+ "media_type": "video",
328
+ "pregenerate": false,
329
+ "width": 640
330
+ }, {
331
+ "bit_rate": 520000,
332
+ "height": 360,
333
+ "media_type": "video",
334
+ "pregenerate": false,
335
+ "width": 640
336
+ }]
337
+ },
338
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":12296,\"aspect_ratio_width\":21851}": {
339
+ "rung_specs": [{
340
+ "bit_rate": 9500000,
341
+ "height": 1080,
342
+ "media_type": "video",
343
+ "pregenerate": true,
344
+ "width": 1920
345
+ }, {
346
+ "bit_rate": 4500000,
347
+ "height": 720,
348
+ "media_type": "video",
349
+ "pregenerate": false,
350
+ "width": 1280
351
+ }, {
352
+ "bit_rate": 2000000,
353
+ "height": 540,
354
+ "media_type": "video",
355
+ "pregenerate": false,
356
+ "width": 960
357
+ }, {
358
+ "bit_rate": 1100000,
359
+ "height": 432,
360
+ "media_type": "video",
361
+ "pregenerate": false,
362
+ "width": 768
363
+ }, {
364
+ "bit_rate": 810000,
365
+ "height": 360,
366
+ "media_type": "video",
367
+ "pregenerate": false,
368
+ "width": 640
369
+ }, {
370
+ "bit_rate": 520000,
371
+ "height": 360,
372
+ "media_type": "video",
373
+ "pregenerate": false,
374
+ "width": 640
375
+ }]
376
+ },
377
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":131072,\"aspect_ratio_width\":192165}": {
378
+ "rung_specs": [{
379
+ "bit_rate": 5500000,
380
+ "height": 1080,
381
+ "media_type": "video",
382
+ "pregenerate": true,
383
+ "width": 1620
384
+ }, {
385
+ "bit_rate": 2400000,
386
+ "height": 720,
387
+ "media_type": "video",
388
+ "pregenerate": false,
389
+ "width": 1080
390
+ }, {
391
+ "bit_rate": 1400000,
392
+ "height": 540,
393
+ "media_type": "video",
394
+ "pregenerate": false,
395
+ "width": 810
396
+ }, {
397
+ "bit_rate": 900000,
398
+ "height": 432,
399
+ "media_type": "video",
400
+ "pregenerate": false,
401
+ "width": 648
402
+ }, {
403
+ "bit_rate": 680000,
404
+ "height": 360,
405
+ "media_type": "video",
406
+ "pregenerate": false,
407
+ "width": 540
408
+ }, {
409
+ "bit_rate": 440000,
410
+ "height": 360,
411
+ "media_type": "video",
412
+ "pregenerate": false,
413
+ "width": 540
414
+ }]
415
+ },
416
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":135,\"aspect_ratio_width\":176}": {
417
+ "rung_specs": [{
418
+ "bit_rate": 4900000,
419
+ "height": 1080,
420
+ "media_type": "video",
421
+ "pregenerate": true,
422
+ "width": 1452
423
+ }, {
424
+ "bit_rate": 3375000,
425
+ "height": 720,
426
+ "media_type": "video",
427
+ "pregenerate": false,
428
+ "width": 968
429
+ }, {
430
+ "bit_rate": 1500000,
431
+ "height": 540,
432
+ "media_type": "video",
433
+ "pregenerate": false,
434
+ "width": 726
435
+ }, {
436
+ "bit_rate": 825000,
437
+ "height": 432,
438
+ "media_type": "video",
439
+ "pregenerate": false,
440
+ "width": 580
441
+ }, {
442
+ "bit_rate": 610000,
443
+ "height": 360,
444
+ "media_type": "video",
445
+ "pregenerate": false,
446
+ "width": 484
447
+ }, {
448
+ "bit_rate": 390000,
449
+ "height": 360,
450
+ "media_type": "video",
451
+ "pregenerate": false,
452
+ "width": 484
453
+ }]
454
+ },
455
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":135,\"aspect_ratio_width\":316}": {
456
+ "rung_specs": [{
457
+ "bit_rate": 9500000,
458
+ "height": 1080,
459
+ "media_type": "video",
460
+ "pregenerate": true,
461
+ "width": 2528
462
+ }, {
463
+ "bit_rate": 6000000,
464
+ "height": 720,
465
+ "media_type": "video",
466
+ "pregenerate": false,
467
+ "width": 1692
468
+ }, {
469
+ "bit_rate": 2640000,
470
+ "height": 540,
471
+ "media_type": "video",
472
+ "pregenerate": false,
473
+ "width": 1270
474
+ }, {
475
+ "bit_rate": 1450000,
476
+ "height": 432,
477
+ "media_type": "video",
478
+ "pregenerate": false,
479
+ "width": 1016
480
+ }, {
481
+ "bit_rate": 1070000,
482
+ "height": 360,
483
+ "media_type": "video",
484
+ "pregenerate": false,
485
+ "width": 846
486
+ }, {
487
+ "bit_rate": 690000,
488
+ "height": 360,
489
+ "media_type": "video",
490
+ "pregenerate": false,
491
+ "width": 846
492
+ }]
493
+ },
494
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":135,\"aspect_ratio_width\":76}": {
495
+ "rung_specs": [{
496
+ "bit_rate": 9500000,
497
+ "height": 1920,
498
+ "media_type": "video",
499
+ "pregenerate": true,
500
+ "width": 1080
501
+ }, {
502
+ "bit_rate": 4500000,
503
+ "height": 1280,
504
+ "media_type": "video",
505
+ "pregenerate": false,
506
+ "width": 720
507
+ }, {
508
+ "bit_rate": 2000000,
509
+ "height": 960,
510
+ "media_type": "video",
511
+ "pregenerate": false,
512
+ "width": 540
513
+ }, {
514
+ "bit_rate": 1100000,
515
+ "height": 768,
516
+ "media_type": "video",
517
+ "pregenerate": false,
518
+ "width": 432
519
+ }, {
520
+ "bit_rate": 810000,
521
+ "height": 360,
522
+ "media_type": "video",
523
+ "pregenerate": false,
524
+ "width": 640
525
+ }, {
526
+ "bit_rate": 520000,
527
+ "height": 360,
528
+ "media_type": "video",
529
+ "pregenerate": false,
530
+ "width": 640
531
+ }]
532
+ },
533
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":16,\"aspect_ratio_width\":9}": {
534
+ "rung_specs": [{
535
+ "bit_rate": 9500000,
536
+ "height": 1920,
537
+ "media_type": "video",
538
+ "pregenerate": true,
539
+ "width": 1080
540
+ }, {
541
+ "bit_rate": 4500000,
542
+ "height": 1280,
543
+ "media_type": "video",
544
+ "pregenerate": false,
545
+ "width": 720
546
+ }, {
547
+ "bit_rate": 2000000,
548
+ "height": 960,
549
+ "media_type": "video",
550
+ "pregenerate": false,
551
+ "width": 540
552
+ }, {
553
+ "bit_rate": 1100000,
554
+ "height": 768,
555
+ "media_type": "video",
556
+ "pregenerate": false,
557
+ "width": 432
558
+ }, {
559
+ "bit_rate": 810000,
560
+ "height": 360,
561
+ "media_type": "video",
562
+ "pregenerate": false,
563
+ "width": 640
564
+ }, {
565
+ "bit_rate": 520000,
566
+ "height": 360,
567
+ "media_type": "video",
568
+ "pregenerate": false,
569
+ "width": 640
570
+ }]
571
+ },
572
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":17,\"aspect_ratio_width\":40}": {
573
+ "rung_specs": [{
574
+ "bit_rate": 9500000,
575
+ "height": 1080,
576
+ "media_type": "video",
577
+ "pregenerate": true,
578
+ "width": 2538
579
+ }, {
580
+ "bit_rate": 6000000,
581
+ "height": 720,
582
+ "media_type": "video",
583
+ "pregenerate": false,
584
+ "width": 1692
585
+ }, {
586
+ "bit_rate": 2640000,
587
+ "height": 540,
588
+ "media_type": "video",
589
+ "pregenerate": false,
590
+ "width": 1270
591
+ }, {
592
+ "bit_rate": 1450000,
593
+ "height": 432,
594
+ "media_type": "video",
595
+ "pregenerate": false,
596
+ "width": 1016
597
+ }, {
598
+ "bit_rate": 1070000,
599
+ "height": 360,
600
+ "media_type": "video",
601
+ "pregenerate": false,
602
+ "width": 846
603
+ }, {
604
+ "bit_rate": 690000,
605
+ "height": 360,
606
+ "media_type": "video",
607
+ "pregenerate": false,
608
+ "width": 846
609
+ }]
610
+ },
611
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":173,\"aspect_ratio_width\":320}": {
612
+ "rung_specs": [{
613
+ "bit_rate": 9500000,
614
+ "height": 1036,
615
+ "media_type": "video",
616
+ "pregenerate": true,
617
+ "width": 1920
618
+ }, {
619
+ "bit_rate": 4700000,
620
+ "height": 720,
621
+ "media_type": "video",
622
+ "pregenerate": false,
623
+ "width": 1334
624
+ }, {
625
+ "bit_rate": 2080000,
626
+ "height": 540,
627
+ "media_type": "video",
628
+ "pregenerate": false,
629
+ "width": 1000
630
+ }, {
631
+ "bit_rate": 1145000,
632
+ "height": 432,
633
+ "media_type": "video",
634
+ "pregenerate": false,
635
+ "width": 800
636
+ }, {
637
+ "bit_rate": 843000,
638
+ "height": 360,
639
+ "media_type": "video",
640
+ "pregenerate": false,
641
+ "width": 666
642
+ }, {
643
+ "bit_rate": 541000,
644
+ "height": 360,
645
+ "media_type": "video",
646
+ "pregenerate": false,
647
+ "width": 666
648
+ }]
649
+ },
650
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":2,\"aspect_ratio_width\":3}": {
651
+ "rung_specs": [{
652
+ "bit_rate": 5500000,
653
+ "height": 1080,
654
+ "media_type": "video",
655
+ "pregenerate": true,
656
+ "width": 1620
657
+ }, {
658
+ "bit_rate": 2400000,
659
+ "height": 720,
660
+ "media_type": "video",
661
+ "pregenerate": false,
662
+ "width": 1080
663
+ }, {
664
+ "bit_rate": 1400000,
665
+ "height": 540,
666
+ "media_type": "video",
667
+ "pregenerate": false,
668
+ "width": 810
669
+ }, {
670
+ "bit_rate": 900000,
671
+ "height": 432,
672
+ "media_type": "video",
673
+ "pregenerate": false,
674
+ "width": 648
675
+ }, {
676
+ "bit_rate": 680000,
677
+ "height": 360,
678
+ "media_type": "video",
679
+ "pregenerate": false,
680
+ "width": 540
681
+ }, {
682
+ "bit_rate": 440000,
683
+ "height": 360,
684
+ "media_type": "video",
685
+ "pregenerate": false,
686
+ "width": 540
687
+ }]
688
+ },
689
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":20,\"aspect_ratio_width\":27}": {
690
+ "rung_specs": [{
691
+ "bit_rate": 4900000,
692
+ "height": 1080,
693
+ "media_type": "video",
694
+ "pregenerate": true,
695
+ "width": 1452
696
+ }, {
697
+ "bit_rate": 3375000,
698
+ "height": 720,
699
+ "media_type": "video",
700
+ "pregenerate": false,
701
+ "width": 968
702
+ }, {
703
+ "bit_rate": 1500000,
704
+ "height": 540,
705
+ "media_type": "video",
706
+ "pregenerate": false,
707
+ "width": 726
708
+ }, {
709
+ "bit_rate": 825000,
710
+ "height": 432,
711
+ "media_type": "video",
712
+ "pregenerate": false,
713
+ "width": 580
714
+ }, {
715
+ "bit_rate": 610000,
716
+ "height": 360,
717
+ "media_type": "video",
718
+ "pregenerate": false,
719
+ "width": 484
720
+ }, {
721
+ "bit_rate": 390000,
722
+ "height": 360,
723
+ "media_type": "video",
724
+ "pregenerate": false,
725
+ "width": 484
726
+ }]
727
+ },
728
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":240,\"aspect_ratio_width\":427}": {
729
+ "rung_specs": [{
730
+ "bit_rate": 9500000,
731
+ "height": 1080,
732
+ "media_type": "video",
733
+ "pregenerate": true,
734
+ "width": 1920
735
+ }, {
736
+ "bit_rate": 4500000,
737
+ "height": 720,
738
+ "media_type": "video",
739
+ "pregenerate": false,
740
+ "width": 1280
741
+ }, {
742
+ "bit_rate": 2000000,
743
+ "height": 540,
744
+ "media_type": "video",
745
+ "pregenerate": false,
746
+ "width": 960
747
+ }, {
748
+ "bit_rate": 1100000,
749
+ "height": 432,
750
+ "media_type": "video",
751
+ "pregenerate": false,
752
+ "width": 768
753
+ }, {
754
+ "bit_rate": 810000,
755
+ "height": 360,
756
+ "media_type": "video",
757
+ "pregenerate": false,
758
+ "width": 640
759
+ }, {
760
+ "bit_rate": 520000,
761
+ "height": 360,
762
+ "media_type": "video",
763
+ "pregenerate": false,
764
+ "width": 640
765
+ }]
766
+ },
767
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":243,\"aspect_ratio_width\":320}": {
768
+ "rung_specs": [{
769
+ "bit_rate": 4900000,
770
+ "height": 1080,
771
+ "media_type": "video",
772
+ "pregenerate": true,
773
+ "width": 1452
774
+ }, {
775
+ "bit_rate": 3375000,
776
+ "height": 720,
777
+ "media_type": "video",
778
+ "pregenerate": false,
779
+ "width": 968
780
+ }, {
781
+ "bit_rate": 1500000,
782
+ "height": 540,
783
+ "media_type": "video",
784
+ "pregenerate": false,
785
+ "width": 726
786
+ }, {
787
+ "bit_rate": 825000,
788
+ "height": 432,
789
+ "media_type": "video",
790
+ "pregenerate": false,
791
+ "width": 580
792
+ }, {
793
+ "bit_rate": 610000,
794
+ "height": 360,
795
+ "media_type": "video",
796
+ "pregenerate": false,
797
+ "width": 484
798
+ }, {
799
+ "bit_rate": 390000,
800
+ "height": 360,
801
+ "media_type": "video",
802
+ "pregenerate": false,
803
+ "width": 484
804
+ }]
805
+ },
806
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":259,\"aspect_ratio_width\":480}": {
807
+ "rung_specs": [{
808
+ "bit_rate": 9500000,
809
+ "height": 1036,
810
+ "media_type": "video",
811
+ "pregenerate": true,
812
+ "width": 1920
813
+ }, {
814
+ "bit_rate": 4700000,
815
+ "height": 720,
816
+ "media_type": "video",
817
+ "pregenerate": false,
818
+ "width": 1334
819
+ }, {
820
+ "bit_rate": 2080000,
821
+ "height": 540,
822
+ "media_type": "video",
823
+ "pregenerate": false,
824
+ "width": 1000
825
+ }, {
826
+ "bit_rate": 1145000,
827
+ "height": 432,
828
+ "media_type": "video",
829
+ "pregenerate": false,
830
+ "width": 800
831
+ }, {
832
+ "bit_rate": 843000,
833
+ "height": 360,
834
+ "media_type": "video",
835
+ "pregenerate": false,
836
+ "width": 666
837
+ }, {
838
+ "bit_rate": 541000,
839
+ "height": 360,
840
+ "media_type": "video",
841
+ "pregenerate": false,
842
+ "width": 666
843
+ }]
844
+ },
845
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":262144,\"aspect_ratio_width\":319905}": {
846
+ "rung_specs": [{
847
+ "bit_rate": 4900000,
848
+ "height": 1080,
849
+ "media_type": "video",
850
+ "pregenerate": true,
851
+ "width": 1280
852
+ }, {
853
+ "bit_rate": 3375000,
854
+ "height": 720,
855
+ "media_type": "video",
856
+ "pregenerate": false,
857
+ "width": 853
858
+ }, {
859
+ "bit_rate": 1500000,
860
+ "height": 540,
861
+ "media_type": "video",
862
+ "pregenerate": false,
863
+ "width": 640
864
+ }, {
865
+ "bit_rate": 825000,
866
+ "height": 432,
867
+ "media_type": "video",
868
+ "pregenerate": false,
869
+ "width": 512
870
+ }, {
871
+ "bit_rate": 540000,
872
+ "height": 360,
873
+ "media_type": "video",
874
+ "pregenerate": false,
875
+ "width": 426
876
+ }, {
877
+ "bit_rate": 350000,
878
+ "height": 360,
879
+ "media_type": "video",
880
+ "pregenerate": false,
881
+ "width": 426
882
+ }]
883
+ },
884
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":27,\"aspect_ratio_width\":32}": {
885
+ "rung_specs": [{
886
+ "bit_rate": 4900000,
887
+ "height": 1080,
888
+ "media_type": "video",
889
+ "pregenerate": true,
890
+ "width": 1280
891
+ }, {
892
+ "bit_rate": 3375000,
893
+ "height": 720,
894
+ "media_type": "video",
895
+ "pregenerate": false,
896
+ "width": 853
897
+ }, {
898
+ "bit_rate": 1500000,
899
+ "height": 540,
900
+ "media_type": "video",
901
+ "pregenerate": false,
902
+ "width": 640
903
+ }, {
904
+ "bit_rate": 825000,
905
+ "height": 432,
906
+ "media_type": "video",
907
+ "pregenerate": false,
908
+ "width": 512
909
+ }, {
910
+ "bit_rate": 540000,
911
+ "height": 360,
912
+ "media_type": "video",
913
+ "pregenerate": false,
914
+ "width": 426
915
+ }, {
916
+ "bit_rate": 350000,
917
+ "height": 360,
918
+ "media_type": "video",
919
+ "pregenerate": false,
920
+ "width": 426
921
+ }]
922
+ },
923
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":27,\"aspect_ratio_width\":40}": {
924
+ "rung_specs": [{
925
+ "bit_rate": 5500000,
926
+ "height": 1080,
927
+ "media_type": "video",
928
+ "pregenerate": true,
929
+ "width": 1620
930
+ }, {
931
+ "bit_rate": 2400000,
932
+ "height": 720,
933
+ "media_type": "video",
934
+ "pregenerate": false,
935
+ "width": 1080
936
+ }, {
937
+ "bit_rate": 1400000,
938
+ "height": 540,
939
+ "media_type": "video",
940
+ "pregenerate": false,
941
+ "width": 810
942
+ }, {
943
+ "bit_rate": 900000,
944
+ "height": 432,
945
+ "media_type": "video",
946
+ "pregenerate": false,
947
+ "width": 648
948
+ }, {
949
+ "bit_rate": 680000,
950
+ "height": 360,
951
+ "media_type": "video",
952
+ "pregenerate": false,
953
+ "width": 540
954
+ }, {
955
+ "bit_rate": 440000,
956
+ "height": 360,
957
+ "media_type": "video",
958
+ "pregenerate": false,
959
+ "width": 540
960
+ }]
961
+ },
962
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":297,\"aspect_ratio_width\":400}": {
963
+ "rung_specs": [{
964
+ "bit_rate": 4900000,
965
+ "height": 1080,
966
+ "media_type": "video",
967
+ "pregenerate": true,
968
+ "width": 1452
969
+ }, {
970
+ "bit_rate": 3375000,
971
+ "height": 720,
972
+ "media_type": "video",
973
+ "pregenerate": false,
974
+ "width": 968
975
+ }, {
976
+ "bit_rate": 1500000,
977
+ "height": 540,
978
+ "media_type": "video",
979
+ "pregenerate": false,
980
+ "width": 726
981
+ }, {
982
+ "bit_rate": 825000,
983
+ "height": 432,
984
+ "media_type": "video",
985
+ "pregenerate": false,
986
+ "width": 580
987
+ }, {
988
+ "bit_rate": 610000,
989
+ "height": 360,
990
+ "media_type": "video",
991
+ "pregenerate": false,
992
+ "width": 484
993
+ }, {
994
+ "bit_rate": 390000,
995
+ "height": 360,
996
+ "media_type": "video",
997
+ "pregenerate": false,
998
+ "width": 484
999
+ }]
1000
+ },
1001
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":3,\"aspect_ratio_width\":4}": {
1002
+ "rung_specs": [{
1003
+ "bit_rate": 4900000,
1004
+ "height": 1080,
1005
+ "media_type": "video",
1006
+ "pregenerate": true,
1007
+ "width": 1452
1008
+ }, {
1009
+ "bit_rate": 3375000,
1010
+ "height": 720,
1011
+ "media_type": "video",
1012
+ "pregenerate": false,
1013
+ "width": 968
1014
+ }, {
1015
+ "bit_rate": 1500000,
1016
+ "height": 540,
1017
+ "media_type": "video",
1018
+ "pregenerate": false,
1019
+ "width": 726
1020
+ }, {
1021
+ "bit_rate": 825000,
1022
+ "height": 432,
1023
+ "media_type": "video",
1024
+ "pregenerate": false,
1025
+ "width": 580
1026
+ }, {
1027
+ "bit_rate": 610000,
1028
+ "height": 360,
1029
+ "media_type": "video",
1030
+ "pregenerate": false,
1031
+ "width": 484
1032
+ }, {
1033
+ "bit_rate": 390000,
1034
+ "height": 360,
1035
+ "media_type": "video",
1036
+ "pregenerate": false,
1037
+ "width": 484
1038
+ }]
1039
+ },
1040
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":30,\"aspect_ratio_width\":53}": {
1041
+ "rung_specs": [{
1042
+ "bit_rate": 9500000,
1043
+ "height": 1080,
1044
+ "media_type": "video",
1045
+ "pregenerate": true,
1046
+ "width": 1920
1047
+ }, {
1048
+ "bit_rate": 4500000,
1049
+ "height": 720,
1050
+ "media_type": "video",
1051
+ "pregenerate": false,
1052
+ "width": 1280
1053
+ }, {
1054
+ "bit_rate": 2000000,
1055
+ "height": 540,
1056
+ "media_type": "video",
1057
+ "pregenerate": false,
1058
+ "width": 960
1059
+ }, {
1060
+ "bit_rate": 1100000,
1061
+ "height": 432,
1062
+ "media_type": "video",
1063
+ "pregenerate": false,
1064
+ "width": 768
1065
+ }, {
1066
+ "bit_rate": 810000,
1067
+ "height": 360,
1068
+ "media_type": "video",
1069
+ "pregenerate": false,
1070
+ "width": 640
1071
+ }, {
1072
+ "bit_rate": 520000,
1073
+ "height": 360,
1074
+ "media_type": "video",
1075
+ "pregenerate": false,
1076
+ "width": 640
1077
+ }]
1078
+ },
1079
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":40,\"aspect_ratio_width\":71}": {
1080
+ "rung_specs": [{
1081
+ "bit_rate": 9500000,
1082
+ "height": 1080,
1083
+ "media_type": "video",
1084
+ "pregenerate": true,
1085
+ "width": 1920
1086
+ }, {
1087
+ "bit_rate": 4500000,
1088
+ "height": 720,
1089
+ "media_type": "video",
1090
+ "pregenerate": false,
1091
+ "width": 1280
1092
+ }, {
1093
+ "bit_rate": 2000000,
1094
+ "height": 540,
1095
+ "media_type": "video",
1096
+ "pregenerate": false,
1097
+ "width": 960
1098
+ }, {
1099
+ "bit_rate": 1100000,
1100
+ "height": 432,
1101
+ "media_type": "video",
1102
+ "pregenerate": false,
1103
+ "width": 768
1104
+ }, {
1105
+ "bit_rate": 810000,
1106
+ "height": 360,
1107
+ "media_type": "video",
1108
+ "pregenerate": false,
1109
+ "width": 640
1110
+ }, {
1111
+ "bit_rate": 520000,
1112
+ "height": 360,
1113
+ "media_type": "video",
1114
+ "pregenerate": false,
1115
+ "width": 640
1116
+ }]
1117
+ },
1118
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":429,\"aspect_ratio_width\":1024}": {
1119
+ "rung_specs": [{
1120
+ "bit_rate": 9500000,
1121
+ "height": 1080,
1122
+ "media_type": "video",
1123
+ "pregenerate": true,
1124
+ "width": 2538
1125
+ }, {
1126
+ "bit_rate": 6000000,
1127
+ "height": 720,
1128
+ "media_type": "video",
1129
+ "pregenerate": false,
1130
+ "width": 1692
1131
+ }, {
1132
+ "bit_rate": 2640000,
1133
+ "height": 540,
1134
+ "media_type": "video",
1135
+ "pregenerate": false,
1136
+ "width": 1270
1137
+ }, {
1138
+ "bit_rate": 1450000,
1139
+ "height": 432,
1140
+ "media_type": "video",
1141
+ "pregenerate": false,
1142
+ "width": 1016
1143
+ }, {
1144
+ "bit_rate": 1070000,
1145
+ "height": 360,
1146
+ "media_type": "video",
1147
+ "pregenerate": false,
1148
+ "width": 846
1149
+ }, {
1150
+ "bit_rate": 690000,
1151
+ "height": 360,
1152
+ "media_type": "video",
1153
+ "pregenerate": false,
1154
+ "width": 846
1155
+ }]
1156
+ },
1157
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":466577,\"aspect_ratio_width\":912058}": {
1158
+ "rung_specs": [{
1159
+ "bit_rate": 9500000,
1160
+ "height": 1036,
1161
+ "media_type": "video",
1162
+ "pregenerate": true,
1163
+ "width": 1920
1164
+ }, {
1165
+ "bit_rate": 4700000,
1166
+ "height": 720,
1167
+ "media_type": "video",
1168
+ "pregenerate": false,
1169
+ "width": 1334
1170
+ }, {
1171
+ "bit_rate": 2080000,
1172
+ "height": 540,
1173
+ "media_type": "video",
1174
+ "pregenerate": false,
1175
+ "width": 1000
1176
+ }, {
1177
+ "bit_rate": 1145000,
1178
+ "height": 432,
1179
+ "media_type": "video",
1180
+ "pregenerate": false,
1181
+ "width": 800
1182
+ }, {
1183
+ "bit_rate": 843000,
1184
+ "height": 360,
1185
+ "media_type": "video",
1186
+ "pregenerate": false,
1187
+ "width": 666
1188
+ }, {
1189
+ "bit_rate": 541000,
1190
+ "height": 360,
1191
+ "media_type": "video",
1192
+ "pregenerate": false,
1193
+ "width": 666
1194
+ }]
1195
+ },
1196
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":480,\"aspect_ratio_width\":853}": {
1197
+ "rung_specs": [{
1198
+ "bit_rate": 9500000,
1199
+ "height": 1080,
1200
+ "media_type": "video",
1201
+ "pregenerate": true,
1202
+ "width": 1920
1203
+ }, {
1204
+ "bit_rate": 4500000,
1205
+ "height": 720,
1206
+ "media_type": "video",
1207
+ "pregenerate": false,
1208
+ "width": 1280
1209
+ }, {
1210
+ "bit_rate": 2000000,
1211
+ "height": 540,
1212
+ "media_type": "video",
1213
+ "pregenerate": false,
1214
+ "width": 960
1215
+ }, {
1216
+ "bit_rate": 1100000,
1217
+ "height": 432,
1218
+ "media_type": "video",
1219
+ "pregenerate": false,
1220
+ "width": 768
1221
+ }, {
1222
+ "bit_rate": 810000,
1223
+ "height": 360,
1224
+ "media_type": "video",
1225
+ "pregenerate": false,
1226
+ "width": 640
1227
+ }, {
1228
+ "bit_rate": 520000,
1229
+ "height": 360,
1230
+ "media_type": "video",
1231
+ "pregenerate": false,
1232
+ "width": 640
1233
+ }]
1234
+ },
1235
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":486,\"aspect_ratio_width\":853}": {
1236
+ "rung_specs": [{
1237
+ "bit_rate": 9500000,
1238
+ "height": 1080,
1239
+ "media_type": "video",
1240
+ "pregenerate": true,
1241
+ "width": 1920
1242
+ }, {
1243
+ "bit_rate": 4500000,
1244
+ "height": 720,
1245
+ "media_type": "video",
1246
+ "pregenerate": false,
1247
+ "width": 1280
1248
+ }, {
1249
+ "bit_rate": 2000000,
1250
+ "height": 540,
1251
+ "media_type": "video",
1252
+ "pregenerate": false,
1253
+ "width": 960
1254
+ }, {
1255
+ "bit_rate": 1100000,
1256
+ "height": 432,
1257
+ "media_type": "video",
1258
+ "pregenerate": false,
1259
+ "width": 768
1260
+ }, {
1261
+ "bit_rate": 810000,
1262
+ "height": 360,
1263
+ "media_type": "video",
1264
+ "pregenerate": false,
1265
+ "width": 640
1266
+ }, {
1267
+ "bit_rate": 520000,
1268
+ "height": 360,
1269
+ "media_type": "video",
1270
+ "pregenerate": false,
1271
+ "width": 640
1272
+ }]
1273
+ },
1274
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":5,\"aspect_ratio_width\":12}": {
1275
+ "rung_specs": [{
1276
+ "bit_rate": 9500000,
1277
+ "height": 1080,
1278
+ "media_type": "video",
1279
+ "pregenerate": true,
1280
+ "width": 2538
1281
+ }, {
1282
+ "bit_rate": 6000000,
1283
+ "height": 720,
1284
+ "media_type": "video",
1285
+ "pregenerate": false,
1286
+ "width": 1692
1287
+ }, {
1288
+ "bit_rate": 2640000,
1289
+ "height": 540,
1290
+ "media_type": "video",
1291
+ "pregenerate": false,
1292
+ "width": 1270
1293
+ }, {
1294
+ "bit_rate": 1450000,
1295
+ "height": 432,
1296
+ "media_type": "video",
1297
+ "pregenerate": false,
1298
+ "width": 1016
1299
+ }, {
1300
+ "bit_rate": 1070000,
1301
+ "height": 360,
1302
+ "media_type": "video",
1303
+ "pregenerate": false,
1304
+ "width": 846
1305
+ }, {
1306
+ "bit_rate": 690000,
1307
+ "height": 360,
1308
+ "media_type": "video",
1309
+ "pregenerate": false,
1310
+ "width": 846
1311
+ }]
1312
+ },
1313
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":582543,\"aspect_ratio_width\":776720}": {
1314
+ "rung_specs": [{
1315
+ "bit_rate": 4900000,
1316
+ "height": 1080,
1317
+ "media_type": "video",
1318
+ "pregenerate": true,
1319
+ "width": 1452
1320
+ }, {
1321
+ "bit_rate": 3375000,
1322
+ "height": 720,
1323
+ "media_type": "video",
1324
+ "pregenerate": false,
1325
+ "width": 968
1326
+ }, {
1327
+ "bit_rate": 1500000,
1328
+ "height": 540,
1329
+ "media_type": "video",
1330
+ "pregenerate": false,
1331
+ "width": 726
1332
+ }, {
1333
+ "bit_rate": 825000,
1334
+ "height": 432,
1335
+ "media_type": "video",
1336
+ "pregenerate": false,
1337
+ "width": 580
1338
+ }, {
1339
+ "bit_rate": 610000,
1340
+ "height": 360,
1341
+ "media_type": "video",
1342
+ "pregenerate": false,
1343
+ "width": 484
1344
+ }, {
1345
+ "bit_rate": 390000,
1346
+ "height": 360,
1347
+ "media_type": "video",
1348
+ "pregenerate": false,
1349
+ "width": 484
1350
+ }]
1351
+ },
1352
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":639,\"aspect_ratio_width\":889}": {
1353
+ "rung_specs": [{
1354
+ "bit_rate": 4900000,
1355
+ "height": 1080,
1356
+ "media_type": "video",
1357
+ "pregenerate": true,
1358
+ "width": 1452
1359
+ }, {
1360
+ "bit_rate": 3375000,
1361
+ "height": 720,
1362
+ "media_type": "video",
1363
+ "pregenerate": false,
1364
+ "width": 968
1365
+ }, {
1366
+ "bit_rate": 1500000,
1367
+ "height": 540,
1368
+ "media_type": "video",
1369
+ "pregenerate": false,
1370
+ "width": 726
1371
+ }, {
1372
+ "bit_rate": 825000,
1373
+ "height": 432,
1374
+ "media_type": "video",
1375
+ "pregenerate": false,
1376
+ "width": 580
1377
+ }, {
1378
+ "bit_rate": 610000,
1379
+ "height": 360,
1380
+ "media_type": "video",
1381
+ "pregenerate": false,
1382
+ "width": 484
1383
+ }, {
1384
+ "bit_rate": 390000,
1385
+ "height": 360,
1386
+ "media_type": "video",
1387
+ "pregenerate": false,
1388
+ "width": 484
1389
+ }]
1390
+ },
1391
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":65536,\"aspect_ratio_width\":87381}": {
1392
+ "rung_specs": [{
1393
+ "bit_rate": 4900000,
1394
+ "height": 1080,
1395
+ "media_type": "video",
1396
+ "pregenerate": true,
1397
+ "width": 1452
1398
+ }, {
1399
+ "bit_rate": 3375000,
1400
+ "height": 720,
1401
+ "media_type": "video",
1402
+ "pregenerate": false,
1403
+ "width": 968
1404
+ }, {
1405
+ "bit_rate": 1500000,
1406
+ "height": 540,
1407
+ "media_type": "video",
1408
+ "pregenerate": false,
1409
+ "width": 726
1410
+ }, {
1411
+ "bit_rate": 825000,
1412
+ "height": 432,
1413
+ "media_type": "video",
1414
+ "pregenerate": false,
1415
+ "width": 580
1416
+ }, {
1417
+ "bit_rate": 610000,
1418
+ "height": 360,
1419
+ "media_type": "video",
1420
+ "pregenerate": false,
1421
+ "width": 484
1422
+ }, {
1423
+ "bit_rate": 390000,
1424
+ "height": 360,
1425
+ "media_type": "video",
1426
+ "pregenerate": false,
1427
+ "width": 484
1428
+ }]
1429
+ },
1430
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":81,\"aspect_ratio_width\":128}": {
1431
+ "rung_specs": [{
1432
+ "bit_rate": 5500000,
1433
+ "height": 1080,
1434
+ "media_type": "video",
1435
+ "pregenerate": true,
1436
+ "width": 1620
1437
+ }, {
1438
+ "bit_rate": 2400000,
1439
+ "height": 720,
1440
+ "media_type": "video",
1441
+ "pregenerate": false,
1442
+ "width": 1080
1443
+ }, {
1444
+ "bit_rate": 1400000,
1445
+ "height": 540,
1446
+ "media_type": "video",
1447
+ "pregenerate": false,
1448
+ "width": 810
1449
+ }, {
1450
+ "bit_rate": 900000,
1451
+ "height": 432,
1452
+ "media_type": "video",
1453
+ "pregenerate": false,
1454
+ "width": 648
1455
+ }, {
1456
+ "bit_rate": 680000,
1457
+ "height": 360,
1458
+ "media_type": "video",
1459
+ "pregenerate": false,
1460
+ "width": 540
1461
+ }, {
1462
+ "bit_rate": 440000,
1463
+ "height": 360,
1464
+ "media_type": "video",
1465
+ "pregenerate": false,
1466
+ "width": 540
1467
+ }]
1468
+ },
1469
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":8192,\"aspect_ratio_width\":12015}": {
1470
+ "rung_specs": [{
1471
+ "bit_rate": 5500000,
1472
+ "height": 1080,
1473
+ "media_type": "video",
1474
+ "pregenerate": true,
1475
+ "width": 1620
1476
+ }, {
1477
+ "bit_rate": 2400000,
1478
+ "height": 720,
1479
+ "media_type": "video",
1480
+ "pregenerate": false,
1481
+ "width": 1080
1482
+ }, {
1483
+ "bit_rate": 1400000,
1484
+ "height": 540,
1485
+ "media_type": "video",
1486
+ "pregenerate": false,
1487
+ "width": 810
1488
+ }, {
1489
+ "bit_rate": 900000,
1490
+ "height": 432,
1491
+ "media_type": "video",
1492
+ "pregenerate": false,
1493
+ "width": 648
1494
+ }, {
1495
+ "bit_rate": 680000,
1496
+ "height": 360,
1497
+ "media_type": "video",
1498
+ "pregenerate": false,
1499
+ "width": 540
1500
+ }, {
1501
+ "bit_rate": 440000,
1502
+ "height": 360,
1503
+ "media_type": "video",
1504
+ "pregenerate": false,
1505
+ "width": 540
1506
+ }]
1507
+ },
1508
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":891,\"aspect_ratio_width\":1600}": {
1509
+ "rung_specs": [{
1510
+ "bit_rate": 9500000,
1511
+ "height": 1080,
1512
+ "media_type": "video",
1513
+ "pregenerate": true,
1514
+ "width": 1920
1515
+ }, {
1516
+ "bit_rate": 4500000,
1517
+ "height": 720,
1518
+ "media_type": "video",
1519
+ "pregenerate": false,
1520
+ "width": 1280
1521
+ }, {
1522
+ "bit_rate": 2000000,
1523
+ "height": 540,
1524
+ "media_type": "video",
1525
+ "pregenerate": false,
1526
+ "width": 960
1527
+ }, {
1528
+ "bit_rate": 1100000,
1529
+ "height": 432,
1530
+ "media_type": "video",
1531
+ "pregenerate": false,
1532
+ "width": 768
1533
+ }, {
1534
+ "bit_rate": 810000,
1535
+ "height": 360,
1536
+ "media_type": "video",
1537
+ "pregenerate": false,
1538
+ "width": 640
1539
+ }, {
1540
+ "bit_rate": 520000,
1541
+ "height": 360,
1542
+ "media_type": "video",
1543
+ "pregenerate": false,
1544
+ "width": 640
1545
+ }]
1546
+ },
1547
+ "{\"media_type\":\"video\",\"aspect_ratio_height\":9,\"aspect_ratio_width\":16}": {
1548
+ "rung_specs": [{
1549
+ "bit_rate": 9500000,
1550
+ "height": 1080,
1551
+ "media_type": "video",
1552
+ "pregenerate": true,
1553
+ "width": 1920
1554
+ }, {
1555
+ "bit_rate": 4500000,
1556
+ "height": 720,
1557
+ "media_type": "video",
1558
+ "pregenerate": false,
1559
+ "width": 1280
1560
+ }, {
1561
+ "bit_rate": 2000000,
1562
+ "height": 540,
1563
+ "media_type": "video",
1564
+ "pregenerate": false,
1565
+ "width": 960
1566
+ }, {
1567
+ "bit_rate": 1100000,
1568
+ "height": 432,
1569
+ "media_type": "video",
1570
+ "pregenerate": false,
1571
+ "width": 768
1572
+ }, {
1573
+ "bit_rate": 810000,
1574
+ "height": 360,
1575
+ "media_type": "video",
1576
+ "pregenerate": false,
1577
+ "width": 640
1578
+ }, {
1579
+ "bit_rate": 520000,
1580
+ "height": 360,
1581
+ "media_type": "video",
1582
+ "pregenerate": false,
1583
+ "width": 640
1584
+ }]
1585
+ }
1586
+ },
1587
+ "playout_formats": {
1588
+ "hls-clear": {
1589
+ "drm": null,
1590
+ "protocol": {
1591
+ "type": "ProtoHls"
1592
+ }
1593
+ }
1594
+ },
1595
+ "segment_specs": {
1596
+ "audio": {
1597
+ "segs_per_chunk": 15,
1598
+ "target_dur": 1.984
1599
+ },
1600
+ "video": {
1601
+ "segs_per_chunk": 15,
1602
+ "target_dur": 2.000
1603
+ }
1604
+ }
1605
+ };
1606
+ module.exports = AbrProfileLiveVod;