-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathWebMWriter.js
927 lines (788 loc) · 36.8 KB
/
WebMWriter.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
/**
* WebM video encoder for Google Chrome. This implementation is suitable for creating very large video files, because
* it can stream Blobs directly to a FileWriter without buffering the entire video in memory.
*
* When FileWriter is not available or not desired, it can buffer the video in memory as a series of Blobs which are
* eventually returned as one composite Blob.
*
* By Nicholas Sherlock.
*
* Based on the ideas from Whammy: https://github.com/antimatter15/whammy
*
* Released under the WTFPLv2 https://en.wikipedia.org/wiki/WTFPL
*/
"use strict";
(function() {
function extend(base, top) {
let
target = {};
[base, top].forEach(function(obj) {
for (let prop in obj) {
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
target[prop] = obj[prop];
}
}
});
return target;
}
/**
* Decode a Base64 data URL into a binary string.
*
* @return {String} The binary string
*/
function decodeBase64WebPDataURL(url) {
if (typeof url !== "string" || !url.match(/^data:image\/webp;base64,/i)) {
throw new Error("Failed to decode WebP Base64 URL");
}
return window.atob(url.substring("data:image\/webp;base64,".length));
}
/**
* Convert the given canvas to a WebP encoded image and return the image data as a string.
*
* @return {String}
*/
function renderAsWebP(canvas, quality) {
let
frame = typeof canvas === 'string' && /^data:image\/webp/.test(canvas)
? canvas
: canvas.toDataURL('image/webp', quality);
return decodeBase64WebPDataURL(frame);
}
/**
* @param {String} string
* @returns {number}
*/
function byteStringToUint32LE(string) {
let
a = string.charCodeAt(0),
b = string.charCodeAt(1),
c = string.charCodeAt(2),
d = string.charCodeAt(3);
return (a | (b << 8) | (c << 16) | (d << 24)) >>> 0;
}
/**
* Extract a VP8 keyframe from a WebP image file.
*
* @param {String} webP - Raw binary string
*
* @returns {{hasAlpha: boolean, frame: string}}
*/
function extractKeyframeFromWebP(webP) {
let
cursor = webP.indexOf('VP8', 12); // Start the search after the 12-byte file header
if (cursor === -1) {
throw new Error("Bad image format, does this browser support WebP?");
}
let
hasAlpha = false;
/* Cursor now is either directly pointing at a "VP8 " keyframe, or a "VP8X" extended format file header
* Seek through chunks until we find the "VP8 " chunk we're interested in
*/
while (cursor < webP.length - 8) {
let
chunkLength, fourCC;
fourCC = webP.substring(cursor, cursor + 4);
cursor += 4;
chunkLength = byteStringToUint32LE(webP.substring(cursor, cursor + 4));
cursor += 4;
switch (fourCC) {
case "VP8 ":
return {
frame: webP.substring(cursor, cursor + chunkLength),
hasAlpha: hasAlpha
};
case "ALPH":
hasAlpha = true;
/* But we otherwise ignore the content of the alpha chunk, since we don't have a decoder for it
* and it isn't VP8-compatible
*/
break;
}
cursor += chunkLength;
if ((chunkLength & 0x01) !== 0) {
cursor++;
// Odd-length chunks have 1 byte of trailing padding that isn't included in their length
}
}
throw new Error("Failed to find VP8 keyframe in WebP image, is this image mistakenly encoded in the Lossless WebP format?");
}
// Just a little utility so we can tag values as floats for the EBML encoder's benefit
function EBMLFloat32(value) {
this.value = value;
}
function EBMLFloat64(value) {
this.value = value;
}
/**
* Write the given EBML object to the provided ArrayBufferStream.
*
* @param buffer
* @param {Number} bufferFileOffset - The buffer's first byte is at this position inside the video file.
* This is used to complete offset and dataOffset fields in each EBML structure,
* indicating the file offset of the first byte of the EBML element and
* its data payload.
* @param {*} ebml
*/
function writeEBML(buffer, bufferFileOffset, ebml) {
// Is the ebml an array of sibling elements?
if (Array.isArray(ebml)) {
for (let i = 0; i < ebml.length; i++) {
writeEBML(buffer, bufferFileOffset, ebml[i]);
}
// Is this some sort of raw data that we want to write directly?
} else if (typeof ebml === "string") {
buffer.writeString(ebml);
} else if (ebml instanceof Uint8Array) {
buffer.writeBytes(ebml);
} else if (ebml.id){
// We're writing an EBML element
ebml.offset = buffer.pos + bufferFileOffset;
buffer.writeUnsignedIntBE(ebml.id); // ID field
// Now we need to write the size field, so we must know the payload size:
if (Array.isArray(ebml.data)) {
// Writing an array of child elements. We won't try to measure the size of the children up-front
let
sizePos, dataBegin, dataEnd;
if (ebml.size === -1) {
// Write the reserved all-one-bits marker to note that the size of this element is unknown/unbounded
buffer.writeByte(0xFF);
} else {
sizePos = buffer.pos;
/* Write a dummy size field to overwrite later. 4 bytes allows an element maximum size of 256MB,
* which should be plenty (we don't want to have to buffer that much data in memory at one time
* anyway!)
*/
buffer.writeBytes([0, 0, 0, 0]);
}
dataBegin = buffer.pos;
ebml.dataOffset = dataBegin + bufferFileOffset;
writeEBML(buffer, bufferFileOffset, ebml.data);
if (ebml.size !== -1) {
dataEnd = buffer.pos;
ebml.size = dataEnd - dataBegin;
buffer.seek(sizePos);
buffer.writeEBMLVarIntWidth(ebml.size, 4); // Size field
buffer.seek(dataEnd);
}
} else if (typeof ebml.data === "string") {
buffer.writeEBMLVarInt(ebml.data.length); // Size field
ebml.dataOffset = buffer.pos + bufferFileOffset;
buffer.writeString(ebml.data);
} else if (typeof ebml.data === "number") {
// Allow the caller to explicitly choose the size if they wish by supplying a size field
if (!ebml.size) {
ebml.size = buffer.measureUnsignedInt(ebml.data);
}
buffer.writeEBMLVarInt(ebml.size); // Size field
ebml.dataOffset = buffer.pos + bufferFileOffset;
buffer.writeUnsignedIntBE(ebml.data, ebml.size);
} else if (ebml.data instanceof EBMLFloat64) {
buffer.writeEBMLVarInt(8); // Size field
ebml.dataOffset = buffer.pos + bufferFileOffset;
buffer.writeDoubleBE(ebml.data.value);
} else if (ebml.data instanceof EBMLFloat32) {
buffer.writeEBMLVarInt(4); // Size field
ebml.dataOffset = buffer.pos + bufferFileOffset;
buffer.writeFloatBE(ebml.data.value);
} else if (ebml.data instanceof Uint8Array) {
buffer.writeEBMLVarInt(ebml.data.byteLength); // Size field
ebml.dataOffset = buffer.pos + bufferFileOffset;
buffer.writeBytes(ebml.data);
} else {
throw new Error("Bad EBML datatype " + typeof ebml.data);
}
} else {
throw new Error("Bad EBML datatype " + typeof ebml.data);
}
}
/**
* @typedef {Object} Frame
* @property {string} frame - Raw VP8 keyframe data
* @property {string} alpha - Raw VP8 keyframe with alpha represented as luminance
* @property {Number} duration
* @property {Number} trackNumber - From 1 to 126 (inclusive)
* @property {Number} timecode
*/
/**
* @typedef {Object} Cluster
* @property {Number} timecode - Start time for the cluster
*/
/**
* @param ArrayBufferDataStream - Imported library
* @param BlobBuffer - Imported library
*
* @returns WebMWriter
*
* @constructor
*/
let WebMWriter = function(ArrayBufferDataStream, BlobBuffer) {
return function(options) {
let
MAX_CLUSTER_DURATION_MSEC = 5000,
DEFAULT_TRACK_NUMBER = 1,
writtenHeader = false,
videoWidth = 0, videoHeight = 0,
/**
* @type {[HTMLCanvasElement]}
*/
alphaBuffer = null,
/**
* @type {[CanvasRenderingContext2D]}
*/
alphaBufferContext = null,
/**
* @type {[ImageData]}
*/
alphaBufferData = null,
/**
*
* @type {Frame[]}
*/
clusterFrameBuffer = [],
clusterStartTime = 0,
clusterDuration = 0,
optionDefaults = {
quality: 0.95, // WebM image quality from 0.0 (worst) to 0.99999 (best), 1.00 (WebP lossless) is not supported
transparent: false, // True if an alpha channel should be included in the video
alphaQuality: undefined, // Allows you to set the quality level of the alpha channel separately.
// If not specified this defaults to the same value as `quality`.
fileWriter: null, // Chrome FileWriter in order to stream to a file instead of buffering to memory (optional)
fd: null, // Node.JS file descriptor to write to instead of buffering (optional)
// You must supply one of:
frameDuration: null, // Duration of frames in milliseconds
frameRate: null, // Number of frames per second
},
seekPoints = {
Cues: {id: new Uint8Array([0x1C, 0x53, 0xBB, 0x6B]), positionEBML: null},
SegmentInfo: {id: new Uint8Array([0x15, 0x49, 0xA9, 0x66]), positionEBML: null},
Tracks: {id: new Uint8Array([0x16, 0x54, 0xAE, 0x6B]), positionEBML: null},
},
ebmlSegment, // Root element of the EBML document
segmentDuration = {
"id": 0x4489, // Duration
"data": new EBMLFloat64(0)
},
seekHead,
cues = [],
blobBuffer = new BlobBuffer(options.fileWriter || options.fd);
function fileOffsetToSegmentRelative(fileOffset) {
return fileOffset - ebmlSegment.dataOffset;
}
/**
* Extracts the transparency channel from the supplied canvas and uses it to create a VP8 alpha channel bitstream.
*
* @param {HTMLCanvasElement} source
*
* @return {HTMLCanvasElement}
*/
function convertAlphaToGrayscaleImage(source) {
if (alphaBuffer === null || alphaBuffer.width !== source.width || alphaBuffer.height !== source.height) {
alphaBuffer = document.createElement("canvas");
alphaBuffer.width = source.width;
alphaBuffer.height = source.height;
alphaBufferContext = alphaBuffer.getContext("2d");
alphaBufferData = alphaBufferContext.createImageData(alphaBuffer.width, alphaBuffer.height);
}
let
sourceContext = source.getContext("2d"),
sourceData = sourceContext.getImageData(0, 0, source.width, source.height).data,
destData = alphaBufferData.data,
dstCursor = 0,
srcEnd = source.width * source.height * 4;
for (let srcCursor = 3 /* Since pixel byte order is RGBA */; srcCursor < srcEnd; srcCursor += 4) {
let
alpha = sourceData[srcCursor];
// Turn the original alpha channel into a brightness value (ends up being the Y in YUV)
destData[dstCursor++] = alpha;
destData[dstCursor++] = alpha;
destData[dstCursor++] = alpha;
destData[dstCursor++] = 255;
}
alphaBufferContext.putImageData(alphaBufferData, 0, 0);
return alphaBuffer;
}
/**
* Create a SeekHead element with descriptors for the points in the global seekPoints array.
*
* 5 bytes of position values are reserved for each node, which lie at the offset point.positionEBML.dataOffset,
* to be overwritten later.
*/
function createSeekHead() {
let
seekPositionEBMLTemplate = {
"id": 0x53AC, // SeekPosition
"size": 5, // Allows for 32GB video files
"data": 0 // We'll overwrite this when the file is complete
},
result = {
"id": 0x114D9B74, // SeekHead
"data": []
};
for (let name in seekPoints) {
let
seekPoint = seekPoints[name];
seekPoint.positionEBML = Object.create(seekPositionEBMLTemplate);
result.data.push({
"id": 0x4DBB, // Seek
"data": [
{
"id": 0x53AB, // SeekID
"data": seekPoint.id
},
seekPoint.positionEBML
]
});
}
return result;
}
/**
* Write the WebM file header to the stream.
*/
function writeHeader() {
seekHead = createSeekHead();
let
ebmlHeader = {
"id": 0x1a45dfa3, // EBML
"data": [
{
"id": 0x4286, // EBMLVersion
"data": 1
},
{
"id": 0x42f7, // EBMLReadVersion
"data": 1
},
{
"id": 0x42f2, // EBMLMaxIDLength
"data": 4
},
{
"id": 0x42f3, // EBMLMaxSizeLength
"data": 8
},
{
"id": 0x4282, // DocType
"data": "webm"
},
{
"id": 0x4287, // DocTypeVersion
"data": 2
},
{
"id": 0x4285, // DocTypeReadVersion
"data": 2
}
]
},
segmentInfo = {
"id": 0x1549a966, // Info
"data": [
{
"id": 0x2ad7b1, // TimecodeScale
"data": 1e6 // Times will be in miliseconds (1e6 nanoseconds per step = 1ms)
},
{
"id": 0x4d80, // MuxingApp
"data": "webm-writer-js",
},
{
"id": 0x5741, // WritingApp
"data": "webm-writer-js"
},
segmentDuration // To be filled in later
]
},
videoProperties = [
{
"id": 0xb0, // PixelWidth
"data": videoWidth
},
{
"id": 0xba, // PixelHeight
"data": videoHeight
}
];
if (options.transparent) {
videoProperties.push(
{
"id": 0x53C0, // AlphaMode
"data": 1
}
);
}
let
tracks = {
"id": 0x1654ae6b, // Tracks
"data": [
{
"id": 0xae, // TrackEntry
"data": [
{
"id": 0xd7, // TrackNumber
"data": DEFAULT_TRACK_NUMBER
},
{
"id": 0x73c5, // TrackUID
"data": DEFAULT_TRACK_NUMBER
},
{
"id": 0x9c, // FlagLacing
"data": 0
},
{
"id": 0x22b59c, // Language
"data": "und"
},
{
"id": 0x86, // CodecID
"data": "V_VP8"
},
{
"id": 0x258688, // CodecName
"data": "VP8"
},
{
"id": 0x83, // TrackType
"data": 1
},
{
"id": 0xe0, // Video
"data": videoProperties
}
]
}
]
};
ebmlSegment = {
"id": 0x18538067, // Segment
"size": -1, // Unbounded size
"data": [
seekHead,
segmentInfo,
tracks,
]
};
let
bufferStream = new ArrayBufferDataStream(256);
writeEBML(bufferStream, blobBuffer.pos, [ebmlHeader, ebmlSegment]);
blobBuffer.write(bufferStream.getAsDataArray());
// Now we know where these top-level elements lie in the file:
seekPoints.SegmentInfo.positionEBML.data = fileOffsetToSegmentRelative(segmentInfo.offset);
seekPoints.Tracks.positionEBML.data = fileOffsetToSegmentRelative(tracks.offset);
writtenHeader = true;
}
/**
* Create a BlockGroup element to hold the given keyframe (used when alpha support is required)
*
* @param {Frame} keyframe
*
* @return A BlockGroup EBML element
*/
function createBlockGroupForTransparentKeyframe(keyframe) {
let
block, blockAdditions,
bufferStream = new ArrayBufferDataStream(1 + 2 + 1);
// Create a Block to hold the image data:
if (!(keyframe.trackNumber > 0 && keyframe.trackNumber < 127)) {
throw new Error("TrackNumber must be > 0 and < 127");
}
bufferStream.writeEBMLVarInt(keyframe.trackNumber); // Always 1 byte since we limit the range of trackNumber
bufferStream.writeU16BE(keyframe.timecode);
bufferStream.writeByte(0); // Flags byte
block = {
"id": 0xA1, // Block
"data": [
bufferStream.getAsDataArray(),
keyframe.frame
]
};
blockAdditions = {
"id": 0x75A1, // BlockAdditions
"data": [
{
"id": 0xA6, // BlockMore
"data": [
{
"id": 0xEE, // BlockAddID
"data": 1 // Means "BlockAdditional has a codec-defined meaning, pass it to the codec"
},
{
"id": 0xA5, // BlockAdditional
"data": keyframe.alpha // The actual alpha channel image
}
]
}
]
};
return {
"id": 0xA0, // BlockGroup
"data": [
block,
blockAdditions
]
};
}
/**
* Create a SimpleBlock element to hold the given keyframe.
*
* @param {Frame} keyframe
*
* @return A SimpleBlock EBML element.
*/
function createSimpleBlockForKeyframe(keyframe) {
let
bufferStream = new ArrayBufferDataStream(1 + 2 + 1);
if (!(keyframe.trackNumber > 0 && keyframe.trackNumber < 127)) {
throw new Error("TrackNumber must be > 0 and < 127");
}
bufferStream.writeEBMLVarInt(keyframe.trackNumber); // Always 1 byte since we limit the range of trackNumber
bufferStream.writeU16BE(keyframe.timecode);
// Flags byte
bufferStream.writeByte(
1 << 7 // Keyframe
);
return {
"id": 0xA3, // SimpleBlock
"data": [
bufferStream.getAsDataArray(),
keyframe.frame
]
};
}
/**
* Create either a SimpleBlock or BlockGroup (if alpha is required) for the given keyframe.
*
* @param {Frame} keyframe
*/
function createContainerForKeyframe(keyframe) {
if (keyframe.alpha) {
return createBlockGroupForTransparentKeyframe(keyframe);
}
return createSimpleBlockForKeyframe(keyframe);
}
/**
* Create a Cluster EBML node.
*
* @param {Cluster} cluster
*
* Returns an EBML element.
*/
function createCluster(cluster) {
return {
"id": 0x1f43b675,
"data": [
{
"id": 0xe7, // Timecode
"data": Math.round(cluster.timecode)
}
]
};
}
function addCuePoint(trackIndex, clusterTime, clusterFileOffset) {
cues.push({
"id": 0xBB, // Cue
"data": [
{
"id": 0xB3, // CueTime
"data": clusterTime
},
{
"id": 0xB7, // CueTrackPositions
"data": [
{
"id": 0xF7, // CueTrack
"data": trackIndex
},
{
"id": 0xF1, // CueClusterPosition
"data": fileOffsetToSegmentRelative(clusterFileOffset)
}
]
}
]
});
}
/**
* Write a Cues element to the blobStream using the global `cues` array of CuePoints (use addCuePoint()).
* The seek entry for the Cues in the SeekHead is updated.
*/
function writeCues() {
let
ebml = {
"id": 0x1C53BB6B,
"data": cues
},
cuesBuffer = new ArrayBufferDataStream(16 + cues.length * 32); // Pretty crude estimate of the buffer size we'll need
writeEBML(cuesBuffer, blobBuffer.pos, ebml);
blobBuffer.write(cuesBuffer.getAsDataArray());
// Now we know where the Cues element has ended up, we can update the SeekHead
seekPoints.Cues.positionEBML.data = fileOffsetToSegmentRelative(ebml.offset);
}
/**
* Flush the frames in the current clusterFrameBuffer out to the stream as a Cluster.
*/
function flushClusterFrameBuffer() {
if (clusterFrameBuffer.length === 0) {
return;
}
// First work out how large of a buffer we need to hold the cluster data
let
rawImageSize = 0;
for (let i = 0; i < clusterFrameBuffer.length; i++) {
rawImageSize += clusterFrameBuffer[i].frame.length + (clusterFrameBuffer[i].alpha ? clusterFrameBuffer[i].alpha.length : 0);
}
let
buffer = new ArrayBufferDataStream(rawImageSize + clusterFrameBuffer.length * 64), // Estimate 64 bytes per block header
cluster = createCluster({
timecode: Math.round(clusterStartTime),
});
for (let i = 0; i < clusterFrameBuffer.length; i++) {
cluster.data.push(createContainerForKeyframe(clusterFrameBuffer[i]));
}
writeEBML(buffer, blobBuffer.pos, cluster);
blobBuffer.write(buffer.getAsDataArray());
addCuePoint(DEFAULT_TRACK_NUMBER, Math.round(clusterStartTime), cluster.offset);
clusterFrameBuffer = [];
clusterStartTime += clusterDuration;
clusterDuration = 0;
}
function validateOptions() {
// Derive frameDuration setting if not already supplied
if (!options.frameDuration) {
if (options.frameRate) {
options.frameDuration = 1000 / options.frameRate;
} else {
throw new Error("Missing required frameDuration or frameRate setting");
}
}
// Avoid 1.0 (lossless) because it creates VP8L lossless frames that WebM doesn't support
options.quality = Math.max(Math.min(options.quality, 0.99999), 0);
if (options.alphaQuality === undefined) {
options.alphaQuality = options.quality;
} else {
options.alphaQuality = Math.max(Math.min(options.alphaQuality, 0.99999), 0);
}
}
/**
*
* @param {Frame} frame
*/
function addFrameToCluster(frame) {
frame.trackNumber = DEFAULT_TRACK_NUMBER;
// Frame timecodes are relative to the start of their cluster:
frame.timecode = Math.round(clusterDuration);
clusterFrameBuffer.push(frame);
clusterDuration += frame.duration;
if (clusterDuration >= MAX_CLUSTER_DURATION_MSEC) {
flushClusterFrameBuffer();
}
}
/**
* Rewrites the SeekHead element that was initially written to the stream with the offsets of top level elements.
*
* Call once writing is complete (so the offset of all top level elements is known).
*/
function rewriteSeekHead() {
let
seekHeadBuffer = new ArrayBufferDataStream(seekHead.size),
oldPos = blobBuffer.pos;
// Write the rewritten SeekHead element's data payload to the stream (don't need to update the id or size)
writeEBML(seekHeadBuffer, seekHead.dataOffset, seekHead.data);
// And write that through to the file
blobBuffer.seek(seekHead.dataOffset);
blobBuffer.write(seekHeadBuffer.getAsDataArray());
blobBuffer.seek(oldPos);
}
/**
* Rewrite the Duration field of the Segment with the newly-discovered video duration.
*/
function rewriteDuration() {
let
buffer = new ArrayBufferDataStream(8),
oldPos = blobBuffer.pos;
// Rewrite the data payload (don't need to update the id or size)
buffer.writeDoubleBE(clusterStartTime);
// And write that through to the file
blobBuffer.seek(segmentDuration.dataOffset);
blobBuffer.write(buffer.getAsDataArray());
blobBuffer.seek(oldPos);
}
/**
* Add a frame to the video.
*
* @param {HTMLCanvasElement|String} frame - A Canvas element that contains the frame, or a WebP string
* you obtained by calling toDataUrl() on an image yourself.
*
* @param {HTMLCanvasElement|String} [alpha] - For transparent video, instead of including the alpha channel
* in your provided `frame`, you can instead provide it separately
* here. The alpha channel of this alpha canvas will be ignored,
* encode your alpha information into this canvas' grayscale
* brightness instead.
*
* This is useful because it allows you to paint the colours
* you need into your `frame` even in regions which are fully
* transparent (which Canvas doesn't normally let you influence).
* This allows you to control the colour of the fringing seen
* around objects on transparent backgrounds.
*
* @param {Number} [overrideFrameDuration] - Set a duration for this frame (in milliseconds) that differs
* from the default
*/
this.addFrame = function(frame, alpha, overrideFrameDuration) {
if (!writtenHeader) {
videoWidth = frame.width || 0;
videoHeight = frame.height || 0;
writeHeader();
}
let
keyframe = extractKeyframeFromWebP(renderAsWebP(frame, options.quality)),
frameDuration, frameAlpha = null;
if (overrideFrameDuration) {
frameDuration = overrideFrameDuration;
} else if (typeof alpha == "number") {
frameDuration = alpha;
} else {
frameDuration = options.frameDuration;
}
if (options.transparent) {
if (alpha instanceof HTMLCanvasElement || typeof alpha === "string") {
frameAlpha = alpha;
} else if (keyframe.hasAlpha) {
frameAlpha = convertAlphaToGrayscaleImage(frame);
}
}
addFrameToCluster({
frame: keyframe.frame,
duration: frameDuration,
alpha: frameAlpha ? extractKeyframeFromWebP(renderAsWebP(frameAlpha, options.alphaQuality)).frame : null
});
};
/**
* Finish writing the video and return a Promise to signal completion.
*
* If the destination device was memory (i.e. options.fileWriter was not supplied), the Promise is resolved with
* a Blob with the contents of the entire video.
*/
this.complete = function() {
if (!writtenHeader) {
writeHeader();
}
flushClusterFrameBuffer();
writeCues();
rewriteSeekHead();
rewriteDuration();
return blobBuffer.complete('video/webm');
};
this.getWrittenSize = function() {
return blobBuffer.length;
};
options = extend(optionDefaults, options || {});
validateOptions();
};
};
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = WebMWriter(require("./ArrayBufferDataStream"), require("./BlobBuffer"));
} else {
window.WebMWriter = WebMWriter(window.ArrayBufferDataStream, window.BlobBuffer);
}
})();