demuxe 0.3.0-beta.3

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 (124) hide show
  1. package/LICENSE +352 -0
  2. package/README.md +75 -0
  3. package/bin/demuxe.mjs +30 -0
  4. package/docs/API-MIGRATION.md +54 -0
  5. package/docs/BETA.md +98 -0
  6. package/docs/BRANDING-MIGRATION.md +77 -0
  7. package/docs/COMPATIBILITY-EXPANSION.md +181 -0
  8. package/docs/LICENSING.md +83 -0
  9. package/docs/OPTIMIZATION-COMPLETION.md +511 -0
  10. package/docs/OPTIMIZATION-FLAC.md +178 -0
  11. package/docs/OPTIMIZATION-INTEGRATION.md +221 -0
  12. package/docs/OPTIMIZATION-REVIEW-FIXES.md +78 -0
  13. package/docs/PLAYER-COMPONENT.md +247 -0
  14. package/docs/PUBLIC-API-VALIDATION.md +163 -0
  15. package/docs/PUBLIC-API.md +245 -0
  16. package/docs/RELEASE.md +181 -0
  17. package/docs/RUNTIME-ASSETS.md +127 -0
  18. package/engine-build.json +8781 -0
  19. package/examples/custom-controls.html +14 -0
  20. package/examples/player-element.html +5 -0
  21. package/fixtures/DejaVuSans.ttf +0 -0
  22. package/fixtures/FONT-LICENSE.txt +187 -0
  23. package/index.d.ts +1 -0
  24. package/index.js +1 -0
  25. package/package.json +46 -0
  26. package/player.d.ts +1 -0
  27. package/player.js +1 -0
  28. package/release-manifest.json +541 -0
  29. package/sources.lock.json +96 -0
  30. package/third_party/notices/dav1d/COPYING +23 -0
  31. package/third_party/notices/emscripten/LICENSE +102 -0
  32. package/third_party/notices/emscripten/system/lib/compiler-rt/LICENSE.TXT +311 -0
  33. package/third_party/notices/emscripten/system/lib/libc/musl/COPYRIGHT +193 -0
  34. package/third_party/notices/emscripten/system/lib/libcxx/LICENSE.TXT +311 -0
  35. package/third_party/notices/emscripten/system/lib/libcxxabi/LICENSE.TXT +311 -0
  36. package/third_party/notices/emsdk/LICENSE +27 -0
  37. package/third_party/notices/ffmpeg/COPYING.GPLv2 +339 -0
  38. package/third_party/notices/ffmpeg/COPYING.GPLv3 +674 -0
  39. package/third_party/notices/ffmpeg/COPYING.LGPLv2.1 +502 -0
  40. package/third_party/notices/ffmpeg/LICENSE.md +129 -0
  41. package/third_party/notices/ffmpeg-adaptation/COPYING.LGPLv2.1 +502 -0
  42. package/third_party/notices/ffmpeg-adaptation/LICENSE.md +127 -0
  43. package/third_party/notices/freetype/LICENSE.TXT +46 -0
  44. package/third_party/notices/freetype/docs/FTL.TXT +169 -0
  45. package/third_party/notices/freetype/docs/GPLv2.TXT +340 -0
  46. package/third_party/notices/fribidi/COPYING +504 -0
  47. package/third_party/notices/harfbuzz/COPYING +42 -0
  48. package/third_party/notices/libass/COPYING +15 -0
  49. package/third_party/notices/libplacebo/LICENSE +458 -0
  50. package/third_party/notices/libxml2/Copyright +23 -0
  51. package/third_party/notices/libxml2/dict.c.notice +17 -0
  52. package/third_party/notices/libxml2/list.c.notice +16 -0
  53. package/third_party/notices/mpv/Copyright +78 -0
  54. package/third_party/notices/mpv/LICENSE.GPL +338 -0
  55. package/third_party/notices/mpv/LICENSE.LGPL +501 -0
  56. package/third_party/notices/vulkan-headers/LICENSE.txt +202 -0
  57. package/third_party/notices/zimg/COPYING +14 -0
  58. package/third_party/notices/zlib/LICENSE +22 -0
  59. package/third_party/notices.json +166 -0
  60. package/toolchain.lock.json +204 -0
  61. package/web/audio-worklet.js +45 -0
  62. package/web/cheap-mp4-probe.js +82 -0
  63. package/web/engine-adaptation/manifest.json +75 -0
  64. package/web/engine-adaptation/remux.mjs +2 -0
  65. package/web/engine-adaptation/remux.wasm +0 -0
  66. package/web/engine-ass/manifest.json +55 -0
  67. package/web/engine-ass/subtitles.mjs +2 -0
  68. package/web/engine-ass/subtitles.wasm +0 -0
  69. package/web/engine-hybrid/player.mjs +2 -0
  70. package/web/engine-hybrid/player.wasm +0 -0
  71. package/web/engine-remux/remux.mjs +2 -0
  72. package/web/engine-remux/remux.wasm +0 -0
  73. package/web/engine-software-full/player.mjs +2 -0
  74. package/web/engine-software-full/player.wasm +0 -0
  75. package/web/file-reader.js +34 -0
  76. package/web/filter-retained-engine-worker.js +292 -0
  77. package/web/generated/index.d.ts +6 -0
  78. package/web/generated/index.js +4 -0
  79. package/web/generated/internal/assets.d.ts +2 -0
  80. package/web/generated/internal/assets.js +7 -0
  81. package/web/generated/internal/backend.d.ts +27 -0
  82. package/web/generated/internal/backend.js +1 -0
  83. package/web/generated/internal/errors.d.ts +13 -0
  84. package/web/generated/internal/errors.js +54 -0
  85. package/web/generated/internal/native-ass.d.ts +38 -0
  86. package/web/generated/internal/native-ass.js +206 -0
  87. package/web/generated/internal/native-player.d.ts +95 -0
  88. package/web/generated/internal/native-player.js +502 -0
  89. package/web/generated/internal/playback-plans.d.ts +526 -0
  90. package/web/generated/internal/playback-plans.js +110 -0
  91. package/web/generated/internal/selection.d.ts +45 -0
  92. package/web/generated/internal/selection.js +45 -0
  93. package/web/generated/internal/state.d.ts +8 -0
  94. package/web/generated/internal/state.js +56 -0
  95. package/web/generated/internal/wasm-player.d.ts +127 -0
  96. package/web/generated/internal/wasm-player.js +372 -0
  97. package/web/generated/player/index.d.ts +198 -0
  98. package/web/generated/player/index.js +873 -0
  99. package/web/generated/player/interaction.d.ts +6 -0
  100. package/web/generated/player/interaction.js +14 -0
  101. package/web/generated/player/styles.d.ts +1 -0
  102. package/web/generated/player/styles.js +86 -0
  103. package/web/generated/types.d.ts +227 -0
  104. package/web/generated/types.js +2 -0
  105. package/web/generated/unified-player.d.ts +129 -0
  106. package/web/generated/unified-player.js +1074 -0
  107. package/web/io-worker.js +65 -0
  108. package/web/native-ass-worker.js +26 -0
  109. package/web/native-remux-player.js +301 -0
  110. package/web/native-remux-source-worker.js +25 -0
  111. package/web/native-remux-worker.js +46 -0
  112. package/web/range-reader.js +130 -0
  113. package/web/remux-packaging.js +11 -0
  114. package/web/resource-loader.js +173 -0
  115. package/web/retained-decoder-worker.js +200 -0
  116. package/web/retained-video.js +15 -0
  117. package/web/segmented-subtitles.js +37 -0
  118. package/web/software-full-engine-worker.js +234 -0
  119. package/web/source-probe.js +28 -0
  120. package/web/split-mp4.js +159 -0
  121. package/web/streaming-manifest.js +136 -0
  122. package/web/subtitle-overlay.js +26 -0
  123. package/web/video-codec-config.js +59 -0
  124. package/web/vod-manifest.js +54 -0
