@remotion/media-parser 4.0.200 → 4.0.202
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.
- package/dist/av1-codec-string.d.ts +5 -0
- package/dist/av1-codec-string.js +18 -1
- package/dist/bitstream/av1.d.ts +2 -0
- package/dist/bitstream/av1.js +12 -0
- package/dist/boxes/iso-base-media/avcc-hvcc.d.ts +20 -0
- package/dist/boxes/iso-base-media/avcc-hvcc.js +73 -0
- package/dist/boxes/iso-base-media/avcc.d.ts +18 -0
- package/dist/boxes/iso-base-media/avcc.js +27 -0
- package/dist/boxes/iso-base-media/esds-descriptors.d.ts +21 -0
- package/dist/boxes/iso-base-media/esds-descriptors.js +62 -0
- package/dist/boxes/iso-base-media/esds.d.ts +15 -0
- package/dist/boxes/iso-base-media/esds.js +27 -0
- package/dist/boxes/iso-base-media/mdat/mdat.js +2 -1
- package/dist/boxes/iso-base-media/moov/moov.js +1 -0
- package/dist/boxes/iso-base-media/mvhd.js +2 -2
- package/dist/boxes/iso-base-media/process-box.d.ts +4 -2
- package/dist/boxes/iso-base-media/process-box.js +56 -40
- package/dist/boxes/iso-base-media/stsd/keys.js +1 -1
- package/dist/boxes/iso-base-media/stsd/mebx.d.ts +2 -1
- package/dist/boxes/iso-base-media/stsd/mebx.js +2 -1
- package/dist/boxes/iso-base-media/stsd/samples.js +3 -0
- package/dist/boxes/iso-base-media/stsd/stco.d.ts +3 -2
- package/dist/boxes/iso-base-media/stsd/stco.js +2 -2
- package/dist/boxes/iso-base-media/trak/trak.js +1 -0
- package/dist/boxes/webm/av1-codec-private.js +1 -1
- package/dist/boxes/webm/bitstream/av1.js +10 -1
- package/dist/boxes/webm/description.d.ts +2 -2
- package/dist/boxes/webm/description.js +2 -2
- package/dist/boxes/webm/ebml.d.ts +2 -2
- package/dist/boxes/webm/ebml.js +23 -1
- package/dist/boxes/webm/get-ready-tracks.d.ts +1 -1
- package/dist/boxes/webm/get-ready-tracks.js +3 -3
- package/dist/boxes/webm/get-sample-from-block.d.ts +17 -0
- package/dist/boxes/webm/get-sample-from-block.js +78 -0
- package/dist/boxes/webm/get-track.d.ts +2 -2
- package/dist/boxes/webm/get-track.js +26 -25
- package/dist/boxes/webm/make-header.d.ts +3 -1
- package/dist/boxes/webm/make-header.js +90 -32
- package/dist/boxes/webm/parse-ebml.d.ts +12 -0
- package/dist/boxes/webm/parse-ebml.js +175 -0
- package/dist/boxes/webm/parse-webm-header.js +8 -9
- package/dist/boxes/webm/segments/all-segments.d.ts +572 -1
- package/dist/boxes/webm/segments/all-segments.js +353 -2
- package/dist/boxes/webm/segments/track-entry.d.ts +5 -189
- package/dist/boxes/webm/segments/track-entry.js +2 -457
- package/dist/boxes/webm/segments.d.ts +3 -16
- package/dist/boxes/webm/segments.js +40 -219
- package/dist/boxes/webm/traversal.d.ts +5 -5
- package/dist/boxes/webm/traversal.js +17 -6
- package/dist/buffer-iterator.d.ts +10 -7
- package/dist/buffer-iterator.js +83 -7
- package/dist/create/create-media.d.ts +2 -0
- package/dist/create/create-media.js +36 -0
- package/dist/create/matroska-header.d.ts +1 -0
- package/dist/create/matroska-header.js +66 -0
- package/dist/create/matroska-info.d.ts +4 -0
- package/dist/create/matroska-info.js +39 -0
- package/dist/create/matroska-segment.d.ts +1 -0
- package/dist/create/matroska-segment.js +12 -0
- package/dist/create/matroska-trackentry.d.ts +21 -0
- package/dist/create/matroska-trackentry.js +191 -0
- package/dist/create-media.d.ts +1 -0
- package/dist/create-media.js +78 -0
- package/dist/from-fetch.js +13 -3
- package/dist/from-input-type-file.d.ts +2 -0
- package/dist/from-input-type-file.js +37 -0
- package/dist/from-node.js +9 -2
- package/dist/from-web-file.js +6 -1
- package/dist/from-web.js +15 -6
- package/dist/get-audio-codec.d.ts +2 -2
- package/dist/get-audio-codec.js +13 -13
- package/dist/get-codec.d.ts +4 -0
- package/dist/get-codec.js +22 -0
- package/dist/get-duration.js +12 -14
- package/dist/get-sample-positions.js +1 -1
- package/dist/get-tracks.js +2 -2
- package/dist/get-video-codec.js +13 -13
- package/dist/has-all-info.js +1 -1
- package/dist/options.d.ts +3 -2
- package/dist/parse-media.js +17 -10
- package/dist/parse-video.js +16 -0
- package/dist/parser-context.d.ts +1 -0
- package/dist/parser-state.d.ts +4 -3
- package/dist/parser-state.js +16 -3
- package/dist/reader.d.ts +1 -1
- package/dist/readers/from-fetch.d.ts +2 -0
- package/dist/readers/from-fetch.js +64 -0
- package/dist/readers/from-node.d.ts +2 -0
- package/dist/readers/from-node.js +40 -0
- package/dist/readers/from-web-file.d.ts +2 -0
- package/dist/readers/from-web-file.js +39 -0
- package/dist/readers/reader.d.ts +11 -0
- package/dist/readers/reader.js +2 -0
- package/dist/traversal.d.ts +19 -17
- package/dist/traversal.js +38 -39
- package/dist/web-file.d.ts +2 -0
- package/dist/web-file.js +37 -0
- package/dist/writers/web-fs.d.ts +2 -0
- package/dist/writers/web-fs.js +28 -0
- package/dist/writers/writer.d.ts +9 -0
- package/dist/writers/writer.js +2 -0
- package/input.webm +0 -0
- package/package.json +2 -2
- package/src/boxes/iso-base-media/mdat/mdat.ts +2 -1
- package/src/boxes/iso-base-media/moov/moov.ts +1 -0
- package/src/boxes/iso-base-media/mvhd.ts +2 -2
- package/src/boxes/iso-base-media/process-box.ts +70 -40
- package/src/boxes/iso-base-media/stsd/keys.ts +1 -1
- package/src/boxes/iso-base-media/stsd/mebx.ts +3 -0
- package/src/boxes/iso-base-media/stsd/samples.ts +3 -0
- package/src/boxes/iso-base-media/stsd/stco.ts +5 -3
- package/src/boxes/iso-base-media/trak/trak.ts +1 -0
- package/src/boxes/webm/av1-codec-private.ts +1 -1
- package/src/boxes/webm/description.ts +7 -4
- package/src/boxes/webm/ebml.ts +24 -4
- package/src/boxes/webm/get-ready-tracks.ts +4 -4
- package/src/boxes/webm/get-sample-from-block.ts +125 -0
- package/src/boxes/webm/get-track.ts +38 -31
- package/src/boxes/webm/make-header.ts +129 -32
- package/src/boxes/webm/parse-ebml.ts +247 -0
- package/src/boxes/webm/parse-webm-header.ts +8 -12
- package/src/boxes/webm/segments/all-segments.ts +539 -1
- package/src/boxes/webm/segments/track-entry.ts +5 -843
- package/src/boxes/webm/segments.ts +48 -435
- package/src/boxes/webm/traversal.ts +28 -15
- package/src/buffer-iterator.ts +104 -10
- package/src/from-fetch.ts +22 -3
- package/src/from-node.ts +18 -4
- package/src/from-web-file.ts +11 -1
- package/src/get-audio-codec.ts +14 -16
- package/src/get-duration.ts +15 -16
- package/src/get-sample-positions.ts +1 -1
- package/src/get-tracks.ts +2 -2
- package/src/get-video-codec.ts +13 -15
- package/src/has-all-info.ts +1 -1
- package/src/options.ts +3 -2
- package/src/parse-media.ts +20 -9
- package/src/parse-video.ts +17 -0
- package/src/parser-context.ts +1 -0
- package/src/parser-state.ts +22 -5
- package/src/reader.ts +1 -0
- package/src/test/create-matroska.test.ts +255 -7
- package/src/test/matroska.test.ts +311 -334
- package/src/test/mvhd.test.ts +1 -1
- package/src/test/parse-esds.test.ts +2 -2
- package/src/test/parse-stco.test.ts +4 -2
- package/src/test/parse-stsc.test.ts +2 -2
- package/src/test/parse-stsz.test.ts +2 -2
- package/src/test/parse-stts.test.ts +1 -1
- package/src/test/stream-local.test.ts +23 -9
- package/src/test/stream-remote.test.ts +23 -19
- package/src/test/stsd.test.ts +6 -2
- package/src/test/tkhd.test.ts +1 -1
- package/src/traversal.ts +62 -85
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/boxes/iso-base-media/ftype.d.ts +0 -9
- package/dist/boxes/iso-base-media/ftype.js +0 -31
- package/dist/get-video-metadata.d.ts +0 -2
- package/dist/get-video-metadata.js +0 -44
- package/dist/read-and-increment-offset.d.ts +0 -28
- package/dist/read-and-increment-offset.js +0 -177
- package/dist/understand-vorbis.d.ts +0 -1
- package/dist/understand-vorbis.js +0 -12
- package/src/boxes/webm/segments/duration.ts +0 -29
- package/src/boxes/webm/segments/info.ts +0 -34
- package/src/boxes/webm/segments/main.ts +0 -6
- package/src/boxes/webm/segments/muxing.ts +0 -18
- package/src/boxes/webm/segments/seek-head.ts +0 -34
- package/src/boxes/webm/segments/seek-position.ts +0 -18
- package/src/boxes/webm/segments/seek.ts +0 -45
- package/src/boxes/webm/segments/timestamp-scale.ts +0 -17
- package/src/boxes/webm/segments/tracks.ts +0 -32
- package/src/boxes/webm/segments/unknown.ts +0 -19
- package/src/boxes/webm/segments/void.ts +0 -18
- package/src/boxes/webm/segments/writing.ts +0 -18
- package/src/combine-uint8array.ts +0 -13
- /package/dist/{boxes/webm/bitstream/av1/frame.d.ts → get-samples.d.ts} +0 -0
- /package/dist/{boxes/webm/bitstream/av1/frame.js → get-samples.js} +0 -0
- /package/dist/{boxes/webm/bitstream/h264/get-h264-descriptor.d.ts → sample-aspect-ratio.d.ts} +0 -0
- /package/dist/{boxes/webm/bitstream/h264/get-h264-descriptor.js → sample-aspect-ratio.js} +0 -0
|
@@ -24,429 +24,406 @@ test('Should get duration of AV1 video', async () => {
|
|
|
24
24
|
|
|
25
25
|
expect(parsed.boxes).toEqual([
|
|
26
26
|
{
|
|
27
|
-
type: '
|
|
28
|
-
|
|
27
|
+
type: 'Header',
|
|
28
|
+
value: [
|
|
29
29
|
{
|
|
30
|
-
type: '
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
type: 'EBMLVersion',
|
|
31
|
+
value: {value: 1, byteLength: 1},
|
|
32
|
+
minVintWidth: 1,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
type: 'EBMLReadVersion',
|
|
36
|
+
value: {value: 1, byteLength: 1},
|
|
37
|
+
minVintWidth: 1,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
type: 'EBMLMaxIDLength',
|
|
41
|
+
value: {value: 4, byteLength: 1},
|
|
42
|
+
minVintWidth: 1,
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
type: 'EBMLMaxSizeLength',
|
|
46
|
+
value: {value: 8, byteLength: 1},
|
|
47
|
+
minVintWidth: 1,
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
type: 'DocType',
|
|
51
|
+
value: 'webm',
|
|
52
|
+
minVintWidth: 1,
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
type: 'DocTypeVersion',
|
|
56
|
+
value: {value: 2, byteLength: 1},
|
|
57
|
+
minVintWidth: 1,
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
type: 'DocTypeReadVersion',
|
|
61
|
+
value: {value: 2, byteLength: 1},
|
|
62
|
+
minVintWidth: 1,
|
|
63
|
+
},
|
|
64
|
+
],
|
|
65
|
+
minVintWidth: 1,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
type: 'Segment',
|
|
69
|
+
minVintWidth: 8,
|
|
70
|
+
value: [
|
|
71
|
+
{
|
|
72
|
+
type: 'SeekHead',
|
|
73
|
+
value: [
|
|
33
74
|
{
|
|
34
|
-
type: '
|
|
35
|
-
|
|
75
|
+
type: 'Seek',
|
|
76
|
+
value: [
|
|
36
77
|
{
|
|
37
|
-
type: '
|
|
38
|
-
|
|
78
|
+
type: 'SeekID',
|
|
79
|
+
value: '0x1549a966',
|
|
80
|
+
minVintWidth: 1,
|
|
39
81
|
},
|
|
40
82
|
{
|
|
41
|
-
type: '
|
|
42
|
-
|
|
83
|
+
type: 'SeekPosition',
|
|
84
|
+
value: {value: 161, byteLength: 1},
|
|
85
|
+
minVintWidth: 1,
|
|
43
86
|
},
|
|
44
87
|
],
|
|
88
|
+
minVintWidth: 1,
|
|
45
89
|
},
|
|
46
90
|
{
|
|
47
|
-
type: '
|
|
48
|
-
|
|
91
|
+
type: 'Seek',
|
|
92
|
+
value: [
|
|
49
93
|
{
|
|
50
|
-
type: '
|
|
51
|
-
|
|
94
|
+
type: 'SeekID',
|
|
95
|
+
value: '0x1654ae6b',
|
|
96
|
+
minVintWidth: 1,
|
|
52
97
|
},
|
|
53
98
|
{
|
|
54
|
-
type: '
|
|
55
|
-
|
|
99
|
+
type: 'SeekPosition',
|
|
100
|
+
value: {value: 214, byteLength: 1},
|
|
101
|
+
minVintWidth: 1,
|
|
56
102
|
},
|
|
57
103
|
],
|
|
104
|
+
minVintWidth: 1,
|
|
58
105
|
},
|
|
59
106
|
{
|
|
60
|
-
type: '
|
|
61
|
-
|
|
107
|
+
type: 'Seek',
|
|
108
|
+
value: [
|
|
62
109
|
{
|
|
63
|
-
type: '
|
|
64
|
-
|
|
110
|
+
type: 'SeekID',
|
|
111
|
+
value: '0x1254c367',
|
|
112
|
+
minVintWidth: 1,
|
|
65
113
|
},
|
|
66
114
|
{
|
|
67
|
-
type: '
|
|
68
|
-
|
|
115
|
+
type: 'SeekPosition',
|
|
116
|
+
value: {value: 322, byteLength: 2},
|
|
117
|
+
minVintWidth: 1,
|
|
69
118
|
},
|
|
70
119
|
],
|
|
120
|
+
minVintWidth: 1,
|
|
71
121
|
},
|
|
72
122
|
{
|
|
73
|
-
type: '
|
|
74
|
-
|
|
123
|
+
type: 'Seek',
|
|
124
|
+
value: [
|
|
75
125
|
{
|
|
76
|
-
type: '
|
|
77
|
-
|
|
126
|
+
type: 'SeekID',
|
|
127
|
+
value: '0x1c53bb6b',
|
|
128
|
+
minVintWidth: 1,
|
|
78
129
|
},
|
|
79
130
|
{
|
|
80
|
-
type: '
|
|
81
|
-
|
|
131
|
+
type: 'SeekPosition',
|
|
132
|
+
value: {value: 347329, byteLength: 3},
|
|
133
|
+
minVintWidth: 1,
|
|
82
134
|
},
|
|
83
135
|
],
|
|
136
|
+
minVintWidth: 1,
|
|
84
137
|
},
|
|
85
138
|
],
|
|
139
|
+
minVintWidth: 1,
|
|
86
140
|
},
|
|
87
141
|
{
|
|
88
|
-
type: '
|
|
89
|
-
|
|
142
|
+
type: 'Void',
|
|
143
|
+
value: new Uint8Array([
|
|
144
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
145
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
146
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
147
|
+
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
148
|
+
]),
|
|
149
|
+
minVintWidth: 8,
|
|
90
150
|
},
|
|
91
151
|
{
|
|
92
|
-
type: '
|
|
93
|
-
|
|
94
|
-
children: [
|
|
152
|
+
type: 'Info',
|
|
153
|
+
value: [
|
|
95
154
|
{
|
|
96
|
-
type: '
|
|
97
|
-
|
|
155
|
+
type: 'TimestampScale',
|
|
156
|
+
value: {value: 1000000, byteLength: 3},
|
|
157
|
+
minVintWidth: 1,
|
|
98
158
|
},
|
|
99
159
|
{
|
|
100
|
-
type: '
|
|
160
|
+
type: 'MuxingApp',
|
|
101
161
|
value: 'Lavf60.3.100',
|
|
162
|
+
minVintWidth: 1,
|
|
102
163
|
},
|
|
103
164
|
{
|
|
104
|
-
type: '
|
|
165
|
+
type: 'WritingApp',
|
|
105
166
|
value: 'Lavf60.3.100',
|
|
167
|
+
minVintWidth: 1,
|
|
106
168
|
},
|
|
107
169
|
{
|
|
108
|
-
type: '
|
|
109
|
-
|
|
170
|
+
type: 'Duration',
|
|
171
|
+
value: {
|
|
172
|
+
value: 1000,
|
|
173
|
+
size: '64',
|
|
174
|
+
},
|
|
175
|
+
minVintWidth: 1,
|
|
110
176
|
},
|
|
111
177
|
],
|
|
178
|
+
minVintWidth: 1,
|
|
112
179
|
},
|
|
113
180
|
{
|
|
114
|
-
type: '
|
|
115
|
-
|
|
181
|
+
type: 'Tracks',
|
|
182
|
+
value: [
|
|
116
183
|
{
|
|
117
|
-
type: '
|
|
118
|
-
|
|
184
|
+
type: 'TrackEntry',
|
|
185
|
+
value: [
|
|
119
186
|
{
|
|
120
|
-
type: '
|
|
121
|
-
|
|
187
|
+
type: 'TrackNumber',
|
|
188
|
+
value: {value: 1, byteLength: 1},
|
|
189
|
+
minVintWidth: 1,
|
|
122
190
|
},
|
|
123
191
|
{
|
|
124
|
-
type: '
|
|
125
|
-
|
|
192
|
+
type: 'TrackUID',
|
|
193
|
+
value: '0xab2171012bb9020a',
|
|
194
|
+
minVintWidth: 1,
|
|
126
195
|
},
|
|
127
196
|
{
|
|
128
|
-
type: '
|
|
129
|
-
|
|
197
|
+
type: 'FlagLacing',
|
|
198
|
+
value: {value: 0, byteLength: 1},
|
|
199
|
+
minVintWidth: 1,
|
|
130
200
|
},
|
|
131
201
|
{
|
|
132
|
-
type: '
|
|
133
|
-
|
|
202
|
+
type: 'Language',
|
|
203
|
+
value: 'und',
|
|
204
|
+
minVintWidth: 1,
|
|
134
205
|
},
|
|
135
206
|
{
|
|
136
|
-
type: '
|
|
137
|
-
|
|
207
|
+
type: 'CodecID',
|
|
208
|
+
value: 'V_AV1',
|
|
209
|
+
minVintWidth: 1,
|
|
138
210
|
},
|
|
139
211
|
{
|
|
140
|
-
type: '
|
|
141
|
-
|
|
212
|
+
type: 'TrackType',
|
|
213
|
+
value: {value: 1, byteLength: 1},
|
|
214
|
+
minVintWidth: 1,
|
|
142
215
|
},
|
|
143
216
|
{
|
|
144
|
-
type: '
|
|
145
|
-
|
|
217
|
+
type: 'DefaultDuration',
|
|
218
|
+
value: {value: 40000000, byteLength: 4},
|
|
219
|
+
minVintWidth: 1,
|
|
146
220
|
},
|
|
147
221
|
{
|
|
148
|
-
type: '
|
|
149
|
-
|
|
222
|
+
type: 'Video',
|
|
223
|
+
value: [
|
|
150
224
|
{
|
|
151
|
-
type: '
|
|
152
|
-
|
|
225
|
+
type: 'PixelWidth',
|
|
226
|
+
value: {value: 1920, byteLength: 2},
|
|
227
|
+
minVintWidth: 1,
|
|
153
228
|
},
|
|
154
229
|
{
|
|
155
|
-
type: '
|
|
156
|
-
|
|
230
|
+
type: 'PixelHeight',
|
|
231
|
+
value: {value: 1080, byteLength: 2},
|
|
232
|
+
minVintWidth: 1,
|
|
157
233
|
},
|
|
158
234
|
{
|
|
159
|
-
type: '
|
|
160
|
-
|
|
235
|
+
type: 'Colour',
|
|
236
|
+
value: new Uint8Array([
|
|
237
|
+
85, 186, 129, 1, 85, 177, 129, 1, 85, 187, 129, 1, 85,
|
|
238
|
+
185, 129, 1,
|
|
239
|
+
]),
|
|
240
|
+
minVintWidth: 1,
|
|
161
241
|
},
|
|
162
242
|
],
|
|
243
|
+
minVintWidth: 1,
|
|
163
244
|
},
|
|
164
245
|
{
|
|
165
|
-
type: '
|
|
166
|
-
|
|
246
|
+
type: 'CodecPrivate',
|
|
247
|
+
value: new Uint8Array([
|
|
167
248
|
129, 8, 12, 0, 10, 14, 0, 0, 0, 66, 171, 191, 195, 118, 0,
|
|
168
249
|
8, 8, 8, 8, 32,
|
|
169
250
|
]),
|
|
251
|
+
minVintWidth: 1,
|
|
170
252
|
},
|
|
171
253
|
],
|
|
254
|
+
minVintWidth: 8,
|
|
172
255
|
},
|
|
173
256
|
],
|
|
257
|
+
minVintWidth: 1,
|
|
174
258
|
},
|
|
175
259
|
{
|
|
176
|
-
type: '
|
|
177
|
-
|
|
178
|
-
{
|
|
179
|
-
type: '
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
260
|
+
type: 'Tags',
|
|
261
|
+
value: [
|
|
262
|
+
{
|
|
263
|
+
type: 'Tag',
|
|
264
|
+
value: new Uint8Array([
|
|
265
|
+
99, 192, 128, 103, 200, 153, 69, 163, 135, 69, 78, 67, 79, 68,
|
|
266
|
+
69, 82, 68, 135, 140, 76, 97, 118, 102, 54, 48, 46, 51, 46, 49,
|
|
267
|
+
48, 48,
|
|
268
|
+
]),
|
|
269
|
+
minVintWidth: 1,
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
type: 'Tag',
|
|
273
|
+
value: new Uint8Array([
|
|
274
|
+
99, 192, 139, 99, 197, 136, 171, 33, 113, 1, 43, 185, 2, 10,
|
|
275
|
+
103, 200, 162, 69, 163, 136, 68, 85, 82, 65, 84, 73, 79, 78, 68,
|
|
276
|
+
135, 148, 48, 48, 58, 48, 48, 58, 48, 49, 46, 48, 48, 48, 48,
|
|
277
|
+
48, 48, 48, 48, 48, 0, 0,
|
|
278
|
+
]),
|
|
279
|
+
minVintWidth: 1,
|
|
185
280
|
},
|
|
186
281
|
],
|
|
282
|
+
minVintWidth: 1,
|
|
187
283
|
},
|
|
188
284
|
{
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
type: '
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
type: '
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
type: '
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
type: '
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
},
|
|
235
|
-
{
|
|
236
|
-
type: '
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
type: '
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
type: '
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
type: '
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
},
|
|
275
|
-
{
|
|
276
|
-
type: '
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
type: '
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
type: '
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
type: '
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
type: '
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
timecode: 480,
|
|
320
|
-
keyframe: false,
|
|
321
|
-
lacing: 0,
|
|
322
|
-
invisible: false,
|
|
323
|
-
videoSample: null,
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
type: 'simple-block-or-block-segment',
|
|
327
|
-
length: 2046,
|
|
328
|
-
trackNumber: 1,
|
|
329
|
-
timecode: 520,
|
|
330
|
-
keyframe: false,
|
|
331
|
-
lacing: 0,
|
|
332
|
-
invisible: false,
|
|
333
|
-
videoSample: null,
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
type: 'simple-block-or-block-segment',
|
|
337
|
-
length: 1372,
|
|
338
|
-
trackNumber: 1,
|
|
339
|
-
timecode: 560,
|
|
340
|
-
keyframe: false,
|
|
341
|
-
lacing: 0,
|
|
342
|
-
invisible: false,
|
|
343
|
-
videoSample: null,
|
|
344
|
-
},
|
|
345
|
-
{
|
|
346
|
-
type: 'simple-block-or-block-segment',
|
|
347
|
-
length: 1441,
|
|
348
|
-
trackNumber: 1,
|
|
349
|
-
timecode: 600,
|
|
350
|
-
keyframe: false,
|
|
351
|
-
lacing: 0,
|
|
352
|
-
invisible: false,
|
|
353
|
-
videoSample: null,
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
type: 'simple-block-or-block-segment',
|
|
357
|
-
length: 2947,
|
|
358
|
-
trackNumber: 1,
|
|
359
|
-
timecode: 640,
|
|
360
|
-
keyframe: false,
|
|
361
|
-
lacing: 0,
|
|
362
|
-
invisible: false,
|
|
363
|
-
videoSample: null,
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
type: 'simple-block-or-block-segment',
|
|
367
|
-
length: 2652,
|
|
368
|
-
trackNumber: 1,
|
|
369
|
-
timecode: 680,
|
|
370
|
-
keyframe: false,
|
|
371
|
-
lacing: 0,
|
|
372
|
-
invisible: false,
|
|
373
|
-
videoSample: null,
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
type: 'simple-block-or-block-segment',
|
|
377
|
-
length: 4199,
|
|
378
|
-
trackNumber: 1,
|
|
379
|
-
timecode: 720,
|
|
380
|
-
keyframe: false,
|
|
381
|
-
lacing: 0,
|
|
382
|
-
invisible: false,
|
|
383
|
-
videoSample: null,
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
type: 'simple-block-or-block-segment',
|
|
387
|
-
length: 3998,
|
|
388
|
-
trackNumber: 1,
|
|
389
|
-
timecode: 760,
|
|
390
|
-
keyframe: false,
|
|
391
|
-
lacing: 0,
|
|
392
|
-
invisible: false,
|
|
393
|
-
videoSample: null,
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
type: 'simple-block-or-block-segment',
|
|
397
|
-
length: 6373,
|
|
398
|
-
trackNumber: 1,
|
|
399
|
-
timecode: 800,
|
|
400
|
-
keyframe: false,
|
|
401
|
-
lacing: 0,
|
|
402
|
-
invisible: false,
|
|
403
|
-
videoSample: null,
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
type: 'simple-block-or-block-segment',
|
|
407
|
-
length: 5955,
|
|
408
|
-
trackNumber: 1,
|
|
409
|
-
timecode: 840,
|
|
410
|
-
keyframe: false,
|
|
411
|
-
lacing: 0,
|
|
412
|
-
invisible: false,
|
|
413
|
-
videoSample: null,
|
|
414
|
-
},
|
|
415
|
-
{
|
|
416
|
-
type: 'simple-block-or-block-segment',
|
|
417
|
-
length: 7943,
|
|
418
|
-
trackNumber: 1,
|
|
419
|
-
timecode: 880,
|
|
420
|
-
keyframe: false,
|
|
421
|
-
lacing: 0,
|
|
422
|
-
invisible: false,
|
|
423
|
-
videoSample: null,
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
type: 'simple-block-or-block-segment',
|
|
427
|
-
length: 8241,
|
|
428
|
-
trackNumber: 1,
|
|
429
|
-
timecode: 920,
|
|
430
|
-
keyframe: false,
|
|
431
|
-
lacing: 0,
|
|
432
|
-
invisible: false,
|
|
433
|
-
videoSample: null,
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
type: 'simple-block-or-block-segment',
|
|
437
|
-
length: 9506,
|
|
438
|
-
trackNumber: 1,
|
|
439
|
-
timecode: 960,
|
|
440
|
-
keyframe: false,
|
|
441
|
-
lacing: 0,
|
|
442
|
-
invisible: false,
|
|
443
|
-
videoSample: null,
|
|
285
|
+
value: [
|
|
286
|
+
{
|
|
287
|
+
type: 'Timestamp',
|
|
288
|
+
value: {value: 0, byteLength: 1},
|
|
289
|
+
minVintWidth: 1,
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
type: 'Block',
|
|
293
|
+
value: new Uint8Array(),
|
|
294
|
+
minVintWidth: 3,
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
type: 'Block',
|
|
298
|
+
value: new Uint8Array(),
|
|
299
|
+
minVintWidth: 1,
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
type: 'Block',
|
|
303
|
+
value: new Uint8Array(),
|
|
304
|
+
minVintWidth: 2,
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
type: 'Block',
|
|
308
|
+
value: new Uint8Array(),
|
|
309
|
+
minVintWidth: 2,
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
type: 'Block',
|
|
313
|
+
value: new Uint8Array(),
|
|
314
|
+
minVintWidth: 2,
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
type: 'Block',
|
|
318
|
+
value: new Uint8Array(),
|
|
319
|
+
minVintWidth: 2,
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
type: 'Block',
|
|
323
|
+
value: new Uint8Array(),
|
|
324
|
+
minVintWidth: 2,
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
type: 'Block',
|
|
328
|
+
value: new Uint8Array(),
|
|
329
|
+
minVintWidth: 2,
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
type: 'Block',
|
|
333
|
+
value: new Uint8Array(),
|
|
334
|
+
minVintWidth: 2,
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
type: 'Block',
|
|
338
|
+
value: new Uint8Array(),
|
|
339
|
+
minVintWidth: 2,
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
type: 'Block',
|
|
343
|
+
value: new Uint8Array(),
|
|
344
|
+
minVintWidth: 2,
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
type: 'Block',
|
|
348
|
+
value: new Uint8Array(),
|
|
349
|
+
minVintWidth: 2,
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
type: 'Block',
|
|
353
|
+
value: new Uint8Array(),
|
|
354
|
+
minVintWidth: 2,
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
type: 'Block',
|
|
358
|
+
value: new Uint8Array(),
|
|
359
|
+
minVintWidth: 2,
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
type: 'Block',
|
|
363
|
+
value: new Uint8Array(),
|
|
364
|
+
minVintWidth: 2,
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
type: 'Block',
|
|
368
|
+
value: new Uint8Array(),
|
|
369
|
+
minVintWidth: 2,
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
type: 'Block',
|
|
373
|
+
value: new Uint8Array(),
|
|
374
|
+
minVintWidth: 2,
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
type: 'Block',
|
|
378
|
+
value: new Uint8Array(),
|
|
379
|
+
minVintWidth: 2,
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
type: 'Block',
|
|
383
|
+
value: new Uint8Array(),
|
|
384
|
+
minVintWidth: 2,
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
type: 'Block',
|
|
388
|
+
value: new Uint8Array(),
|
|
389
|
+
minVintWidth: 2,
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
type: 'Block',
|
|
393
|
+
value: new Uint8Array(),
|
|
394
|
+
minVintWidth: 2,
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
type: 'Block',
|
|
398
|
+
value: new Uint8Array(),
|
|
399
|
+
minVintWidth: 2,
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
type: 'Block',
|
|
403
|
+
value: new Uint8Array(),
|
|
404
|
+
minVintWidth: 2,
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
type: 'Block',
|
|
408
|
+
value: new Uint8Array(),
|
|
409
|
+
minVintWidth: 2,
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
type: 'Block',
|
|
413
|
+
value: new Uint8Array(),
|
|
414
|
+
minVintWidth: 2,
|
|
444
415
|
},
|
|
445
416
|
],
|
|
417
|
+
type: 'Cluster',
|
|
418
|
+
minVintWidth: 3,
|
|
446
419
|
},
|
|
447
420
|
{
|
|
448
|
-
|
|
449
|
-
|
|
421
|
+
type: 'Cues',
|
|
422
|
+
value: new Uint8Array([
|
|
423
|
+
187, 143, 179, 129, 0, 183, 138, 247, 129, 1, 241, 130, 1, 159, 240,
|
|
424
|
+
129, 3,
|
|
425
|
+
]),
|
|
426
|
+
minVintWidth: 1,
|
|
450
427
|
},
|
|
451
428
|
],
|
|
452
429
|
},
|