@@ -0,0 +1,541 @@
1
+ {
2
+ "schema": 1,
3
+ "version": "0.3.0-beta.3",
4
+ "status": "beta-candidate-not-production-qualified",
5
+ "sourceCommit": "c981755debd483b1f3b42d9c28f9d22760a90797",
6
+ "dirtySource": false,
7
+ "sourceTag": "v0.3.0-beta.3-rc.5",
8
+ "sourceArchive": {
9
+ "filename": "demuxe-0.3.0-beta.3-source.tar.gz",
10
+ "sha256": "fb9138417fad8e10bc36029c19ccc1c8c220786b28262be79f49fd050fccd523",
11
+ "bytes": 94870594
12
+ },
13
+ "engineBuildRecord": "engine-build.json",
14
+ "publicModes": [
15
+ "native",
16
+ "hybrid",
17
+ "software"
18
+ ],
19
+ "automaticOrder": [
20
+ "native-direct",
21
+ "native-remux",
22
+ "hybrid",
23
+ "software"
24
+ ],
25
+ "engines": {
26
+ "remux": [
27
+ "engine-remux",
28
+ "remux"
29
+ ],
30
+ "hybrid": [
31
+ "engine-hybrid",
32
+ "player"
33
+ ],
34
+ "software": [
35
+ "engine-software-full",
36
+ "player"
37
+ ]
38
+ },
39
+ "optionalQualificationRequired": true,
40
+ "defaultSoftwarePresenter": "rgb",
41
+ "qualification": {
42
+ "functional": "See repository results and clean-consumer results for exact hashes",
43
+ "performance": "Workload-specific; no universal performance claim",
44
+ "production": false,
45
+ "experimentalYUV": "Seek endurance and sustained-movie qualification remain open"
46
+ },
47
+ "files": {
48
+ "LICENSE": {
49
+ "bytes": 18678,
50
+ "sha256": "f4ca3ccdb80203191b5e3e64c4d31baece92ea8b2140eb0112e38743c5ca778c"
51
+ },
52
+ "README.md": {
53
+ "bytes": 2698,
54
+ "sha256": "24b781d9601df5ead83ab8fa9a92ace8f77e028451c42c801773335871c27262"
55
+ },
56
+ "bin/demuxe.mjs": {
57
+ "bytes": 4046,
58
+ "sha256": "bdeeb5e545e36e6d18f8e836388ecafddee1397af9fa674db7b03d797c62c774"
59
+ },
60
+ "docs/API-MIGRATION.md": {
61
+ "bytes": 2887,
62
+ "sha256": "df53273e0b79f6bc323133338dafb3ed77f5f8b0f157d92917c30dda77ed30a1"
63
+ },
64
+ "docs/BETA.md": {
65
+ "bytes": 5274,
66
+ "sha256": "2a6bc23cb13d30822713941350503ff1566adf807d9cb151d1ab0af9a8b2a58e"
67
+ },
68
+ "docs/BRANDING-MIGRATION.md": {
69
+ "bytes": 4806,
70
+ "sha256": "1c7216aadbe9d7109bacf48c8fc3d598401b0b2b313b752b5ba6825140208ca5"
71
+ },
72
+ "docs/COMPATIBILITY-EXPANSION.md": {
73
+ "bytes": 10449,
74
+ "sha256": "2649eb4566827e2dc642a392f389b65468d3756f25e63ae8466cafe6cbce1ef1"
75
+ },
76
+ "docs/LICENSING.md": {
77
+ "bytes": 5480,
78
+ "sha256": "8f287cfd1df9c296364feea20ee7a0953dce2c0b38392818730e11e7cbd90d1c"
79
+ },
80
+ "docs/OPTIMIZATION-COMPLETION.md": {
81
+ "bytes": 32979,
82
+ "sha256": "d487886347cac5323d783d0d5628085686b18be7f4d84476a35afa671249fac1"
83
+ },
84
+ "docs/OPTIMIZATION-FLAC.md": {
85
+ "bytes": 10578,
86
+ "sha256": "3918dfb6127679e3ee52a3b081d659584d36ed47642c36bc20a947c707276d79"
87
+ },
88
+ "docs/OPTIMIZATION-INTEGRATION.md": {
89
+ "bytes": 13925,
90
+ "sha256": "89aabb04601cc91794ad0c0e380901e81592a1504a274187b779115dfebb1f3a"
91
+ },
92
+ "docs/OPTIMIZATION-REVIEW-FIXES.md": {
93
+ "bytes": 4822,
94
+ "sha256": "f90a4ec8afb7560c620a7163da14cf4956a5bc5b4eef894256670bcfb0c6061d"
95
+ },
96
+ "docs/PLAYER-COMPONENT.md": {
97
+ "bytes": 14137,
98
+ "sha256": "1dc3c86158fcfd8087b8b48b8aaf7d3c6931d77178a0e097ab3b0d0ff0922c34"
99
+ },
100
+ "docs/PUBLIC-API-VALIDATION.md": {
101
+ "bytes": 10347,
102
+ "sha256": "a706e9f05b2fe031b77672676a750f8745519f788e960ded085af7a50fb4611f"
103
+ },
104
+ "docs/PUBLIC-API.md": {
105
+ "bytes": 14446,
106
+ "sha256": "33e94cbacc9c0322eca1ee5f8e0da54e99c8e750ae715a92b4ee5708497d63dc"
107
+ },
108
+ "docs/RELEASE.md": {
109
+ "bytes": 9470,
110
+ "sha256": "10e71eaf75cf64d71f3cdab192fa5dd711e1ba23cb1d1cba37d740a17ae7cb17"
111
+ },
112
+ "docs/RUNTIME-ASSETS.md": {
113
+ "bytes": 7345,
114
+ "sha256": "8b80e5790cb018b6ae9cd611f19e7e379a119e5dfc27e1b2bc7d589713f164b7"
115
+ },
116
+ "engine-build.json": {
117
+ "bytes": 1022494,
118
+ "sha256": "07717b159a47ea27c5aa4bf56e277db3d0a0d2afbf8f414758367c19fc0caa60"
119
+ },
120
+ "examples/custom-controls.html": {
121
+ "bytes": 1820,
122
+ "sha256": "688a3664c936d5743cced955b938c10b160e1025e841ff551a59a0470cb88038"
123
+ },
124
+ "examples/player-element.html": {
125
+ "bytes": 598,
126
+ "sha256": "c3f528a698b4d55f26862a17d65e6b1725c579b2d45842e42e59a3f44fbb8e29"
127
+ },
128
+ "fixtures/DejaVuSans.ttf": {
129
+ "bytes": 757076,
130
+ "sha256": "7da195a74c55bef988d0d48f9508bd5d849425c1770dba5d7bfc6ce9ed848954"
131
+ },
132
+ "fixtures/FONT-LICENSE.txt": {
133
+ "bytes": 8816,
134
+ "sha256": "7a083b136e64d064794c3419751e5c7dd10d2f64c108fe5ba161eae5e5958a93"
135
+ },
136
+ "index.d.ts": {
137
+ "bytes": 42,
138
+ "sha256": "422f642c2ce881bd6ad92ca867df0092da34fa22165018345324f033781e89df"
139
+ },
140
+ "index.js": {
141
+ "bytes": 42,
142
+ "sha256": "422f642c2ce881bd6ad92ca867df0092da34fa22165018345324f033781e89df"
143
+ },
144
+ "package.json": {
145
+ "bytes": 1048,
146
+ "sha256": "55fd9c13aebc115aff76efc66b1d5a2c4bcb57b5c9a4230d8be2dc47481232f6"
147
+ },
148
+ "player.d.ts": {
149
+ "bytes": 49,
150
+ "sha256": "43c7f5ef8cb63298ab9d85172f7e04add765404d2ba1b61ea6ccfc50a412a43f"
151
+ },
152
+ "player.js": {
153
+ "bytes": 49,
154
+ "sha256": "43c7f5ef8cb63298ab9d85172f7e04add765404d2ba1b61ea6ccfc50a412a43f"
155
+ },
156
+ "sources.lock.json": {
157
+ "bytes": 3900,
158
+ "sha256": "ceaeb1bf1ae0d0079d5fd7955894a7330cd20348972993ae14367415948145c0"
159
+ },
160
+ "third_party/notices.json": {
161
+ "bytes": 5956,
162
+ "sha256": "bd3ce3672976fe7c604436c8bc9171600189bdfca40fd20819dc00596a983198"
163
+ },
164
+ "third_party/notices/dav1d/COPYING": {
165
+ "bytes": 1317,
166
+ "sha256": "b327887de263238deaa80c34cdd2ff3e0ba1d35db585ce14a37ce3e74ee389e9"
167
+ },
168
+ "third_party/notices/emscripten/LICENSE": {
169
+ "bytes": 5093,
170
+ "sha256": "620a78084fc7ca97c0b5dea9abf891f3ffcadfdbf305276f099c9c4e12fc1d86"
171
+ },
172
+ "third_party/notices/emscripten/system/lib/compiler-rt/LICENSE.TXT": {
173
+ "bytes": 16708,
174
+ "sha256": "1a8f1058753f1ba890de984e48f0242a3a5c29a6a8f2ed9fd813f36985387e8d"
175
+ },
176
+ "third_party/notices/emscripten/system/lib/libc/musl/COPYRIGHT": {
177
+ "bytes": 6204,
178
+ "sha256": "f9bc4423732350eb0b3f7ed7e91d530298476f8fec0c6c427a1c04ade22655af"
179
+ },
180
+ "third_party/notices/emscripten/system/lib/libcxx/LICENSE.TXT": {
181
+ "bytes": 16703,
182
+ "sha256": "539dd7aed86e8a4f12cbdd0e6c50c189c7d74847e4fecc64ce2c6ee3a01da38b"
183
+ },
184
+ "third_party/notices/emscripten/system/lib/libcxxabi/LICENSE.TXT": {
185
+ "bytes": 16706,
186
+ "sha256": "e2b35be49f7284a45b7baca8fc7b3ab7440e7902392b2528a457816b5bb2a15c"
187
+ },
188
+ "third_party/notices/emsdk/LICENSE": {
189
+ "bytes": 1326,
190
+ "sha256": "99d9a9616fbde3f5ee22a71d8645799a8522d48526130c5ba6dc27ad15ce01f1"
191
+ },
192
+ "third_party/notices/ffmpeg-adaptation/COPYING.LGPLv2.1": {
193
+ "bytes": 26517,
194
+ "sha256": "246041b6ecf9bc32d718a62c57877c78b5eb397b6467e74ed7ae2626ab189c30"
195
+ },
196
+ "third_party/notices/ffmpeg-adaptation/LICENSE.md": {
197
+ "bytes": 4346,
198
+ "sha256": "2e1d16c72fd74e12063776371da757322f8b77589386532f4fd8634bde7de1af"
199
+ },
200
+ "third_party/notices/ffmpeg/COPYING.GPLv2": {
201
+ "bytes": 18092,
202
+ "sha256": "8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643"
203
+ },
204
+ "third_party/notices/ffmpeg/COPYING.GPLv3": {
205
+ "bytes": 35147,
206
+ "sha256": "8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903"
207
+ },
208
+ "third_party/notices/ffmpeg/COPYING.LGPLv2.1": {
209
+ "bytes": 26526,
210
+ "sha256": "b634ab5640e258563c536e658cad87080553df6f34f62269a21d554844e58bfe"
211
+ },
212
+ "third_party/notices/ffmpeg/LICENSE.md": {
213
+ "bytes": 4376,
214
+ "sha256": "cb48bf09a11f5fb576cddb0431c8f5ed0a60157a9ec942adffc13907cbe083f2"
215
+ },
216
+ "third_party/notices/freetype/LICENSE.TXT": {
217
+ "bytes": 2074,
218
+ "sha256": "2e3bbb7d7c5c396368dd0853a790ec29ce5b8647163dde42a0493fb0d6556b2b"
219
+ },
220
+ "third_party/notices/freetype/docs/FTL.TXT": {
221
+ "bytes": 6743,
222
+ "sha256": "08c135755dd589039470f1fdbb400daaabaaa50d0b366d19cebff4d22986baa1"
223
+ },
224
+ "third_party/notices/freetype/docs/GPLv2.TXT": {
225
+ "bytes": 17994,
226
+ "sha256": "c4120c6752c910c299e3bd9cb3a46ff262c268303ca2069b61f92f10a5656c18"
227
+ },
228
+ "third_party/notices/fribidi/COPYING": {
229
+ "bytes": 26440,
230
+ "sha256": "32434afcc8666ba060e111d715bfdb6c2d5dd8a35fa4d3ab8ad67d8f850d2f2b"
231
+ },
232
+ "third_party/notices/harfbuzz/COPYING": {
233
+ "bytes": 1971,
234
+ "sha256": "ba8f810f2455c2f08e2d56bb49b72f37fcf68f1f4fade38977cfd7372050ad64"
235
+ },
236
+ "third_party/notices/libass/COPYING": {
237
+ "bytes": 755,
238
+ "sha256": "f7e30699d02798351e7f839e3d3bfeb29ce65e44efa7735c225464c4fd7dfe9c"
239
+ },
240
+ "third_party/notices/libplacebo/LICENSE": {
241
+ "bytes": 24478,
242
+ "sha256": "b3aa400aca6d2ba1f0bd03bd98d03d1fe7489a3bbb26969d72016360af8a5c9d"
243
+ },
244
+ "third_party/notices/libxml2/Copyright": {
245
+ "bytes": 1273,
246
+ "sha256": "c99aae1afe013e50b8b3701e089222b351258043c3025b64053a233fd25b4be7"
247
+ },
248
+ "third_party/notices/libxml2/dict.c.notice": {
249
+ "bytes": 705,
250
+ "sha256": "5e67dfcf4fbeb9e1a224e1001ad7cd4cab6cadb7383cc173ccd09315f89b0d9a"
251
+ },
252
+ "third_party/notices/libxml2/list.c.notice": {
253
+ "bytes": 660,
254
+ "sha256": "f7e1dd16905738b50f2c88c14bb778b1730c2023c2910485106d1cc8078fa1c7"
255
+ },
256
+ "third_party/notices/mpv/Copyright": {
257
+ "bytes": 4096,
258
+ "sha256": "bfe9ee4cceabcb8ecbfadf208d04156f73d801e6a57369a5606bb8341e204a23"
259
+ },
260
+ "third_party/notices/mpv/LICENSE.GPL": {
261
+ "bytes": 17984,
262
+ "sha256": "edaef632cbb643e4e7a221717a6c441a4c1a7c918e6e4d56debc3d8739b233f6"
263
+ },
264
+ "third_party/notices/mpv/LICENSE.LGPL": {
265
+ "bytes": 26410,
266
+ "sha256": "72b672113d642cbb8ef5dcc76938db801983c56e50b1400ab930f1a64d6dc8d9"
267
+ },
268
+ "third_party/notices/vulkan-headers/LICENSE.txt": {
269
+ "bytes": 11358,
270
+ "sha256": "cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30"
271
+ },
272
+ "third_party/notices/zimg/COPYING": {
273
+ "bytes": 484,
274
+ "sha256": "7637386b5f81e8a719ca336233149005e5fa28b5e6054ea7b67de49355b0ad40"
275
+ },
276
+ "third_party/notices/zlib/LICENSE": {
277
+ "bytes": 1002,
278
+ "sha256": "845efc77857d485d91fb3e0b884aaa929368c717ae8186b66fe1ed2495753243"
279
+ },
280
+ "toolchain.lock.json": {
281
+ "bytes": 8515,
282
+ "sha256": "160b8c7090ff9406cd649ad223d59d675ea345b984a54b276624082ed49762c6"
283
+ },
284
+ "web/audio-worklet.js": {
285
+ "bytes": 2045,
286
+ "sha256": "0c698cb4125f3e721d96d3f942d6e147a643e30ec83742764556354a9f8f62e8"
287
+ },
288
+ "web/cheap-mp4-probe.js": {
289
+ "bytes": 6345,
290
+ "sha256": "a7cf42d3bf21052f1d2d00087f34d569de01b9d96ec232dfb11de975f037cb7b"
291
+ },
292
+ "web/engine-adaptation/manifest.json": {
293
+ "bytes": 3916,
294
+ "sha256": "173daf551c699fa90acfb13ba36f821a73cec8df14b0ed5e85011b4c559f141a"
295
+ },
296
+ "web/engine-adaptation/remux.mjs": {
297
+ "bytes": 36491,
298
+ "sha256": "76e5224e69157e132c8430d9023bdb4df17757472c548ddcb9f1f2ee45ff0a57"
299
+ },
300
+ "web/engine-adaptation/remux.wasm": {
301
+ "bytes": 3866224,
302
+ "sha256": "6b196895be1c7a747eab32bb4b6d7a101f3dbc457a58077c764bb095ca556ea8"
303
+ },
304
+ "web/engine-ass/manifest.json": {
305
+ "bytes": 1952,
306
+ "sha256": "cff88da3437f1a575dbbcc0360fa45a7689db87140f56a256698cb963cefd92f"
307
+ },
308
+ "web/engine-ass/subtitles.mjs": {
309
+ "bytes": 29506,
310
+ "sha256": "90f360339cbd5bfecfb7ce60c44512966591235ea59f2fc1aa240638727eeef2"
311
+ },
312
+ "web/engine-ass/subtitles.wasm": {
313
+ "bytes": 1780220,
314
+ "sha256": "4ffba9d49df2efdf6b469a022df55d00d7b4cbe72dfb18a084940cbc7c6a40c4"
315
+ },
316
+ "web/engine-hybrid/player.mjs": {
317
+ "bytes": 61488,
318
+ "sha256": "e569c7a90acfaaa280245584d424beb99042d6dc7a8b6da7d3eb4e2a10dd3b7d"
319
+ },
320
+ "web/engine-hybrid/player.wasm": {
321
+ "bytes": 22064233,
322
+ "sha256": "bcd6bc204ae6823e26b3052c0935661fa6d26370977ba9695754b07963932542"
323
+ },
324
+ "web/engine-remux/remux.mjs": {
325
+ "bytes": 35885,
326
+ "sha256": "e0b3e807d16fe0ebd303e4112ce77bb034138b38074b0b0d7e706c01bd2b475b"
327
+ },
328
+ "web/engine-remux/remux.wasm": {
329
+ "bytes": 3013148,
330
+ "sha256": "710cc6f4de00314db2d2cb761d2ffc2c9f16fbd133216ec7185b5224420ab966"
331
+ },
332
+ "web/engine-software-full/player.mjs": {
333
+ "bytes": 60540,
334
+ "sha256": "f28f5b4d309e8aeb4e80135e895bdd55cce2013287bad2dadc16e681679c185a"
335
+ },
336
+ "web/engine-software-full/player.wasm": {
337
+ "bytes": 21427447,
338
+ "sha256": "208669cf8e59f842284ead0db8409d64fe782171e8eb4cf25a196d155d855ebe"
339
+ },
340
+ "web/file-reader.js": {
341
+ "bytes": 2496,
342
+ "sha256": "c8dbb823c07dc0431acee9176a875dc9d9fad0324a392246e8d9ddf5c73ccd2a"
343
+ },
344
+ "web/filter-retained-engine-worker.js": {
345
+ "bytes": 19576,
346
+ "sha256": "a850fb64d4764c51871775dbb18d887002f3c9d8b7c3c2d46e80105a75f5e8cd"
347
+ },
348
+ "web/generated/index.d.ts": {
349
+ "bytes": 680,
350
+ "sha256": "6fbc9b816c8c0efb9ffc22e21b479b14fc2e8c829a3bbe57c0226db67a1eed18"
351
+ },
352
+ "web/generated/index.js": {
353
+ "bytes": 187,
354
+ "sha256": "51a46a31e11143696a478b1b61d899429e23c51d4b372238a6e391d499d07e5b"
355
+ },
356
+ "web/generated/internal/assets.d.ts": {
357
+ "bytes": 135,
358
+ "sha256": "0ba3c75436a577803eed4de1572948509550a78f6298c94102b58db028afe725"
359
+ },
360
+ "web/generated/internal/assets.js": {
361
+ "bytes": 516,
362
+ "sha256": "abbf34dde9b35e1e08036f26beabe7903207b56b52419a6ddd66afd58c61ea1c"
363
+ },
364
+ "web/generated/internal/backend.d.ts": {
365
+ "bytes": 1139,
366
+ "sha256": "9798cb7d7eb88b42164817e1ba14aa1ffba1cd360775f112c25a2bd449964c6a"
367
+ },
368
+ "web/generated/internal/backend.js": {
369
+ "bytes": 11,
370
+ "sha256": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"
371
+ },
372
+ "web/generated/internal/errors.d.ts": {
373
+ "bytes": 845,
374
+ "sha256": "503ee3a8fce01f78e1e7f13f93a7f9f4092fe43d11b0d1fc4194e77c4205a1de"
375
+ },
376
+ "web/generated/internal/errors.js": {
377
+ "bytes": 3711,
378
+ "sha256": "0dc8db81831196048fad0918fb8f56b0a5d8622411f49f0b16763dfd3c3fddb7"
379
+ },
380
+ "web/generated/internal/native-ass.d.ts": {
381
+ "bytes": 1085,
382
+ "sha256": "532a211bc359f6e13f4047f4fc64ad81652affe75251ee0e32c39259b7b597b8"
383
+ },
384
+ "web/generated/internal/native-ass.js": {
385
+ "bytes": 9838,
386
+ "sha256": "0248e9bcc6b1cc0c74f65e3f97ea304a19d290b7c52f371ff37c2b29eb4445a4"
387
+ },
388
+ "web/generated/internal/native-player.d.ts": {
389
+ "bytes": 3165,
390
+ "sha256": "d1215e8d97a756d3c9946ddbc297a8d1134e615d1a81cbde984d839e9d9e6da3"
391
+ },
392
+ "web/generated/internal/native-player.js": {
393
+ "bytes": 26347,
394
+ "sha256": "58d6e4a7b4f438124d4d7d8e362094a53e44adf76f5d6d8a2b0c9f042ad2c180"
395
+ },
396
+ "web/generated/internal/playback-plans.d.ts": {
397
+ "bytes": 42351,
398
+ "sha256": "ebb32f267b49912b4c7d29f7de9d4dba894b09cbc1320a7a5f8ddf341a731427"
399
+ },
400
+ "web/generated/internal/playback-plans.js": {
401
+ "bytes": 10034,
402
+ "sha256": "485552acf0fe37c4f61d45794a7de822c0cd9f5fb90a2837aa6503c777a751d5"
403
+ },
404
+ "web/generated/internal/selection.d.ts": {
405
+ "bytes": 1236,
406
+ "sha256": "eecc4e39dc0063b52e5b9f185a45dcc60e1ce7b8fc7c63cc294dda73e1a7b6e8"
407
+ },
408
+ "web/generated/internal/selection.js": {
409
+ "bytes": 3540,
410
+ "sha256": "784848a86d8e46a63db40b72ea7a23e5e39cc288bde75492fa72d7d690ae997e"
411
+ },
412
+ "web/generated/internal/state.d.ts": {
413
+ "bytes": 714,
414
+ "sha256": "39f4b57598f8fff2d4bf2aa9600adedbae66ee9af8bd6ecc5c675f3ce10127d0"
415
+ },
416
+ "web/generated/internal/state.js": {
417
+ "bytes": 3394,
418
+ "sha256": "4358b51e883de4b26c7dcc05b81d85eddc60df12d17a567054992debef75f604"
419
+ },
420
+ "web/generated/internal/wasm-player.d.ts": {
421
+ "bytes": 4025,
422
+ "sha256": "80d14f3efd0046a9d0615aa524eab49c44747b2e755c013c3f6683034590cf9f"
423
+ },
424
+ "web/generated/internal/wasm-player.js": {
425
+ "bytes": 20953,
426
+ "sha256": "74c9b8bfec4dc8dbcf8b29e4e63aa173d572bae1919aab7d10cf59bbe45c278c"
427
+ },
428
+ "web/generated/player/index.d.ts": {
429
+ "bytes": 6350,
430
+ "sha256": "911cb27bb67276f519fafb33d83d55bbaf74e6a7b6f42042996ca8faacd73cb1"
431
+ },
432
+ "web/generated/player/index.js": {
433
+ "bytes": 59103,
434
+ "sha256": "861a04e86fbf94e1f1d4ebbf7bd3167cfc546e01b3b94633de58bd8ab5281628"
435
+ },
436
+ "web/generated/player/interaction.d.ts": {
437
+ "bytes": 264,
438
+ "sha256": "1e1e32f862dcf90d8dc2df6ac51077e89f51d4521e1d708a26b872b5c3326847"
439
+ },
440
+ "web/generated/player/interaction.js": {
441
+ "bytes": 1106,
442
+ "sha256": "7f450a6280a3c5e337ba9d070f6ce93abcfaaf8dcd8426233503a8b31b02cd66"
443
+ },
444
+ "web/generated/player/styles.d.ts": {
445
+ "bytes": 22994,
446
+ "sha256": "b21c85544090183565ca12935735c76c24b52b0c6260cdd8a985519ea3242b33"
447
+ },
448
+ "web/generated/player/styles.js": {
449
+ "bytes": 22899,
450
+ "sha256": "93e6c7083d9281d69b1ab45b7ba7e80cc11c364202e0a02800c3b7f2b15fd3f2"
451
+ },
452
+ "web/generated/types.d.ts": {
453
+ "bytes": 7701,
454
+ "sha256": "867e2258adc4261510620a9e906da62bb7623c4ff33d51eb61ac438f3d1c4124"
455
+ },
456
+ "web/generated/types.js": {
457
+ "bytes": 334,
458
+ "sha256": "246f6df08c5674de8f9ef81050f0820588565c5a6f84836c99f8ce5c35f42d6a"
459
+ },
460
+ "web/generated/unified-player.d.ts": {
461
+ "bytes": 5049,
462
+ "sha256": "2fafb16b5b8f418f3e7d83b19c5aa0aed0d92da368d64cc764746620deb8cf5f"
463
+ },
464
+ "web/generated/unified-player.js": {
465
+ "bytes": 65659,
466
+ "sha256": "ac9d17457a35f1d82302a8e6ba9c93118ee782f618c4321d9bcac6adeb5dc7b3"
467
+ },
468
+ "web/io-worker.js": {
469
+ "bytes": 4793,
470
+ "sha256": "cc82ed68dd38d72a037e0491aaec99991cfb2be1238237e51f5f4e2f0d406bbd"
471
+ },
472
+ "web/native-ass-worker.js": {
473
+ "bytes": 1826,
474
+ "sha256": "6fcf7ee6be3fd843b072174a0f7c9ccd9b155a54adf3c18c07464746e642bce9"
475
+ },
476
+ "web/native-remux-player.js": {
477
+ "bytes": 25267,
478
+ "sha256": "0fda2c00391b04d732134e16ecda0d0df612d5df98380d596660b01b8b1bc0fb"
479
+ },
480
+ "web/native-remux-source-worker.js": {
481
+ "bytes": 1853,
482
+ "sha256": "db0da78fb07c81fbbebbaa1b75443c1c6f305920a5ea8ac6df1536cb64a211dd"
483
+ },
484
+ "web/native-remux-worker.js": {
485
+ "bytes": 5137,
486
+ "sha256": "ac9e2ce40ccbdf265133fd17161d2998a0f8e5eeee6a088cb7a926e50ffc350d"
487
+ },
488
+ "web/range-reader.js": {
489
+ "bytes": 9639,
490
+ "sha256": "540294772b1f54adac5cf35ebbac479bed3e689e5feb505f2073d1a9256c8d86"
491
+ },
492
+ "web/remux-packaging.js": {
493
+ "bytes": 730,
494
+ "sha256": "ecfb3cfcf6136ce8202eeb086e68eb51679f75aa64d6848cce760f66a00b757f"
495
+ },
496
+ "web/resource-loader.js": {
497
+ "bytes": 12447,
498
+ "sha256": "f3fabe6b3688f64b2c585dc9e901523f6175edd26eff7432989ebfca820100f9"
499
+ },
500
+ "web/retained-decoder-worker.js": {
501
+ "bytes": 12699,
502
+ "sha256": "6b3158a2ffd5b8d770feea61a56785d21a090707c2ed2cca16b5b06fb4cbcab6"
503
+ },
504
+ "web/retained-video.js": {
505
+ "bytes": 1019,
506
+ "sha256": "9bf519899d422b9e2e949817f0eb2d97296090ad31b6bf51b0c2d1bbd0898824"
507
+ },
508
+ "web/segmented-subtitles.js": {
509
+ "bytes": 2905,
510
+ "sha256": "7417266d8f4f586f3ec356edfeb84ba8a08827103d7ac80e7a7019027d5a59cb"
511
+ },
512
+ "web/software-full-engine-worker.js": {
513
+ "bytes": 15381,
514
+ "sha256": "1e1b447a8229f9d3a46fff23bac8770879bcfb9811065619c4cc1eec63975292"
515
+ },
516
+ "web/source-probe.js": {
517
+ "bytes": 2272,
518
+ "sha256": "1ec23dc75f37fa095eeb713962e276bfed4b558a02f09434b4daee1a6fba907f"
519
+ },
520
+ "web/split-mp4.js": {
521
+ "bytes": 10334,
522
+ "sha256": "5eede98072dedf84e8f17bf6f3625821b3d673d56313240c7770b985455d5429"
523
+ },
524
+ "web/streaming-manifest.js": {
525
+ "bytes": 11493,
526
+ "sha256": "51db6db784a2e8a7108feb5871c44175f9758415811ff6625ada275519c81a71"
527
+ },
528
+ "web/subtitle-overlay.js": {
529
+ "bytes": 1894,
530
+ "sha256": "8f9b6c4789fe799081c6e3d5058383ef1735f1e0c4830c1f898d88770fc3c7c0"
531
+ },
532
+ "web/video-codec-config.js": {
533
+ "bytes": 4734,
534
+ "sha256": "da96e89181be7127a1e7b40076f7ea8688fc063f342d72fdf31038ed49a118f7"
535
+ },
536
+ "web/vod-manifest.js": {
537
+ "bytes": 4262,
538
+ "sha256": "309380e05021e2c146a22ca522b3fe7ad2fafb97582421668275685e74db7a44"
539
+ }
540
+ }
541
+ }
@@ -0,0 +1,96 @@
1
+ {
2
+ "schema": 1,
3
+ "sources": [
4
+ {
5
+ "name": "mpv",
6
+ "upstream": "https://github.com/mpv-player/mpv",
7
+ "revision": "v0.40.0",
8
+ "url": "https://codeload.github.com/mpv-player/mpv/tar.gz/refs/tags/v0.40.0",
9
+ "sha256": "10a0f4654f62140a6dd4d380dcf0bbdbdcf6e697556863dc499c296182f081a3"
10
+ },
11
+ {
12
+ "name": "ffmpeg",
13
+ "upstream": "https://github.com/FFmpeg/FFmpeg",
14
+ "revision": "n7.1.1",
15
+ "url": "https://codeload.github.com/FFmpeg/FFmpeg/tar.gz/refs/tags/n7.1.1",
16
+ "sha256": "f117507dc501f2a6c11f9241d8d0c3213846cfad91764361af37befd6b6c523d"
17
+ },
18
+ {
19
+ "name": "zlib",
20
+ "upstream": "https://github.com/madler/zlib",
21
+ "revision": "v1.3.1",
22
+ "url": "https://codeload.github.com/madler/zlib/tar.gz/refs/tags/v1.3.1",
23
+ "sha256": "17e88863f3600672ab49182f217281b6fc4d3c762bde361935e436a95214d05c"
24
+ },
25
+ {
26
+ "name": "freetype",
27
+ "upstream": "https://github.com/freetype/freetype",
28
+ "revision": "VER-2-13-3",
29
+ "url": "https://codeload.github.com/freetype/freetype/tar.gz/refs/tags/VER-2-13-3",
30
+ "sha256": "bc5c898e4756d373e0d991bab053036c5eb2aa7c0d5c67e8662ddc6da40c4103"
31
+ },
32
+ {
33
+ "name": "harfbuzz",
34
+ "upstream": "https://github.com/harfbuzz/harfbuzz",
35
+ "revision": "10.4.0",
36
+ "url": "https://codeload.github.com/harfbuzz/harfbuzz/tar.gz/refs/tags/10.4.0",
37
+ "sha256": "0d25a3f74af4e8744700ac19050af5a80ae330378a5802a5cd71e523bb6fda1f"
38
+ },
39
+ {
40
+ "name": "fribidi",
41
+ "upstream": "https://github.com/fribidi/fribidi",
42
+ "revision": "v1.0.16",
43
+ "url": "https://codeload.github.com/fribidi/fribidi/tar.gz/refs/tags/v1.0.16",
44
+ "sha256": "5a1d187a33daa58fcee2ad77f0eb9d136dd6fa4096239199ba31e850d397e8a8"
45
+ },
46
+ {
47
+ "name": "libass",
48
+ "upstream": "https://github.com/libass/libass",
49
+ "revision": "0.17.3",
50
+ "url": "https://codeload.github.com/libass/libass/tar.gz/refs/tags/0.17.3",
51
+ "sha256": "26fbfb7a7bd3e6d5c713f8a65a12b36084d1dde6efaed8a9996489054c4aeca0"
52
+ },
53
+ {
54
+ "name": "libplacebo",
55
+ "upstream": "https://github.com/haasn/libplacebo",
56
+ "revision": "v7.349.0",
57
+ "url": "https://codeload.github.com/haasn/libplacebo/tar.gz/refs/tags/v7.349.0",
58
+ "sha256": "627e32439a0b3d2b90368ead7e919f470ee7446c87cc0f7841bbe319b23aa8b1"
59
+ },
60
+ {
61
+ "name": "emsdk",
62
+ "upstream": "https://github.com/emscripten-core/emsdk",
63
+ "revision": "4.0.14",
64
+ "url": "https://codeload.github.com/emscripten-core/emsdk/tar.gz/refs/tags/4.0.14",
65
+ "sha256": "24142f5506a99dab75b18ccecf2e3a23b4e243fa6fac1b6c20b2081bb4fbc8c5"
66
+ },
67
+ {
68
+ "name": "vulkan-headers",
69
+ "upstream": "https://github.com/KhronosGroup/Vulkan-Headers",
70
+ "revision": "d732b2de303ce505169011d438178191136bfb00",
71
+ "url": "https://codeload.github.com/KhronosGroup/Vulkan-Headers/tar.gz/d732b2de303ce505169011d438178191136bfb00",
72
+ "sha256": "570f9ae1e65466dbaf5fcab667abd079dd0a61c4ab86cf535efd492bf70a5b74"
73
+ },
74
+ {
75
+ "name": "libxml2",
76
+ "upstream": "https://github.com/GNOME/libxml2",
77
+ "revision": "v2.13.8",
78
+ "url": "https://codeload.github.com/GNOME/libxml2/tar.gz/refs/tags/v2.13.8",
79
+ "sha256": "f33a6353a80ccdb483abc3f895d4283f799b8ee9fae778da7a97b73604929138"
80
+ },
81
+ {
82
+ "name": "dav1d",
83
+ "upstream": "https://github.com/videolan/dav1d",
84
+ "revision": "1.5.1",
85
+ "url": "https://codeload.github.com/videolan/dav1d/tar.gz/refs/tags/1.5.1",
86
+ "sha256": "fa635e2bdb25147b1384007c83e15de44c589582bb3b9a53fc1579cb9d74b695"
87
+ },
88
+ {
89
+ "name": "zimg",
90
+ "upstream": "https://github.com/sekrit-twc/zimg",
91
+ "revision": "release-3.0.6",
92
+ "url": "https://codeload.github.com/sekrit-twc/zimg/tar.gz/refs/tags/release-3.0.6",
93
+ "sha256": "be89390f13a5c9b2388ce0f44a5e89364a20c1c57ce46d382b1fcc3967057577"
94
+ }
95
+ ]
96
+ }
@@ -0,0 +1,23 @@
1
+ Copyright © 2018-2019, VideoLAN and dav1d authors
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
18
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.