mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
Also check the lang in case insensitive
This commit is contained in:
parent
33e7f7384e
commit
2a9630258f
22658 changed files with 3562773 additions and 3562767 deletions
262
node_modules/mux.js/lib/aac/index.js
generated
vendored
262
node_modules/mux.js/lib/aac/index.js
generated
vendored
|
@ -1,131 +1,131 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* A stream-based aac to mp4 converter. This utility can be used to
|
||||
* deliver mp4s to a SourceBuffer on platforms that support native
|
||||
* Media Source Extensions.
|
||||
*/
|
||||
'use strict';
|
||||
var Stream = require('../utils/stream.js');
|
||||
var aacUtils = require('./utils');
|
||||
|
||||
// Constants
|
||||
var AacStream;
|
||||
|
||||
/**
|
||||
* Splits an incoming stream of binary data into ADTS and ID3 Frames.
|
||||
*/
|
||||
|
||||
AacStream = function() {
|
||||
var
|
||||
everything = new Uint8Array(),
|
||||
timeStamp = 0;
|
||||
|
||||
AacStream.prototype.init.call(this);
|
||||
|
||||
this.setTimestamp = function(timestamp) {
|
||||
timeStamp = timestamp;
|
||||
};
|
||||
|
||||
this.push = function(bytes) {
|
||||
var
|
||||
frameSize = 0,
|
||||
byteIndex = 0,
|
||||
bytesLeft,
|
||||
chunk,
|
||||
packet,
|
||||
tempLength;
|
||||
|
||||
// If there are bytes remaining from the last segment, prepend them to the
|
||||
// bytes that were pushed in
|
||||
if (everything.length) {
|
||||
tempLength = everything.length;
|
||||
everything = new Uint8Array(bytes.byteLength + tempLength);
|
||||
everything.set(everything.subarray(0, tempLength));
|
||||
everything.set(bytes, tempLength);
|
||||
} else {
|
||||
everything = bytes;
|
||||
}
|
||||
|
||||
while (everything.length - byteIndex >= 3) {
|
||||
if ((everything[byteIndex] === 'I'.charCodeAt(0)) &&
|
||||
(everything[byteIndex + 1] === 'D'.charCodeAt(0)) &&
|
||||
(everything[byteIndex + 2] === '3'.charCodeAt(0))) {
|
||||
|
||||
// Exit early because we don't have enough to parse
|
||||
// the ID3 tag header
|
||||
if (everything.length - byteIndex < 10) {
|
||||
break;
|
||||
}
|
||||
|
||||
// check framesize
|
||||
frameSize = aacUtils.parseId3TagSize(everything, byteIndex);
|
||||
|
||||
// Exit early if we don't have enough in the buffer
|
||||
// to emit a full packet
|
||||
// Add to byteIndex to support multiple ID3 tags in sequence
|
||||
if (byteIndex + frameSize > everything.length) {
|
||||
break;
|
||||
}
|
||||
chunk = {
|
||||
type: 'timed-metadata',
|
||||
data: everything.subarray(byteIndex, byteIndex + frameSize)
|
||||
};
|
||||
this.trigger('data', chunk);
|
||||
byteIndex += frameSize;
|
||||
continue;
|
||||
} else if (((everything[byteIndex] & 0xff) === 0xff) &&
|
||||
((everything[byteIndex + 1] & 0xf0) === 0xf0)) {
|
||||
|
||||
// Exit early because we don't have enough to parse
|
||||
// the ADTS frame header
|
||||
if (everything.length - byteIndex < 7) {
|
||||
break;
|
||||
}
|
||||
|
||||
frameSize = aacUtils.parseAdtsSize(everything, byteIndex);
|
||||
|
||||
// Exit early if we don't have enough in the buffer
|
||||
// to emit a full packet
|
||||
if (byteIndex + frameSize > everything.length) {
|
||||
break;
|
||||
}
|
||||
|
||||
packet = {
|
||||
type: 'audio',
|
||||
data: everything.subarray(byteIndex, byteIndex + frameSize),
|
||||
pts: timeStamp,
|
||||
dts: timeStamp
|
||||
};
|
||||
this.trigger('data', packet);
|
||||
byteIndex += frameSize;
|
||||
continue;
|
||||
}
|
||||
byteIndex++;
|
||||
}
|
||||
bytesLeft = everything.length - byteIndex;
|
||||
|
||||
if (bytesLeft > 0) {
|
||||
everything = everything.subarray(byteIndex);
|
||||
} else {
|
||||
everything = new Uint8Array();
|
||||
}
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
everything = new Uint8Array();
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
everything = new Uint8Array();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
|
||||
AacStream.prototype = new Stream();
|
||||
|
||||
module.exports = AacStream;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* A stream-based aac to mp4 converter. This utility can be used to
|
||||
* deliver mp4s to a SourceBuffer on platforms that support native
|
||||
* Media Source Extensions.
|
||||
*/
|
||||
'use strict';
|
||||
var Stream = require('../utils/stream.js');
|
||||
var aacUtils = require('./utils');
|
||||
|
||||
// Constants
|
||||
var AacStream;
|
||||
|
||||
/**
|
||||
* Splits an incoming stream of binary data into ADTS and ID3 Frames.
|
||||
*/
|
||||
|
||||
AacStream = function() {
|
||||
var
|
||||
everything = new Uint8Array(),
|
||||
timeStamp = 0;
|
||||
|
||||
AacStream.prototype.init.call(this);
|
||||
|
||||
this.setTimestamp = function(timestamp) {
|
||||
timeStamp = timestamp;
|
||||
};
|
||||
|
||||
this.push = function(bytes) {
|
||||
var
|
||||
frameSize = 0,
|
||||
byteIndex = 0,
|
||||
bytesLeft,
|
||||
chunk,
|
||||
packet,
|
||||
tempLength;
|
||||
|
||||
// If there are bytes remaining from the last segment, prepend them to the
|
||||
// bytes that were pushed in
|
||||
if (everything.length) {
|
||||
tempLength = everything.length;
|
||||
everything = new Uint8Array(bytes.byteLength + tempLength);
|
||||
everything.set(everything.subarray(0, tempLength));
|
||||
everything.set(bytes, tempLength);
|
||||
} else {
|
||||
everything = bytes;
|
||||
}
|
||||
|
||||
while (everything.length - byteIndex >= 3) {
|
||||
if ((everything[byteIndex] === 'I'.charCodeAt(0)) &&
|
||||
(everything[byteIndex + 1] === 'D'.charCodeAt(0)) &&
|
||||
(everything[byteIndex + 2] === '3'.charCodeAt(0))) {
|
||||
|
||||
// Exit early because we don't have enough to parse
|
||||
// the ID3 tag header
|
||||
if (everything.length - byteIndex < 10) {
|
||||
break;
|
||||
}
|
||||
|
||||
// check framesize
|
||||
frameSize = aacUtils.parseId3TagSize(everything, byteIndex);
|
||||
|
||||
// Exit early if we don't have enough in the buffer
|
||||
// to emit a full packet
|
||||
// Add to byteIndex to support multiple ID3 tags in sequence
|
||||
if (byteIndex + frameSize > everything.length) {
|
||||
break;
|
||||
}
|
||||
chunk = {
|
||||
type: 'timed-metadata',
|
||||
data: everything.subarray(byteIndex, byteIndex + frameSize)
|
||||
};
|
||||
this.trigger('data', chunk);
|
||||
byteIndex += frameSize;
|
||||
continue;
|
||||
} else if (((everything[byteIndex] & 0xff) === 0xff) &&
|
||||
((everything[byteIndex + 1] & 0xf0) === 0xf0)) {
|
||||
|
||||
// Exit early because we don't have enough to parse
|
||||
// the ADTS frame header
|
||||
if (everything.length - byteIndex < 7) {
|
||||
break;
|
||||
}
|
||||
|
||||
frameSize = aacUtils.parseAdtsSize(everything, byteIndex);
|
||||
|
||||
// Exit early if we don't have enough in the buffer
|
||||
// to emit a full packet
|
||||
if (byteIndex + frameSize > everything.length) {
|
||||
break;
|
||||
}
|
||||
|
||||
packet = {
|
||||
type: 'audio',
|
||||
data: everything.subarray(byteIndex, byteIndex + frameSize),
|
||||
pts: timeStamp,
|
||||
dts: timeStamp
|
||||
};
|
||||
this.trigger('data', packet);
|
||||
byteIndex += frameSize;
|
||||
continue;
|
||||
}
|
||||
byteIndex++;
|
||||
}
|
||||
bytesLeft = everything.length - byteIndex;
|
||||
|
||||
if (bytesLeft > 0) {
|
||||
everything = everything.subarray(byteIndex);
|
||||
} else {
|
||||
everything = new Uint8Array();
|
||||
}
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
everything = new Uint8Array();
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
everything = new Uint8Array();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
|
||||
AacStream.prototype = new Stream();
|
||||
|
||||
module.exports = AacStream;
|
||||
|
|
382
node_modules/mux.js/lib/aac/utils.js
generated
vendored
382
node_modules/mux.js/lib/aac/utils.js
generated
vendored
|
@ -1,191 +1,191 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about Aac data.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var ADTS_SAMPLING_FREQUENCIES = [
|
||||
96000,
|
||||
88200,
|
||||
64000,
|
||||
48000,
|
||||
44100,
|
||||
32000,
|
||||
24000,
|
||||
22050,
|
||||
16000,
|
||||
12000,
|
||||
11025,
|
||||
8000,
|
||||
7350
|
||||
];
|
||||
|
||||
var parseId3TagSize = function(header, byteIndex) {
|
||||
var
|
||||
returnSize = (header[byteIndex + 6] << 21) |
|
||||
(header[byteIndex + 7] << 14) |
|
||||
(header[byteIndex + 8] << 7) |
|
||||
(header[byteIndex + 9]),
|
||||
flags = header[byteIndex + 5],
|
||||
footerPresent = (flags & 16) >> 4;
|
||||
|
||||
// if we get a negative returnSize clamp it to 0
|
||||
returnSize = returnSize >= 0 ? returnSize : 0;
|
||||
|
||||
if (footerPresent) {
|
||||
return returnSize + 20;
|
||||
}
|
||||
return returnSize + 10;
|
||||
};
|
||||
|
||||
var getId3Offset = function(data, offset) {
|
||||
if (data.length - offset < 10 ||
|
||||
data[offset] !== 'I'.charCodeAt(0) ||
|
||||
data[offset + 1] !== 'D'.charCodeAt(0) ||
|
||||
data[offset + 2] !== '3'.charCodeAt(0)) {
|
||||
return offset;
|
||||
}
|
||||
|
||||
offset += parseId3TagSize(data, offset);
|
||||
|
||||
return getId3Offset(data, offset);
|
||||
};
|
||||
|
||||
|
||||
// TODO: use vhs-utils
|
||||
var isLikelyAacData = function(data) {
|
||||
var offset = getId3Offset(data, 0);
|
||||
|
||||
return data.length >= offset + 2 &&
|
||||
(data[offset] & 0xFF) === 0xFF &&
|
||||
(data[offset + 1] & 0xF0) === 0xF0 &&
|
||||
// verify that the 2 layer bits are 0, aka this
|
||||
// is not mp3 data but aac data.
|
||||
(data[offset + 1] & 0x16) === 0x10;
|
||||
};
|
||||
|
||||
var parseSyncSafeInteger = function(data) {
|
||||
return (data[0] << 21) |
|
||||
(data[1] << 14) |
|
||||
(data[2] << 7) |
|
||||
(data[3]);
|
||||
};
|
||||
|
||||
// return a percent-encoded representation of the specified byte range
|
||||
// @see http://en.wikipedia.org/wiki/Percent-encoding
|
||||
var percentEncode = function(bytes, start, end) {
|
||||
var i, result = '';
|
||||
for (i = start; i < end; i++) {
|
||||
result += '%' + ('00' + bytes[i].toString(16)).slice(-2);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
// return the string representation of the specified byte range,
|
||||
// interpreted as ISO-8859-1.
|
||||
var parseIso88591 = function(bytes, start, end) {
|
||||
return unescape(percentEncode(bytes, start, end)); // jshint ignore:line
|
||||
};
|
||||
|
||||
var parseAdtsSize = function(header, byteIndex) {
|
||||
var
|
||||
lowThree = (header[byteIndex + 5] & 0xE0) >> 5,
|
||||
middle = header[byteIndex + 4] << 3,
|
||||
highTwo = header[byteIndex + 3] & 0x3 << 11;
|
||||
|
||||
return (highTwo | middle) | lowThree;
|
||||
};
|
||||
|
||||
var parseType = function(header, byteIndex) {
|
||||
if ((header[byteIndex] === 'I'.charCodeAt(0)) &&
|
||||
(header[byteIndex + 1] === 'D'.charCodeAt(0)) &&
|
||||
(header[byteIndex + 2] === '3'.charCodeAt(0))) {
|
||||
return 'timed-metadata';
|
||||
} else if ((header[byteIndex] & 0xff === 0xff) &&
|
||||
((header[byteIndex + 1] & 0xf0) === 0xf0)) {
|
||||
return 'audio';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
var parseSampleRate = function(packet) {
|
||||
var i = 0;
|
||||
|
||||
while (i + 5 < packet.length) {
|
||||
if (packet[i] !== 0xFF || (packet[i + 1] & 0xF6) !== 0xF0) {
|
||||
// If a valid header was not found, jump one forward and attempt to
|
||||
// find a valid ADTS header starting at the next byte
|
||||
i++;
|
||||
continue;
|
||||
}
|
||||
return ADTS_SAMPLING_FREQUENCIES[(packet[i + 2] & 0x3c) >>> 2];
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var parseAacTimestamp = function(packet) {
|
||||
var frameStart, frameSize, frame, frameHeader;
|
||||
|
||||
// find the start of the first frame and the end of the tag
|
||||
frameStart = 10;
|
||||
if (packet[5] & 0x40) {
|
||||
// advance the frame start past the extended header
|
||||
frameStart += 4; // header size field
|
||||
frameStart += parseSyncSafeInteger(packet.subarray(10, 14));
|
||||
}
|
||||
|
||||
// parse one or more ID3 frames
|
||||
// http://id3.org/id3v2.3.0#ID3v2_frame_overview
|
||||
do {
|
||||
// determine the number of bytes in this frame
|
||||
frameSize = parseSyncSafeInteger(packet.subarray(frameStart + 4, frameStart + 8));
|
||||
if (frameSize < 1) {
|
||||
return null;
|
||||
}
|
||||
frameHeader = String.fromCharCode(packet[frameStart],
|
||||
packet[frameStart + 1],
|
||||
packet[frameStart + 2],
|
||||
packet[frameStart + 3]);
|
||||
|
||||
if (frameHeader === 'PRIV') {
|
||||
frame = packet.subarray(frameStart + 10, frameStart + frameSize + 10);
|
||||
|
||||
for (var i = 0; i < frame.byteLength; i++) {
|
||||
if (frame[i] === 0) {
|
||||
var owner = parseIso88591(frame, 0, i);
|
||||
if (owner === 'com.apple.streaming.transportStreamTimestamp') {
|
||||
var d = frame.subarray(i + 1);
|
||||
var size = ((d[3] & 0x01) << 30) |
|
||||
(d[4] << 22) |
|
||||
(d[5] << 14) |
|
||||
(d[6] << 6) |
|
||||
(d[7] >>> 2);
|
||||
size *= 4;
|
||||
size += d[7] & 0x03;
|
||||
|
||||
return size;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
frameStart += 10; // advance past the frame header
|
||||
frameStart += frameSize; // advance past the frame body
|
||||
} while (frameStart < packet.byteLength);
|
||||
return null;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
isLikelyAacData: isLikelyAacData,
|
||||
parseId3TagSize: parseId3TagSize,
|
||||
parseAdtsSize: parseAdtsSize,
|
||||
parseType: parseType,
|
||||
parseSampleRate: parseSampleRate,
|
||||
parseAacTimestamp: parseAacTimestamp
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about Aac data.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var ADTS_SAMPLING_FREQUENCIES = [
|
||||
96000,
|
||||
88200,
|
||||
64000,
|
||||
48000,
|
||||
44100,
|
||||
32000,
|
||||
24000,
|
||||
22050,
|
||||
16000,
|
||||
12000,
|
||||
11025,
|
||||
8000,
|
||||
7350
|
||||
];
|
||||
|
||||
var parseId3TagSize = function(header, byteIndex) {
|
||||
var
|
||||
returnSize = (header[byteIndex + 6] << 21) |
|
||||
(header[byteIndex + 7] << 14) |
|
||||
(header[byteIndex + 8] << 7) |
|
||||
(header[byteIndex + 9]),
|
||||
flags = header[byteIndex + 5],
|
||||
footerPresent = (flags & 16) >> 4;
|
||||
|
||||
// if we get a negative returnSize clamp it to 0
|
||||
returnSize = returnSize >= 0 ? returnSize : 0;
|
||||
|
||||
if (footerPresent) {
|
||||
return returnSize + 20;
|
||||
}
|
||||
return returnSize + 10;
|
||||
};
|
||||
|
||||
var getId3Offset = function(data, offset) {
|
||||
if (data.length - offset < 10 ||
|
||||
data[offset] !== 'I'.charCodeAt(0) ||
|
||||
data[offset + 1] !== 'D'.charCodeAt(0) ||
|
||||
data[offset + 2] !== '3'.charCodeAt(0)) {
|
||||
return offset;
|
||||
}
|
||||
|
||||
offset += parseId3TagSize(data, offset);
|
||||
|
||||
return getId3Offset(data, offset);
|
||||
};
|
||||
|
||||
|
||||
// TODO: use vhs-utils
|
||||
var isLikelyAacData = function(data) {
|
||||
var offset = getId3Offset(data, 0);
|
||||
|
||||
return data.length >= offset + 2 &&
|
||||
(data[offset] & 0xFF) === 0xFF &&
|
||||
(data[offset + 1] & 0xF0) === 0xF0 &&
|
||||
// verify that the 2 layer bits are 0, aka this
|
||||
// is not mp3 data but aac data.
|
||||
(data[offset + 1] & 0x16) === 0x10;
|
||||
};
|
||||
|
||||
var parseSyncSafeInteger = function(data) {
|
||||
return (data[0] << 21) |
|
||||
(data[1] << 14) |
|
||||
(data[2] << 7) |
|
||||
(data[3]);
|
||||
};
|
||||
|
||||
// return a percent-encoded representation of the specified byte range
|
||||
// @see http://en.wikipedia.org/wiki/Percent-encoding
|
||||
var percentEncode = function(bytes, start, end) {
|
||||
var i, result = '';
|
||||
for (i = start; i < end; i++) {
|
||||
result += '%' + ('00' + bytes[i].toString(16)).slice(-2);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
// return the string representation of the specified byte range,
|
||||
// interpreted as ISO-8859-1.
|
||||
var parseIso88591 = function(bytes, start, end) {
|
||||
return unescape(percentEncode(bytes, start, end)); // jshint ignore:line
|
||||
};
|
||||
|
||||
var parseAdtsSize = function(header, byteIndex) {
|
||||
var
|
||||
lowThree = (header[byteIndex + 5] & 0xE0) >> 5,
|
||||
middle = header[byteIndex + 4] << 3,
|
||||
highTwo = header[byteIndex + 3] & 0x3 << 11;
|
||||
|
||||
return (highTwo | middle) | lowThree;
|
||||
};
|
||||
|
||||
var parseType = function(header, byteIndex) {
|
||||
if ((header[byteIndex] === 'I'.charCodeAt(0)) &&
|
||||
(header[byteIndex + 1] === 'D'.charCodeAt(0)) &&
|
||||
(header[byteIndex + 2] === '3'.charCodeAt(0))) {
|
||||
return 'timed-metadata';
|
||||
} else if ((header[byteIndex] & 0xff === 0xff) &&
|
||||
((header[byteIndex + 1] & 0xf0) === 0xf0)) {
|
||||
return 'audio';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
var parseSampleRate = function(packet) {
|
||||
var i = 0;
|
||||
|
||||
while (i + 5 < packet.length) {
|
||||
if (packet[i] !== 0xFF || (packet[i + 1] & 0xF6) !== 0xF0) {
|
||||
// If a valid header was not found, jump one forward and attempt to
|
||||
// find a valid ADTS header starting at the next byte
|
||||
i++;
|
||||
continue;
|
||||
}
|
||||
return ADTS_SAMPLING_FREQUENCIES[(packet[i + 2] & 0x3c) >>> 2];
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
var parseAacTimestamp = function(packet) {
|
||||
var frameStart, frameSize, frame, frameHeader;
|
||||
|
||||
// find the start of the first frame and the end of the tag
|
||||
frameStart = 10;
|
||||
if (packet[5] & 0x40) {
|
||||
// advance the frame start past the extended header
|
||||
frameStart += 4; // header size field
|
||||
frameStart += parseSyncSafeInteger(packet.subarray(10, 14));
|
||||
}
|
||||
|
||||
// parse one or more ID3 frames
|
||||
// http://id3.org/id3v2.3.0#ID3v2_frame_overview
|
||||
do {
|
||||
// determine the number of bytes in this frame
|
||||
frameSize = parseSyncSafeInteger(packet.subarray(frameStart + 4, frameStart + 8));
|
||||
if (frameSize < 1) {
|
||||
return null;
|
||||
}
|
||||
frameHeader = String.fromCharCode(packet[frameStart],
|
||||
packet[frameStart + 1],
|
||||
packet[frameStart + 2],
|
||||
packet[frameStart + 3]);
|
||||
|
||||
if (frameHeader === 'PRIV') {
|
||||
frame = packet.subarray(frameStart + 10, frameStart + frameSize + 10);
|
||||
|
||||
for (var i = 0; i < frame.byteLength; i++) {
|
||||
if (frame[i] === 0) {
|
||||
var owner = parseIso88591(frame, 0, i);
|
||||
if (owner === 'com.apple.streaming.transportStreamTimestamp') {
|
||||
var d = frame.subarray(i + 1);
|
||||
var size = ((d[3] & 0x01) << 30) |
|
||||
(d[4] << 22) |
|
||||
(d[5] << 14) |
|
||||
(d[6] << 6) |
|
||||
(d[7] >>> 2);
|
||||
size *= 4;
|
||||
size += d[7] & 0x03;
|
||||
|
||||
return size;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
frameStart += 10; // advance past the frame header
|
||||
frameStart += frameSize; // advance past the frame body
|
||||
} while (frameStart < packet.byteLength);
|
||||
return null;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
isLikelyAacData: isLikelyAacData,
|
||||
parseId3TagSize: parseId3TagSize,
|
||||
parseAdtsSize: parseAdtsSize,
|
||||
parseType: parseType,
|
||||
parseSampleRate: parseSampleRate,
|
||||
parseAacTimestamp: parseAacTimestamp
|
||||
};
|
||||
|
|
348
node_modules/mux.js/lib/codecs/adts.js
generated
vendored
348
node_modules/mux.js/lib/codecs/adts.js
generated
vendored
|
@ -1,174 +1,174 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
|
||||
var AdtsStream;
|
||||
|
||||
var
|
||||
ADTS_SAMPLING_FREQUENCIES = [
|
||||
96000,
|
||||
88200,
|
||||
64000,
|
||||
48000,
|
||||
44100,
|
||||
32000,
|
||||
24000,
|
||||
22050,
|
||||
16000,
|
||||
12000,
|
||||
11025,
|
||||
8000,
|
||||
7350
|
||||
];
|
||||
|
||||
/*
|
||||
* Accepts a ElementaryStream and emits data events with parsed
|
||||
* AAC Audio Frames of the individual packets. Input audio in ADTS
|
||||
* format is unpacked and re-emitted as AAC frames.
|
||||
*
|
||||
* @see http://wiki.multimedia.cx/index.php?title=ADTS
|
||||
* @see http://wiki.multimedia.cx/?title=Understanding_AAC
|
||||
*/
|
||||
AdtsStream = function(handlePartialSegments) {
|
||||
var
|
||||
buffer,
|
||||
frameNum = 0;
|
||||
|
||||
AdtsStream.prototype.init.call(this);
|
||||
|
||||
this.skipWarn_ = function(start, end) {
|
||||
this.trigger('log', {
|
||||
level: 'warn',
|
||||
message: `adts skiping bytes ${start} to ${end} in frame ${frameNum} outside syncword`
|
||||
});
|
||||
};
|
||||
|
||||
this.push = function(packet) {
|
||||
var
|
||||
i = 0,
|
||||
frameLength,
|
||||
protectionSkipBytes,
|
||||
frameEnd,
|
||||
oldBuffer,
|
||||
sampleCount,
|
||||
adtsFrameDuration;
|
||||
|
||||
if (!handlePartialSegments) {
|
||||
frameNum = 0;
|
||||
}
|
||||
|
||||
if (packet.type !== 'audio') {
|
||||
// ignore non-audio data
|
||||
return;
|
||||
}
|
||||
|
||||
// Prepend any data in the buffer to the input data so that we can parse
|
||||
// aac frames the cross a PES packet boundary
|
||||
if (buffer && buffer.length) {
|
||||
oldBuffer = buffer;
|
||||
buffer = new Uint8Array(oldBuffer.byteLength + packet.data.byteLength);
|
||||
buffer.set(oldBuffer);
|
||||
buffer.set(packet.data, oldBuffer.byteLength);
|
||||
} else {
|
||||
buffer = packet.data;
|
||||
}
|
||||
|
||||
// unpack any ADTS frames which have been fully received
|
||||
// for details on the ADTS header, see http://wiki.multimedia.cx/index.php?title=ADTS
|
||||
var skip;
|
||||
|
||||
// We use i + 7 here because we want to be able to parse the entire header.
|
||||
// If we don't have enough bytes to do that, then we definitely won't have a full frame.
|
||||
while ((i + 7) < buffer.length) {
|
||||
// Look for the start of an ADTS header..
|
||||
if ((buffer[i] !== 0xFF) || (buffer[i + 1] & 0xF6) !== 0xF0) {
|
||||
if (typeof skip !== 'number') {
|
||||
skip = i;
|
||||
}
|
||||
// If a valid header was not found, jump one forward and attempt to
|
||||
// find a valid ADTS header starting at the next byte
|
||||
i++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (typeof skip === 'number') {
|
||||
this.skipWarn_(skip, i);
|
||||
skip = null;
|
||||
}
|
||||
|
||||
// The protection skip bit tells us if we have 2 bytes of CRC data at the
|
||||
// end of the ADTS header
|
||||
protectionSkipBytes = (~buffer[i + 1] & 0x01) * 2;
|
||||
|
||||
// Frame length is a 13 bit integer starting 16 bits from the
|
||||
// end of the sync sequence
|
||||
// NOTE: frame length includes the size of the header
|
||||
frameLength = ((buffer[i + 3] & 0x03) << 11) |
|
||||
(buffer[i + 4] << 3) |
|
||||
((buffer[i + 5] & 0xe0) >> 5);
|
||||
|
||||
sampleCount = ((buffer[i + 6] & 0x03) + 1) * 1024;
|
||||
adtsFrameDuration = (sampleCount * ONE_SECOND_IN_TS) /
|
||||
ADTS_SAMPLING_FREQUENCIES[(buffer[i + 2] & 0x3c) >>> 2];
|
||||
|
||||
// If we don't have enough data to actually finish this ADTS frame,
|
||||
// then we have to wait for more data
|
||||
if ((buffer.byteLength - i) < frameLength) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Otherwise, deliver the complete AAC frame
|
||||
this.trigger('data', {
|
||||
pts: packet.pts + (frameNum * adtsFrameDuration),
|
||||
dts: packet.dts + (frameNum * adtsFrameDuration),
|
||||
sampleCount: sampleCount,
|
||||
audioobjecttype: ((buffer[i + 2] >>> 6) & 0x03) + 1,
|
||||
channelcount: ((buffer[i + 2] & 1) << 2) |
|
||||
((buffer[i + 3] & 0xc0) >>> 6),
|
||||
samplerate: ADTS_SAMPLING_FREQUENCIES[(buffer[i + 2] & 0x3c) >>> 2],
|
||||
samplingfrequencyindex: (buffer[i + 2] & 0x3c) >>> 2,
|
||||
// assume ISO/IEC 14496-12 AudioSampleEntry default of 16
|
||||
samplesize: 16,
|
||||
// data is the frame without it's header
|
||||
data: buffer.subarray(i + 7 + protectionSkipBytes, i + frameLength)
|
||||
});
|
||||
|
||||
frameNum++;
|
||||
i += frameLength;
|
||||
}
|
||||
|
||||
if (typeof skip === 'number') {
|
||||
this.skipWarn_(skip, i);
|
||||
skip = null;
|
||||
}
|
||||
|
||||
// remove processed bytes from the buffer.
|
||||
buffer = buffer.subarray(i);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
frameNum = 0;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
buffer = void 0;
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
buffer = void 0;
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
|
||||
AdtsStream.prototype = new Stream();
|
||||
|
||||
module.exports = AdtsStream;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
|
||||
var AdtsStream;
|
||||
|
||||
var
|
||||
ADTS_SAMPLING_FREQUENCIES = [
|
||||
96000,
|
||||
88200,
|
||||
64000,
|
||||
48000,
|
||||
44100,
|
||||
32000,
|
||||
24000,
|
||||
22050,
|
||||
16000,
|
||||
12000,
|
||||
11025,
|
||||
8000,
|
||||
7350
|
||||
];
|
||||
|
||||
/*
|
||||
* Accepts a ElementaryStream and emits data events with parsed
|
||||
* AAC Audio Frames of the individual packets. Input audio in ADTS
|
||||
* format is unpacked and re-emitted as AAC frames.
|
||||
*
|
||||
* @see http://wiki.multimedia.cx/index.php?title=ADTS
|
||||
* @see http://wiki.multimedia.cx/?title=Understanding_AAC
|
||||
*/
|
||||
AdtsStream = function(handlePartialSegments) {
|
||||
var
|
||||
buffer,
|
||||
frameNum = 0;
|
||||
|
||||
AdtsStream.prototype.init.call(this);
|
||||
|
||||
this.skipWarn_ = function(start, end) {
|
||||
this.trigger('log', {
|
||||
level: 'warn',
|
||||
message: `adts skiping bytes ${start} to ${end} in frame ${frameNum} outside syncword`
|
||||
});
|
||||
};
|
||||
|
||||
this.push = function(packet) {
|
||||
var
|
||||
i = 0,
|
||||
frameLength,
|
||||
protectionSkipBytes,
|
||||
frameEnd,
|
||||
oldBuffer,
|
||||
sampleCount,
|
||||
adtsFrameDuration;
|
||||
|
||||
if (!handlePartialSegments) {
|
||||
frameNum = 0;
|
||||
}
|
||||
|
||||
if (packet.type !== 'audio') {
|
||||
// ignore non-audio data
|
||||
return;
|
||||
}
|
||||
|
||||
// Prepend any data in the buffer to the input data so that we can parse
|
||||
// aac frames the cross a PES packet boundary
|
||||
if (buffer && buffer.length) {
|
||||
oldBuffer = buffer;
|
||||
buffer = new Uint8Array(oldBuffer.byteLength + packet.data.byteLength);
|
||||
buffer.set(oldBuffer);
|
||||
buffer.set(packet.data, oldBuffer.byteLength);
|
||||
} else {
|
||||
buffer = packet.data;
|
||||
}
|
||||
|
||||
// unpack any ADTS frames which have been fully received
|
||||
// for details on the ADTS header, see http://wiki.multimedia.cx/index.php?title=ADTS
|
||||
var skip;
|
||||
|
||||
// We use i + 7 here because we want to be able to parse the entire header.
|
||||
// If we don't have enough bytes to do that, then we definitely won't have a full frame.
|
||||
while ((i + 7) < buffer.length) {
|
||||
// Look for the start of an ADTS header..
|
||||
if ((buffer[i] !== 0xFF) || (buffer[i + 1] & 0xF6) !== 0xF0) {
|
||||
if (typeof skip !== 'number') {
|
||||
skip = i;
|
||||
}
|
||||
// If a valid header was not found, jump one forward and attempt to
|
||||
// find a valid ADTS header starting at the next byte
|
||||
i++;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (typeof skip === 'number') {
|
||||
this.skipWarn_(skip, i);
|
||||
skip = null;
|
||||
}
|
||||
|
||||
// The protection skip bit tells us if we have 2 bytes of CRC data at the
|
||||
// end of the ADTS header
|
||||
protectionSkipBytes = (~buffer[i + 1] & 0x01) * 2;
|
||||
|
||||
// Frame length is a 13 bit integer starting 16 bits from the
|
||||
// end of the sync sequence
|
||||
// NOTE: frame length includes the size of the header
|
||||
frameLength = ((buffer[i + 3] & 0x03) << 11) |
|
||||
(buffer[i + 4] << 3) |
|
||||
((buffer[i + 5] & 0xe0) >> 5);
|
||||
|
||||
sampleCount = ((buffer[i + 6] & 0x03) + 1) * 1024;
|
||||
adtsFrameDuration = (sampleCount * ONE_SECOND_IN_TS) /
|
||||
ADTS_SAMPLING_FREQUENCIES[(buffer[i + 2] & 0x3c) >>> 2];
|
||||
|
||||
// If we don't have enough data to actually finish this ADTS frame,
|
||||
// then we have to wait for more data
|
||||
if ((buffer.byteLength - i) < frameLength) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Otherwise, deliver the complete AAC frame
|
||||
this.trigger('data', {
|
||||
pts: packet.pts + (frameNum * adtsFrameDuration),
|
||||
dts: packet.dts + (frameNum * adtsFrameDuration),
|
||||
sampleCount: sampleCount,
|
||||
audioobjecttype: ((buffer[i + 2] >>> 6) & 0x03) + 1,
|
||||
channelcount: ((buffer[i + 2] & 1) << 2) |
|
||||
((buffer[i + 3] & 0xc0) >>> 6),
|
||||
samplerate: ADTS_SAMPLING_FREQUENCIES[(buffer[i + 2] & 0x3c) >>> 2],
|
||||
samplingfrequencyindex: (buffer[i + 2] & 0x3c) >>> 2,
|
||||
// assume ISO/IEC 14496-12 AudioSampleEntry default of 16
|
||||
samplesize: 16,
|
||||
// data is the frame without it's header
|
||||
data: buffer.subarray(i + 7 + protectionSkipBytes, i + frameLength)
|
||||
});
|
||||
|
||||
frameNum++;
|
||||
i += frameLength;
|
||||
}
|
||||
|
||||
if (typeof skip === 'number') {
|
||||
this.skipWarn_(skip, i);
|
||||
skip = null;
|
||||
}
|
||||
|
||||
// remove processed bytes from the buffer.
|
||||
buffer = buffer.subarray(i);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
frameNum = 0;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
buffer = void 0;
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
buffer = void 0;
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
|
||||
AdtsStream.prototype = new Stream();
|
||||
|
||||
module.exports = AdtsStream;
|
||||
|
|
978
node_modules/mux.js/lib/codecs/h264.js
generated
vendored
978
node_modules/mux.js/lib/codecs/h264.js
generated
vendored
|
@ -1,489 +1,489 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var ExpGolomb = require('../utils/exp-golomb.js');
|
||||
|
||||
var H264Stream, NalByteStream;
|
||||
var PROFILES_WITH_OPTIONAL_SPS_DATA;
|
||||
|
||||
/**
|
||||
* Accepts a NAL unit byte stream and unpacks the embedded NAL units.
|
||||
*/
|
||||
NalByteStream = function() {
|
||||
var
|
||||
syncPoint = 0,
|
||||
i,
|
||||
buffer;
|
||||
NalByteStream.prototype.init.call(this);
|
||||
|
||||
/*
|
||||
* Scans a byte stream and triggers a data event with the NAL units found.
|
||||
* @param {Object} data Event received from H264Stream
|
||||
* @param {Uint8Array} data.data The h264 byte stream to be scanned
|
||||
*
|
||||
* @see H264Stream.push
|
||||
*/
|
||||
this.push = function(data) {
|
||||
var swapBuffer;
|
||||
|
||||
if (!buffer) {
|
||||
buffer = data.data;
|
||||
} else {
|
||||
swapBuffer = new Uint8Array(buffer.byteLength + data.data.byteLength);
|
||||
swapBuffer.set(buffer);
|
||||
swapBuffer.set(data.data, buffer.byteLength);
|
||||
buffer = swapBuffer;
|
||||
}
|
||||
var len = buffer.byteLength;
|
||||
|
||||
// Rec. ITU-T H.264, Annex B
|
||||
// scan for NAL unit boundaries
|
||||
|
||||
// a match looks like this:
|
||||
// 0 0 1 .. NAL .. 0 0 1
|
||||
// ^ sync point ^ i
|
||||
// or this:
|
||||
// 0 0 1 .. NAL .. 0 0 0
|
||||
// ^ sync point ^ i
|
||||
|
||||
// advance the sync point to a NAL start, if necessary
|
||||
for (; syncPoint < len - 3; syncPoint++) {
|
||||
if (buffer[syncPoint + 2] === 1) {
|
||||
// the sync point is properly aligned
|
||||
i = syncPoint + 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while (i < len) {
|
||||
// look at the current byte to determine if we've hit the end of
|
||||
// a NAL unit boundary
|
||||
switch (buffer[i]) {
|
||||
case 0:
|
||||
// skip past non-sync sequences
|
||||
if (buffer[i - 1] !== 0) {
|
||||
i += 2;
|
||||
break;
|
||||
} else if (buffer[i - 2] !== 0) {
|
||||
i++;
|
||||
break;
|
||||
}
|
||||
|
||||
// deliver the NAL unit if it isn't empty
|
||||
if (syncPoint + 3 !== i - 2) {
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3, i - 2));
|
||||
}
|
||||
|
||||
// drop trailing zeroes
|
||||
do {
|
||||
i++;
|
||||
} while (buffer[i] !== 1 && i < len);
|
||||
syncPoint = i - 2;
|
||||
i += 3;
|
||||
break;
|
||||
case 1:
|
||||
// skip past non-sync sequences
|
||||
if (buffer[i - 1] !== 0 ||
|
||||
buffer[i - 2] !== 0) {
|
||||
i += 3;
|
||||
break;
|
||||
}
|
||||
|
||||
// deliver the NAL unit
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3, i - 2));
|
||||
syncPoint = i - 2;
|
||||
i += 3;
|
||||
break;
|
||||
default:
|
||||
// the current byte isn't a one or zero, so it cannot be part
|
||||
// of a sync sequence
|
||||
i += 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// filter out the NAL units that were delivered
|
||||
buffer = buffer.subarray(syncPoint);
|
||||
i -= syncPoint;
|
||||
syncPoint = 0;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
buffer = null;
|
||||
syncPoint = 0;
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
// deliver the last buffered NAL unit
|
||||
if (buffer && buffer.byteLength > 3) {
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3));
|
||||
}
|
||||
// reset the stream state
|
||||
buffer = null;
|
||||
syncPoint = 0;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
NalByteStream.prototype = new Stream();
|
||||
|
||||
// values of profile_idc that indicate additional fields are included in the SPS
|
||||
// see Recommendation ITU-T H.264 (4/2013),
|
||||
// 7.3.2.1.1 Sequence parameter set data syntax
|
||||
PROFILES_WITH_OPTIONAL_SPS_DATA = {
|
||||
100: true,
|
||||
110: true,
|
||||
122: true,
|
||||
244: true,
|
||||
44: true,
|
||||
83: true,
|
||||
86: true,
|
||||
118: true,
|
||||
128: true,
|
||||
|
||||
// TODO: the three profiles below don't
|
||||
// appear to have sps data in the specificiation anymore?
|
||||
138: true,
|
||||
139: true,
|
||||
134: true
|
||||
};
|
||||
|
||||
/**
|
||||
* Accepts input from a ElementaryStream and produces H.264 NAL unit data
|
||||
* events.
|
||||
*/
|
||||
H264Stream = function() {
|
||||
var
|
||||
nalByteStream = new NalByteStream(),
|
||||
self,
|
||||
trackId,
|
||||
currentPts,
|
||||
currentDts,
|
||||
|
||||
discardEmulationPreventionBytes,
|
||||
readSequenceParameterSet,
|
||||
skipScalingList;
|
||||
|
||||
H264Stream.prototype.init.call(this);
|
||||
self = this;
|
||||
|
||||
/*
|
||||
* Pushes a packet from a stream onto the NalByteStream
|
||||
*
|
||||
* @param {Object} packet - A packet received from a stream
|
||||
* @param {Uint8Array} packet.data - The raw bytes of the packet
|
||||
* @param {Number} packet.dts - Decode timestamp of the packet
|
||||
* @param {Number} packet.pts - Presentation timestamp of the packet
|
||||
* @param {Number} packet.trackId - The id of the h264 track this packet came from
|
||||
* @param {('video'|'audio')} packet.type - The type of packet
|
||||
*
|
||||
*/
|
||||
this.push = function(packet) {
|
||||
if (packet.type !== 'video') {
|
||||
return;
|
||||
}
|
||||
trackId = packet.trackId;
|
||||
currentPts = packet.pts;
|
||||
currentDts = packet.dts;
|
||||
|
||||
nalByteStream.push(packet);
|
||||
};
|
||||
|
||||
/*
|
||||
* Identify NAL unit types and pass on the NALU, trackId, presentation and decode timestamps
|
||||
* for the NALUs to the next stream component.
|
||||
* Also, preprocess caption and sequence parameter NALUs.
|
||||
*
|
||||
* @param {Uint8Array} data - A NAL unit identified by `NalByteStream.push`
|
||||
* @see NalByteStream.push
|
||||
*/
|
||||
nalByteStream.on('data', function(data) {
|
||||
var
|
||||
event = {
|
||||
trackId: trackId,
|
||||
pts: currentPts,
|
||||
dts: currentDts,
|
||||
data: data,
|
||||
nalUnitTypeCode: data[0] & 0x1f
|
||||
};
|
||||
|
||||
switch (event.nalUnitTypeCode) {
|
||||
case 0x05:
|
||||
event.nalUnitType = 'slice_layer_without_partitioning_rbsp_idr';
|
||||
break;
|
||||
case 0x06:
|
||||
event.nalUnitType = 'sei_rbsp';
|
||||
event.escapedRBSP = discardEmulationPreventionBytes(data.subarray(1));
|
||||
break;
|
||||
case 0x07:
|
||||
event.nalUnitType = 'seq_parameter_set_rbsp';
|
||||
event.escapedRBSP = discardEmulationPreventionBytes(data.subarray(1));
|
||||
event.config = readSequenceParameterSet(event.escapedRBSP);
|
||||
break;
|
||||
case 0x08:
|
||||
event.nalUnitType = 'pic_parameter_set_rbsp';
|
||||
break;
|
||||
case 0x09:
|
||||
event.nalUnitType = 'access_unit_delimiter_rbsp';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
// This triggers data on the H264Stream
|
||||
self.trigger('data', event);
|
||||
});
|
||||
nalByteStream.on('done', function() {
|
||||
self.trigger('done');
|
||||
});
|
||||
nalByteStream.on('partialdone', function() {
|
||||
self.trigger('partialdone');
|
||||
});
|
||||
nalByteStream.on('reset', function() {
|
||||
self.trigger('reset');
|
||||
});
|
||||
nalByteStream.on('endedtimeline', function() {
|
||||
self.trigger('endedtimeline');
|
||||
});
|
||||
|
||||
this.flush = function() {
|
||||
nalByteStream.flush();
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
nalByteStream.partialFlush();
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
nalByteStream.reset();
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
nalByteStream.endTimeline();
|
||||
};
|
||||
|
||||
/**
|
||||
* Advance the ExpGolomb decoder past a scaling list. The scaling
|
||||
* list is optionally transmitted as part of a sequence parameter
|
||||
* set and is not relevant to transmuxing.
|
||||
* @param count {number} the number of entries in this scaling list
|
||||
* @param expGolombDecoder {object} an ExpGolomb pointed to the
|
||||
* start of a scaling list
|
||||
* @see Recommendation ITU-T H.264, Section 7.3.2.1.1.1
|
||||
*/
|
||||
skipScalingList = function(count, expGolombDecoder) {
|
||||
var
|
||||
lastScale = 8,
|
||||
nextScale = 8,
|
||||
j,
|
||||
deltaScale;
|
||||
|
||||
for (j = 0; j < count; j++) {
|
||||
if (nextScale !== 0) {
|
||||
deltaScale = expGolombDecoder.readExpGolomb();
|
||||
nextScale = (lastScale + deltaScale + 256) % 256;
|
||||
}
|
||||
|
||||
lastScale = (nextScale === 0) ? lastScale : nextScale;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Expunge any "Emulation Prevention" bytes from a "Raw Byte
|
||||
* Sequence Payload"
|
||||
* @param data {Uint8Array} the bytes of a RBSP from a NAL
|
||||
* unit
|
||||
* @return {Uint8Array} the RBSP without any Emulation
|
||||
* Prevention Bytes
|
||||
*/
|
||||
discardEmulationPreventionBytes = function(data) {
|
||||
var
|
||||
length = data.byteLength,
|
||||
emulationPreventionBytesPositions = [],
|
||||
i = 1,
|
||||
newLength, newData;
|
||||
|
||||
// Find all `Emulation Prevention Bytes`
|
||||
while (i < length - 2) {
|
||||
if (data[i] === 0 && data[i + 1] === 0 && data[i + 2] === 0x03) {
|
||||
emulationPreventionBytesPositions.push(i + 2);
|
||||
i += 2;
|
||||
} else {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
// If no Emulation Prevention Bytes were found just return the original
|
||||
// array
|
||||
if (emulationPreventionBytesPositions.length === 0) {
|
||||
return data;
|
||||
}
|
||||
|
||||
// Create a new array to hold the NAL unit data
|
||||
newLength = length - emulationPreventionBytesPositions.length;
|
||||
newData = new Uint8Array(newLength);
|
||||
var sourceIndex = 0;
|
||||
|
||||
for (i = 0; i < newLength; sourceIndex++, i++) {
|
||||
if (sourceIndex === emulationPreventionBytesPositions[0]) {
|
||||
// Skip this byte
|
||||
sourceIndex++;
|
||||
// Remove this position index
|
||||
emulationPreventionBytesPositions.shift();
|
||||
}
|
||||
newData[i] = data[sourceIndex];
|
||||
}
|
||||
|
||||
return newData;
|
||||
};
|
||||
|
||||
/**
|
||||
* Read a sequence parameter set and return some interesting video
|
||||
* properties. A sequence parameter set is the H264 metadata that
|
||||
* describes the properties of upcoming video frames.
|
||||
* @param data {Uint8Array} the bytes of a sequence parameter set
|
||||
* @return {object} an object with configuration parsed from the
|
||||
* sequence parameter set, including the dimensions of the
|
||||
* associated video frames.
|
||||
*/
|
||||
readSequenceParameterSet = function(data) {
|
||||
var
|
||||
frameCropLeftOffset = 0,
|
||||
frameCropRightOffset = 0,
|
||||
frameCropTopOffset = 0,
|
||||
frameCropBottomOffset = 0,
|
||||
sarScale = 1,
|
||||
expGolombDecoder, profileIdc, levelIdc, profileCompatibility,
|
||||
chromaFormatIdc, picOrderCntType,
|
||||
numRefFramesInPicOrderCntCycle, picWidthInMbsMinus1,
|
||||
picHeightInMapUnitsMinus1,
|
||||
frameMbsOnlyFlag,
|
||||
scalingListCount,
|
||||
sarRatio = [1, 1],
|
||||
aspectRatioIdc,
|
||||
i;
|
||||
|
||||
expGolombDecoder = new ExpGolomb(data);
|
||||
profileIdc = expGolombDecoder.readUnsignedByte(); // profile_idc
|
||||
profileCompatibility = expGolombDecoder.readUnsignedByte(); // constraint_set[0-5]_flag
|
||||
levelIdc = expGolombDecoder.readUnsignedByte(); // level_idc u(8)
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // seq_parameter_set_id
|
||||
|
||||
// some profiles have more optional data we don't need
|
||||
if (PROFILES_WITH_OPTIONAL_SPS_DATA[profileIdc]) {
|
||||
chromaFormatIdc = expGolombDecoder.readUnsignedExpGolomb();
|
||||
if (chromaFormatIdc === 3) {
|
||||
expGolombDecoder.skipBits(1); // separate_colour_plane_flag
|
||||
}
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // bit_depth_luma_minus8
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // bit_depth_chroma_minus8
|
||||
expGolombDecoder.skipBits(1); // qpprime_y_zero_transform_bypass_flag
|
||||
if (expGolombDecoder.readBoolean()) { // seq_scaling_matrix_present_flag
|
||||
scalingListCount = (chromaFormatIdc !== 3) ? 8 : 12;
|
||||
for (i = 0; i < scalingListCount; i++) {
|
||||
if (expGolombDecoder.readBoolean()) { // seq_scaling_list_present_flag[ i ]
|
||||
if (i < 6) {
|
||||
skipScalingList(16, expGolombDecoder);
|
||||
} else {
|
||||
skipScalingList(64, expGolombDecoder);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // log2_max_frame_num_minus4
|
||||
picOrderCntType = expGolombDecoder.readUnsignedExpGolomb();
|
||||
|
||||
if (picOrderCntType === 0) {
|
||||
expGolombDecoder.readUnsignedExpGolomb(); // log2_max_pic_order_cnt_lsb_minus4
|
||||
} else if (picOrderCntType === 1) {
|
||||
expGolombDecoder.skipBits(1); // delta_pic_order_always_zero_flag
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_non_ref_pic
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_top_to_bottom_field
|
||||
numRefFramesInPicOrderCntCycle = expGolombDecoder.readUnsignedExpGolomb();
|
||||
for (i = 0; i < numRefFramesInPicOrderCntCycle; i++) {
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_ref_frame[ i ]
|
||||
}
|
||||
}
|
||||
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // max_num_ref_frames
|
||||
expGolombDecoder.skipBits(1); // gaps_in_frame_num_value_allowed_flag
|
||||
|
||||
picWidthInMbsMinus1 = expGolombDecoder.readUnsignedExpGolomb();
|
||||
picHeightInMapUnitsMinus1 = expGolombDecoder.readUnsignedExpGolomb();
|
||||
|
||||
frameMbsOnlyFlag = expGolombDecoder.readBits(1);
|
||||
if (frameMbsOnlyFlag === 0) {
|
||||
expGolombDecoder.skipBits(1); // mb_adaptive_frame_field_flag
|
||||
}
|
||||
|
||||
expGolombDecoder.skipBits(1); // direct_8x8_inference_flag
|
||||
if (expGolombDecoder.readBoolean()) { // frame_cropping_flag
|
||||
frameCropLeftOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropRightOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropTopOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropBottomOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
}
|
||||
if (expGolombDecoder.readBoolean()) {
|
||||
// vui_parameters_present_flag
|
||||
if (expGolombDecoder.readBoolean()) {
|
||||
// aspect_ratio_info_present_flag
|
||||
aspectRatioIdc = expGolombDecoder.readUnsignedByte();
|
||||
switch (aspectRatioIdc) {
|
||||
case 1: sarRatio = [1, 1]; break;
|
||||
case 2: sarRatio = [12, 11]; break;
|
||||
case 3: sarRatio = [10, 11]; break;
|
||||
case 4: sarRatio = [16, 11]; break;
|
||||
case 5: sarRatio = [40, 33]; break;
|
||||
case 6: sarRatio = [24, 11]; break;
|
||||
case 7: sarRatio = [20, 11]; break;
|
||||
case 8: sarRatio = [32, 11]; break;
|
||||
case 9: sarRatio = [80, 33]; break;
|
||||
case 10: sarRatio = [18, 11]; break;
|
||||
case 11: sarRatio = [15, 11]; break;
|
||||
case 12: sarRatio = [64, 33]; break;
|
||||
case 13: sarRatio = [160, 99]; break;
|
||||
case 14: sarRatio = [4, 3]; break;
|
||||
case 15: sarRatio = [3, 2]; break;
|
||||
case 16: sarRatio = [2, 1]; break;
|
||||
case 255: {
|
||||
sarRatio = [expGolombDecoder.readUnsignedByte() << 8 |
|
||||
expGolombDecoder.readUnsignedByte(),
|
||||
expGolombDecoder.readUnsignedByte() << 8 |
|
||||
expGolombDecoder.readUnsignedByte() ];
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (sarRatio) {
|
||||
sarScale = sarRatio[0] / sarRatio[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
return {
|
||||
profileIdc: profileIdc,
|
||||
levelIdc: levelIdc,
|
||||
profileCompatibility: profileCompatibility,
|
||||
width: (((picWidthInMbsMinus1 + 1) * 16) - frameCropLeftOffset * 2 - frameCropRightOffset * 2),
|
||||
height: ((2 - frameMbsOnlyFlag) * (picHeightInMapUnitsMinus1 + 1) * 16) - (frameCropTopOffset * 2) - (frameCropBottomOffset * 2),
|
||||
// sar is sample aspect ratio
|
||||
sarRatio: sarRatio
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
H264Stream.prototype = new Stream();
|
||||
|
||||
module.exports = {
|
||||
H264Stream: H264Stream,
|
||||
NalByteStream: NalByteStream
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var ExpGolomb = require('../utils/exp-golomb.js');
|
||||
|
||||
var H264Stream, NalByteStream;
|
||||
var PROFILES_WITH_OPTIONAL_SPS_DATA;
|
||||
|
||||
/**
|
||||
* Accepts a NAL unit byte stream and unpacks the embedded NAL units.
|
||||
*/
|
||||
NalByteStream = function() {
|
||||
var
|
||||
syncPoint = 0,
|
||||
i,
|
||||
buffer;
|
||||
NalByteStream.prototype.init.call(this);
|
||||
|
||||
/*
|
||||
* Scans a byte stream and triggers a data event with the NAL units found.
|
||||
* @param {Object} data Event received from H264Stream
|
||||
* @param {Uint8Array} data.data The h264 byte stream to be scanned
|
||||
*
|
||||
* @see H264Stream.push
|
||||
*/
|
||||
this.push = function(data) {
|
||||
var swapBuffer;
|
||||
|
||||
if (!buffer) {
|
||||
buffer = data.data;
|
||||
} else {
|
||||
swapBuffer = new Uint8Array(buffer.byteLength + data.data.byteLength);
|
||||
swapBuffer.set(buffer);
|
||||
swapBuffer.set(data.data, buffer.byteLength);
|
||||
buffer = swapBuffer;
|
||||
}
|
||||
var len = buffer.byteLength;
|
||||
|
||||
// Rec. ITU-T H.264, Annex B
|
||||
// scan for NAL unit boundaries
|
||||
|
||||
// a match looks like this:
|
||||
// 0 0 1 .. NAL .. 0 0 1
|
||||
// ^ sync point ^ i
|
||||
// or this:
|
||||
// 0 0 1 .. NAL .. 0 0 0
|
||||
// ^ sync point ^ i
|
||||
|
||||
// advance the sync point to a NAL start, if necessary
|
||||
for (; syncPoint < len - 3; syncPoint++) {
|
||||
if (buffer[syncPoint + 2] === 1) {
|
||||
// the sync point is properly aligned
|
||||
i = syncPoint + 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while (i < len) {
|
||||
// look at the current byte to determine if we've hit the end of
|
||||
// a NAL unit boundary
|
||||
switch (buffer[i]) {
|
||||
case 0:
|
||||
// skip past non-sync sequences
|
||||
if (buffer[i - 1] !== 0) {
|
||||
i += 2;
|
||||
break;
|
||||
} else if (buffer[i - 2] !== 0) {
|
||||
i++;
|
||||
break;
|
||||
}
|
||||
|
||||
// deliver the NAL unit if it isn't empty
|
||||
if (syncPoint + 3 !== i - 2) {
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3, i - 2));
|
||||
}
|
||||
|
||||
// drop trailing zeroes
|
||||
do {
|
||||
i++;
|
||||
} while (buffer[i] !== 1 && i < len);
|
||||
syncPoint = i - 2;
|
||||
i += 3;
|
||||
break;
|
||||
case 1:
|
||||
// skip past non-sync sequences
|
||||
if (buffer[i - 1] !== 0 ||
|
||||
buffer[i - 2] !== 0) {
|
||||
i += 3;
|
||||
break;
|
||||
}
|
||||
|
||||
// deliver the NAL unit
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3, i - 2));
|
||||
syncPoint = i - 2;
|
||||
i += 3;
|
||||
break;
|
||||
default:
|
||||
// the current byte isn't a one or zero, so it cannot be part
|
||||
// of a sync sequence
|
||||
i += 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
// filter out the NAL units that were delivered
|
||||
buffer = buffer.subarray(syncPoint);
|
||||
i -= syncPoint;
|
||||
syncPoint = 0;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
buffer = null;
|
||||
syncPoint = 0;
|
||||
this.trigger('reset');
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
// deliver the last buffered NAL unit
|
||||
if (buffer && buffer.byteLength > 3) {
|
||||
this.trigger('data', buffer.subarray(syncPoint + 3));
|
||||
}
|
||||
// reset the stream state
|
||||
buffer = null;
|
||||
syncPoint = 0;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
};
|
||||
NalByteStream.prototype = new Stream();
|
||||
|
||||
// values of profile_idc that indicate additional fields are included in the SPS
|
||||
// see Recommendation ITU-T H.264 (4/2013),
|
||||
// 7.3.2.1.1 Sequence parameter set data syntax
|
||||
PROFILES_WITH_OPTIONAL_SPS_DATA = {
|
||||
100: true,
|
||||
110: true,
|
||||
122: true,
|
||||
244: true,
|
||||
44: true,
|
||||
83: true,
|
||||
86: true,
|
||||
118: true,
|
||||
128: true,
|
||||
|
||||
// TODO: the three profiles below don't
|
||||
// appear to have sps data in the specificiation anymore?
|
||||
138: true,
|
||||
139: true,
|
||||
134: true
|
||||
};
|
||||
|
||||
/**
|
||||
* Accepts input from a ElementaryStream and produces H.264 NAL unit data
|
||||
* events.
|
||||
*/
|
||||
H264Stream = function() {
|
||||
var
|
||||
nalByteStream = new NalByteStream(),
|
||||
self,
|
||||
trackId,
|
||||
currentPts,
|
||||
currentDts,
|
||||
|
||||
discardEmulationPreventionBytes,
|
||||
readSequenceParameterSet,
|
||||
skipScalingList;
|
||||
|
||||
H264Stream.prototype.init.call(this);
|
||||
self = this;
|
||||
|
||||
/*
|
||||
* Pushes a packet from a stream onto the NalByteStream
|
||||
*
|
||||
* @param {Object} packet - A packet received from a stream
|
||||
* @param {Uint8Array} packet.data - The raw bytes of the packet
|
||||
* @param {Number} packet.dts - Decode timestamp of the packet
|
||||
* @param {Number} packet.pts - Presentation timestamp of the packet
|
||||
* @param {Number} packet.trackId - The id of the h264 track this packet came from
|
||||
* @param {('video'|'audio')} packet.type - The type of packet
|
||||
*
|
||||
*/
|
||||
this.push = function(packet) {
|
||||
if (packet.type !== 'video') {
|
||||
return;
|
||||
}
|
||||
trackId = packet.trackId;
|
||||
currentPts = packet.pts;
|
||||
currentDts = packet.dts;
|
||||
|
||||
nalByteStream.push(packet);
|
||||
};
|
||||
|
||||
/*
|
||||
* Identify NAL unit types and pass on the NALU, trackId, presentation and decode timestamps
|
||||
* for the NALUs to the next stream component.
|
||||
* Also, preprocess caption and sequence parameter NALUs.
|
||||
*
|
||||
* @param {Uint8Array} data - A NAL unit identified by `NalByteStream.push`
|
||||
* @see NalByteStream.push
|
||||
*/
|
||||
nalByteStream.on('data', function(data) {
|
||||
var
|
||||
event = {
|
||||
trackId: trackId,
|
||||
pts: currentPts,
|
||||
dts: currentDts,
|
||||
data: data,
|
||||
nalUnitTypeCode: data[0] & 0x1f
|
||||
};
|
||||
|
||||
switch (event.nalUnitTypeCode) {
|
||||
case 0x05:
|
||||
event.nalUnitType = 'slice_layer_without_partitioning_rbsp_idr';
|
||||
break;
|
||||
case 0x06:
|
||||
event.nalUnitType = 'sei_rbsp';
|
||||
event.escapedRBSP = discardEmulationPreventionBytes(data.subarray(1));
|
||||
break;
|
||||
case 0x07:
|
||||
event.nalUnitType = 'seq_parameter_set_rbsp';
|
||||
event.escapedRBSP = discardEmulationPreventionBytes(data.subarray(1));
|
||||
event.config = readSequenceParameterSet(event.escapedRBSP);
|
||||
break;
|
||||
case 0x08:
|
||||
event.nalUnitType = 'pic_parameter_set_rbsp';
|
||||
break;
|
||||
case 0x09:
|
||||
event.nalUnitType = 'access_unit_delimiter_rbsp';
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
// This triggers data on the H264Stream
|
||||
self.trigger('data', event);
|
||||
});
|
||||
nalByteStream.on('done', function() {
|
||||
self.trigger('done');
|
||||
});
|
||||
nalByteStream.on('partialdone', function() {
|
||||
self.trigger('partialdone');
|
||||
});
|
||||
nalByteStream.on('reset', function() {
|
||||
self.trigger('reset');
|
||||
});
|
||||
nalByteStream.on('endedtimeline', function() {
|
||||
self.trigger('endedtimeline');
|
||||
});
|
||||
|
||||
this.flush = function() {
|
||||
nalByteStream.flush();
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
nalByteStream.partialFlush();
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
nalByteStream.reset();
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
nalByteStream.endTimeline();
|
||||
};
|
||||
|
||||
/**
|
||||
* Advance the ExpGolomb decoder past a scaling list. The scaling
|
||||
* list is optionally transmitted as part of a sequence parameter
|
||||
* set and is not relevant to transmuxing.
|
||||
* @param count {number} the number of entries in this scaling list
|
||||
* @param expGolombDecoder {object} an ExpGolomb pointed to the
|
||||
* start of a scaling list
|
||||
* @see Recommendation ITU-T H.264, Section 7.3.2.1.1.1
|
||||
*/
|
||||
skipScalingList = function(count, expGolombDecoder) {
|
||||
var
|
||||
lastScale = 8,
|
||||
nextScale = 8,
|
||||
j,
|
||||
deltaScale;
|
||||
|
||||
for (j = 0; j < count; j++) {
|
||||
if (nextScale !== 0) {
|
||||
deltaScale = expGolombDecoder.readExpGolomb();
|
||||
nextScale = (lastScale + deltaScale + 256) % 256;
|
||||
}
|
||||
|
||||
lastScale = (nextScale === 0) ? lastScale : nextScale;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Expunge any "Emulation Prevention" bytes from a "Raw Byte
|
||||
* Sequence Payload"
|
||||
* @param data {Uint8Array} the bytes of a RBSP from a NAL
|
||||
* unit
|
||||
* @return {Uint8Array} the RBSP without any Emulation
|
||||
* Prevention Bytes
|
||||
*/
|
||||
discardEmulationPreventionBytes = function(data) {
|
||||
var
|
||||
length = data.byteLength,
|
||||
emulationPreventionBytesPositions = [],
|
||||
i = 1,
|
||||
newLength, newData;
|
||||
|
||||
// Find all `Emulation Prevention Bytes`
|
||||
while (i < length - 2) {
|
||||
if (data[i] === 0 && data[i + 1] === 0 && data[i + 2] === 0x03) {
|
||||
emulationPreventionBytesPositions.push(i + 2);
|
||||
i += 2;
|
||||
} else {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
// If no Emulation Prevention Bytes were found just return the original
|
||||
// array
|
||||
if (emulationPreventionBytesPositions.length === 0) {
|
||||
return data;
|
||||
}
|
||||
|
||||
// Create a new array to hold the NAL unit data
|
||||
newLength = length - emulationPreventionBytesPositions.length;
|
||||
newData = new Uint8Array(newLength);
|
||||
var sourceIndex = 0;
|
||||
|
||||
for (i = 0; i < newLength; sourceIndex++, i++) {
|
||||
if (sourceIndex === emulationPreventionBytesPositions[0]) {
|
||||
// Skip this byte
|
||||
sourceIndex++;
|
||||
// Remove this position index
|
||||
emulationPreventionBytesPositions.shift();
|
||||
}
|
||||
newData[i] = data[sourceIndex];
|
||||
}
|
||||
|
||||
return newData;
|
||||
};
|
||||
|
||||
/**
|
||||
* Read a sequence parameter set and return some interesting video
|
||||
* properties. A sequence parameter set is the H264 metadata that
|
||||
* describes the properties of upcoming video frames.
|
||||
* @param data {Uint8Array} the bytes of a sequence parameter set
|
||||
* @return {object} an object with configuration parsed from the
|
||||
* sequence parameter set, including the dimensions of the
|
||||
* associated video frames.
|
||||
*/
|
||||
readSequenceParameterSet = function(data) {
|
||||
var
|
||||
frameCropLeftOffset = 0,
|
||||
frameCropRightOffset = 0,
|
||||
frameCropTopOffset = 0,
|
||||
frameCropBottomOffset = 0,
|
||||
sarScale = 1,
|
||||
expGolombDecoder, profileIdc, levelIdc, profileCompatibility,
|
||||
chromaFormatIdc, picOrderCntType,
|
||||
numRefFramesInPicOrderCntCycle, picWidthInMbsMinus1,
|
||||
picHeightInMapUnitsMinus1,
|
||||
frameMbsOnlyFlag,
|
||||
scalingListCount,
|
||||
sarRatio = [1, 1],
|
||||
aspectRatioIdc,
|
||||
i;
|
||||
|
||||
expGolombDecoder = new ExpGolomb(data);
|
||||
profileIdc = expGolombDecoder.readUnsignedByte(); // profile_idc
|
||||
profileCompatibility = expGolombDecoder.readUnsignedByte(); // constraint_set[0-5]_flag
|
||||
levelIdc = expGolombDecoder.readUnsignedByte(); // level_idc u(8)
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // seq_parameter_set_id
|
||||
|
||||
// some profiles have more optional data we don't need
|
||||
if (PROFILES_WITH_OPTIONAL_SPS_DATA[profileIdc]) {
|
||||
chromaFormatIdc = expGolombDecoder.readUnsignedExpGolomb();
|
||||
if (chromaFormatIdc === 3) {
|
||||
expGolombDecoder.skipBits(1); // separate_colour_plane_flag
|
||||
}
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // bit_depth_luma_minus8
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // bit_depth_chroma_minus8
|
||||
expGolombDecoder.skipBits(1); // qpprime_y_zero_transform_bypass_flag
|
||||
if (expGolombDecoder.readBoolean()) { // seq_scaling_matrix_present_flag
|
||||
scalingListCount = (chromaFormatIdc !== 3) ? 8 : 12;
|
||||
for (i = 0; i < scalingListCount; i++) {
|
||||
if (expGolombDecoder.readBoolean()) { // seq_scaling_list_present_flag[ i ]
|
||||
if (i < 6) {
|
||||
skipScalingList(16, expGolombDecoder);
|
||||
} else {
|
||||
skipScalingList(64, expGolombDecoder);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // log2_max_frame_num_minus4
|
||||
picOrderCntType = expGolombDecoder.readUnsignedExpGolomb();
|
||||
|
||||
if (picOrderCntType === 0) {
|
||||
expGolombDecoder.readUnsignedExpGolomb(); // log2_max_pic_order_cnt_lsb_minus4
|
||||
} else if (picOrderCntType === 1) {
|
||||
expGolombDecoder.skipBits(1); // delta_pic_order_always_zero_flag
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_non_ref_pic
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_top_to_bottom_field
|
||||
numRefFramesInPicOrderCntCycle = expGolombDecoder.readUnsignedExpGolomb();
|
||||
for (i = 0; i < numRefFramesInPicOrderCntCycle; i++) {
|
||||
expGolombDecoder.skipExpGolomb(); // offset_for_ref_frame[ i ]
|
||||
}
|
||||
}
|
||||
|
||||
expGolombDecoder.skipUnsignedExpGolomb(); // max_num_ref_frames
|
||||
expGolombDecoder.skipBits(1); // gaps_in_frame_num_value_allowed_flag
|
||||
|
||||
picWidthInMbsMinus1 = expGolombDecoder.readUnsignedExpGolomb();
|
||||
picHeightInMapUnitsMinus1 = expGolombDecoder.readUnsignedExpGolomb();
|
||||
|
||||
frameMbsOnlyFlag = expGolombDecoder.readBits(1);
|
||||
if (frameMbsOnlyFlag === 0) {
|
||||
expGolombDecoder.skipBits(1); // mb_adaptive_frame_field_flag
|
||||
}
|
||||
|
||||
expGolombDecoder.skipBits(1); // direct_8x8_inference_flag
|
||||
if (expGolombDecoder.readBoolean()) { // frame_cropping_flag
|
||||
frameCropLeftOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropRightOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropTopOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
frameCropBottomOffset = expGolombDecoder.readUnsignedExpGolomb();
|
||||
}
|
||||
if (expGolombDecoder.readBoolean()) {
|
||||
// vui_parameters_present_flag
|
||||
if (expGolombDecoder.readBoolean()) {
|
||||
// aspect_ratio_info_present_flag
|
||||
aspectRatioIdc = expGolombDecoder.readUnsignedByte();
|
||||
switch (aspectRatioIdc) {
|
||||
case 1: sarRatio = [1, 1]; break;
|
||||
case 2: sarRatio = [12, 11]; break;
|
||||
case 3: sarRatio = [10, 11]; break;
|
||||
case 4: sarRatio = [16, 11]; break;
|
||||
case 5: sarRatio = [40, 33]; break;
|
||||
case 6: sarRatio = [24, 11]; break;
|
||||
case 7: sarRatio = [20, 11]; break;
|
||||
case 8: sarRatio = [32, 11]; break;
|
||||
case 9: sarRatio = [80, 33]; break;
|
||||
case 10: sarRatio = [18, 11]; break;
|
||||
case 11: sarRatio = [15, 11]; break;
|
||||
case 12: sarRatio = [64, 33]; break;
|
||||
case 13: sarRatio = [160, 99]; break;
|
||||
case 14: sarRatio = [4, 3]; break;
|
||||
case 15: sarRatio = [3, 2]; break;
|
||||
case 16: sarRatio = [2, 1]; break;
|
||||
case 255: {
|
||||
sarRatio = [expGolombDecoder.readUnsignedByte() << 8 |
|
||||
expGolombDecoder.readUnsignedByte(),
|
||||
expGolombDecoder.readUnsignedByte() << 8 |
|
||||
expGolombDecoder.readUnsignedByte() ];
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (sarRatio) {
|
||||
sarScale = sarRatio[0] / sarRatio[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
return {
|
||||
profileIdc: profileIdc,
|
||||
levelIdc: levelIdc,
|
||||
profileCompatibility: profileCompatibility,
|
||||
width: (((picWidthInMbsMinus1 + 1) * 16) - frameCropLeftOffset * 2 - frameCropRightOffset * 2),
|
||||
height: ((2 - frameMbsOnlyFlag) * (picHeightInMapUnitsMinus1 + 1) * 16) - (frameCropTopOffset * 2) - (frameCropBottomOffset * 2),
|
||||
// sar is sample aspect ratio
|
||||
sarRatio: sarRatio
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
H264Stream.prototype = new Stream();
|
||||
|
||||
module.exports = {
|
||||
H264Stream: H264Stream,
|
||||
NalByteStream: NalByteStream
|
||||
};
|
||||
|
|
20
node_modules/mux.js/lib/codecs/index.js
generated
vendored
20
node_modules/mux.js/lib/codecs/index.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = {
|
||||
Adts: require('./adts'),
|
||||
h264: require('./h264')
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = {
|
||||
Adts: require('./adts'),
|
||||
h264: require('./h264')
|
||||
};
|
||||
|
|
20
node_modules/mux.js/lib/constants/audio-properties.js
generated
vendored
20
node_modules/mux.js/lib/constants/audio-properties.js
generated
vendored
|
@ -1,10 +1,10 @@
|
|||
// constants
|
||||
var AUDIO_PROPERTIES = [
|
||||
'audioobjecttype',
|
||||
'channelcount',
|
||||
'samplerate',
|
||||
'samplingfrequencyindex',
|
||||
'samplesize'
|
||||
];
|
||||
|
||||
module.exports = AUDIO_PROPERTIES;
|
||||
// constants
|
||||
var AUDIO_PROPERTIES = [
|
||||
'audioobjecttype',
|
||||
'channelcount',
|
||||
'samplerate',
|
||||
'samplingfrequencyindex',
|
||||
'samplesize'
|
||||
];
|
||||
|
||||
module.exports = AUDIO_PROPERTIES;
|
||||
|
|
22
node_modules/mux.js/lib/constants/video-properties.js
generated
vendored
22
node_modules/mux.js/lib/constants/video-properties.js
generated
vendored
|
@ -1,11 +1,11 @@
|
|||
var VIDEO_PROPERTIES = [
|
||||
'width',
|
||||
'height',
|
||||
'profileIdc',
|
||||
'levelIdc',
|
||||
'profileCompatibility',
|
||||
'sarRatio'
|
||||
];
|
||||
|
||||
|
||||
module.exports = VIDEO_PROPERTIES;
|
||||
var VIDEO_PROPERTIES = [
|
||||
'width',
|
||||
'height',
|
||||
'profileIdc',
|
||||
'levelIdc',
|
||||
'profileCompatibility',
|
||||
'sarRatio'
|
||||
];
|
||||
|
||||
|
||||
module.exports = VIDEO_PROPERTIES;
|
||||
|
|
96
node_modules/mux.js/lib/data/silence.js
generated
vendored
96
node_modules/mux.js/lib/data/silence.js
generated
vendored
|
@ -1,48 +1,48 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var highPrefix = [33, 16, 5, 32, 164, 27];
|
||||
var lowPrefix = [33, 65, 108, 84, 1, 2, 4, 8, 168, 2, 4, 8, 17, 191, 252];
|
||||
var zeroFill = function(count) {
|
||||
var a = [];
|
||||
while (count--) {
|
||||
a.push(0);
|
||||
}
|
||||
return a;
|
||||
};
|
||||
|
||||
var makeTable = function(metaTable) {
|
||||
return Object.keys(metaTable).reduce(function(obj, key) {
|
||||
obj[key] = new Uint8Array(metaTable[key].reduce(function(arr, part) {
|
||||
return arr.concat(part);
|
||||
}, []));
|
||||
return obj;
|
||||
}, {});
|
||||
};
|
||||
|
||||
|
||||
var silence;
|
||||
|
||||
module.exports = function() {
|
||||
if (!silence) {
|
||||
// Frames-of-silence to use for filling in missing AAC frames
|
||||
var coneOfSilence = {
|
||||
96000: [highPrefix, [227, 64], zeroFill(154), [56]],
|
||||
88200: [highPrefix, [231], zeroFill(170), [56]],
|
||||
64000: [highPrefix, [248, 192], zeroFill(240), [56]],
|
||||
48000: [highPrefix, [255, 192], zeroFill(268), [55, 148, 128], zeroFill(54), [112]],
|
||||
44100: [highPrefix, [255, 192], zeroFill(268), [55, 163, 128], zeroFill(84), [112]],
|
||||
32000: [highPrefix, [255, 192], zeroFill(268), [55, 234], zeroFill(226), [112]],
|
||||
24000: [highPrefix, [255, 192], zeroFill(268), [55, 255, 128], zeroFill(268), [111, 112], zeroFill(126), [224]],
|
||||
16000: [highPrefix, [255, 192], zeroFill(268), [55, 255, 128], zeroFill(268), [111, 255], zeroFill(269), [223, 108], zeroFill(195), [1, 192]],
|
||||
12000: [lowPrefix, zeroFill(268), [3, 127, 248], zeroFill(268), [6, 255, 240], zeroFill(268), [13, 255, 224], zeroFill(268), [27, 253, 128], zeroFill(259), [56]],
|
||||
11025: [lowPrefix, zeroFill(268), [3, 127, 248], zeroFill(268), [6, 255, 240], zeroFill(268), [13, 255, 224], zeroFill(268), [27, 255, 192], zeroFill(268), [55, 175, 128], zeroFill(108), [112]],
|
||||
8000: [lowPrefix, zeroFill(268), [3, 121, 16], zeroFill(47), [7]]
|
||||
};
|
||||
silence = makeTable(coneOfSilence);
|
||||
}
|
||||
return silence;
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var highPrefix = [33, 16, 5, 32, 164, 27];
|
||||
var lowPrefix = [33, 65, 108, 84, 1, 2, 4, 8, 168, 2, 4, 8, 17, 191, 252];
|
||||
var zeroFill = function(count) {
|
||||
var a = [];
|
||||
while (count--) {
|
||||
a.push(0);
|
||||
}
|
||||
return a;
|
||||
};
|
||||
|
||||
var makeTable = function(metaTable) {
|
||||
return Object.keys(metaTable).reduce(function(obj, key) {
|
||||
obj[key] = new Uint8Array(metaTable[key].reduce(function(arr, part) {
|
||||
return arr.concat(part);
|
||||
}, []));
|
||||
return obj;
|
||||
}, {});
|
||||
};
|
||||
|
||||
|
||||
var silence;
|
||||
|
||||
module.exports = function() {
|
||||
if (!silence) {
|
||||
// Frames-of-silence to use for filling in missing AAC frames
|
||||
var coneOfSilence = {
|
||||
96000: [highPrefix, [227, 64], zeroFill(154), [56]],
|
||||
88200: [highPrefix, [231], zeroFill(170), [56]],
|
||||
64000: [highPrefix, [248, 192], zeroFill(240), [56]],
|
||||
48000: [highPrefix, [255, 192], zeroFill(268), [55, 148, 128], zeroFill(54), [112]],
|
||||
44100: [highPrefix, [255, 192], zeroFill(268), [55, 163, 128], zeroFill(84), [112]],
|
||||
32000: [highPrefix, [255, 192], zeroFill(268), [55, 234], zeroFill(226), [112]],
|
||||
24000: [highPrefix, [255, 192], zeroFill(268), [55, 255, 128], zeroFill(268), [111, 112], zeroFill(126), [224]],
|
||||
16000: [highPrefix, [255, 192], zeroFill(268), [55, 255, 128], zeroFill(268), [111, 255], zeroFill(269), [223, 108], zeroFill(195), [1, 192]],
|
||||
12000: [lowPrefix, zeroFill(268), [3, 127, 248], zeroFill(268), [6, 255, 240], zeroFill(268), [13, 255, 224], zeroFill(268), [27, 253, 128], zeroFill(259), [56]],
|
||||
11025: [lowPrefix, zeroFill(268), [3, 127, 248], zeroFill(268), [6, 255, 240], zeroFill(268), [13, 255, 224], zeroFill(268), [27, 255, 192], zeroFill(268), [55, 175, 128], zeroFill(108), [112]],
|
||||
8000: [lowPrefix, zeroFill(268), [3, 121, 16], zeroFill(47), [7]]
|
||||
};
|
||||
silence = makeTable(coneOfSilence);
|
||||
}
|
||||
return silence;
|
||||
};
|
||||
|
|
46
node_modules/mux.js/lib/index.js
generated
vendored
46
node_modules/mux.js/lib/index.js
generated
vendored
|
@ -1,23 +1,23 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var muxjs = {
|
||||
codecs: require('./codecs'),
|
||||
mp4: require('./mp4'),
|
||||
flv: require('./flv'),
|
||||
mp2t: require('./m2ts'),
|
||||
partial: require('./partial')
|
||||
};
|
||||
|
||||
// include all the tools when the full library is required
|
||||
muxjs.mp4.tools = require('./tools/mp4-inspector');
|
||||
muxjs.flv.tools = require('./tools/flv-inspector');
|
||||
muxjs.mp2t.tools = require('./tools/ts-inspector');
|
||||
|
||||
|
||||
module.exports = muxjs;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var muxjs = {
|
||||
codecs: require('./codecs'),
|
||||
mp4: require('./mp4'),
|
||||
flv: require('./flv'),
|
||||
mp2t: require('./m2ts'),
|
||||
partial: require('./partial')
|
||||
};
|
||||
|
||||
// include all the tools when the full library is required
|
||||
muxjs.mp4.tools = require('./tools/mp4-inspector');
|
||||
muxjs.flv.tools = require('./tools/flv-inspector');
|
||||
muxjs.mp2t.tools = require('./tools/ts-inspector');
|
||||
|
||||
|
||||
module.exports = muxjs;
|
||||
|
|
3356
node_modules/mux.js/lib/m2ts/caption-stream.js
generated
vendored
3356
node_modules/mux.js/lib/m2ts/caption-stream.js
generated
vendored
File diff suppressed because it is too large
Load diff
14
node_modules/mux.js/lib/m2ts/index.js
generated
vendored
14
node_modules/mux.js/lib/m2ts/index.js
generated
vendored
|
@ -1,7 +1,7 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = require('./m2ts');
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = require('./m2ts');
|
||||
|
|
574
node_modules/mux.js/lib/m2ts/probe.js
generated
vendored
574
node_modules/mux.js/lib/m2ts/probe.js
generated
vendored
|
@ -1,287 +1,287 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about TS Segments.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var StreamTypes = require('./stream-types.js');
|
||||
|
||||
var parsePid = function(packet) {
|
||||
var pid = packet[1] & 0x1f;
|
||||
pid <<= 8;
|
||||
pid |= packet[2];
|
||||
return pid;
|
||||
};
|
||||
|
||||
var parsePayloadUnitStartIndicator = function(packet) {
|
||||
return !!(packet[1] & 0x40);
|
||||
};
|
||||
|
||||
var parseAdaptionField = function(packet) {
|
||||
var offset = 0;
|
||||
// if an adaption field is present, its length is specified by the
|
||||
// fifth byte of the TS packet header. The adaptation field is
|
||||
// used to add stuffing to PES packets that don't fill a complete
|
||||
// TS packet, and to specify some forms of timing and control data
|
||||
// that we do not currently use.
|
||||
if (((packet[3] & 0x30) >>> 4) > 0x01) {
|
||||
offset += packet[4] + 1;
|
||||
}
|
||||
return offset;
|
||||
};
|
||||
|
||||
var parseType = function(packet, pmtPid) {
|
||||
var pid = parsePid(packet);
|
||||
if (pid === 0) {
|
||||
return 'pat';
|
||||
} else if (pid === pmtPid) {
|
||||
return 'pmt';
|
||||
} else if (pmtPid) {
|
||||
return 'pes';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
var parsePat = function(packet) {
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (pusi) {
|
||||
offset += packet[offset] + 1;
|
||||
}
|
||||
|
||||
return (packet[offset + 10] & 0x1f) << 8 | packet[offset + 11];
|
||||
};
|
||||
|
||||
var parsePmt = function(packet) {
|
||||
var programMapTable = {};
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
var payloadOffset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (pusi) {
|
||||
payloadOffset += packet[payloadOffset] + 1;
|
||||
}
|
||||
|
||||
// PMTs can be sent ahead of the time when they should actually
|
||||
// take effect. We don't believe this should ever be the case
|
||||
// for HLS but we'll ignore "forward" PMT declarations if we see
|
||||
// them. Future PMT declarations have the current_next_indicator
|
||||
// set to zero.
|
||||
if (!(packet[payloadOffset + 5] & 0x01)) {
|
||||
return;
|
||||
}
|
||||
|
||||
var sectionLength, tableEnd, programInfoLength;
|
||||
// the mapping table ends at the end of the current section
|
||||
sectionLength = (packet[payloadOffset + 1] & 0x0f) << 8 | packet[payloadOffset + 2];
|
||||
tableEnd = 3 + sectionLength - 4;
|
||||
|
||||
// to determine where the table is, we have to figure out how
|
||||
// long the program info descriptors are
|
||||
programInfoLength = (packet[payloadOffset + 10] & 0x0f) << 8 | packet[payloadOffset + 11];
|
||||
|
||||
// advance the offset to the first entry in the mapping table
|
||||
var offset = 12 + programInfoLength;
|
||||
while (offset < tableEnd) {
|
||||
var i = payloadOffset + offset;
|
||||
// add an entry that maps the elementary_pid to the stream_type
|
||||
programMapTable[(packet[i + 1] & 0x1F) << 8 | packet[i + 2]] = packet[i];
|
||||
|
||||
// move to the next table entry
|
||||
// skip past the elementary stream descriptors, if present
|
||||
offset += ((packet[i + 3] & 0x0F) << 8 | packet[i + 4]) + 5;
|
||||
}
|
||||
return programMapTable;
|
||||
};
|
||||
|
||||
var parsePesType = function(packet, programMapTable) {
|
||||
var pid = parsePid(packet);
|
||||
var type = programMapTable[pid];
|
||||
switch (type) {
|
||||
case StreamTypes.H264_STREAM_TYPE:
|
||||
return 'video';
|
||||
case StreamTypes.ADTS_STREAM_TYPE:
|
||||
return 'audio';
|
||||
case StreamTypes.METADATA_STREAM_TYPE:
|
||||
return 'timed-metadata';
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
var parsePesTime = function(packet) {
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
if (!pusi) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (offset >= packet.byteLength) {
|
||||
// From the H 222.0 MPEG-TS spec
|
||||
// "For transport stream packets carrying PES packets, stuffing is needed when there
|
||||
// is insufficient PES packet data to completely fill the transport stream packet
|
||||
// payload bytes. Stuffing is accomplished by defining an adaptation field longer than
|
||||
// the sum of the lengths of the data elements in it, so that the payload bytes
|
||||
// remaining after the adaptation field exactly accommodates the available PES packet
|
||||
// data."
|
||||
//
|
||||
// If the offset is >= the length of the packet, then the packet contains no data
|
||||
// and instead is just adaption field stuffing bytes
|
||||
return null;
|
||||
}
|
||||
|
||||
var pes = null;
|
||||
var ptsDtsFlags;
|
||||
|
||||
// PES packets may be annotated with a PTS value, or a PTS value
|
||||
// and a DTS value. Determine what combination of values is
|
||||
// available to work with.
|
||||
ptsDtsFlags = packet[offset + 7];
|
||||
|
||||
// PTS and DTS are normally stored as a 33-bit number. Javascript
|
||||
// performs all bitwise operations on 32-bit integers but javascript
|
||||
// supports a much greater range (52-bits) of integer using standard
|
||||
// mathematical operations.
|
||||
// We construct a 31-bit value using bitwise operators over the 31
|
||||
// most significant bits and then multiply by 4 (equal to a left-shift
|
||||
// of 2) before we add the final 2 least significant bits of the
|
||||
// timestamp (equal to an OR.)
|
||||
if (ptsDtsFlags & 0xC0) {
|
||||
pes = {};
|
||||
// the PTS and DTS are not written out directly. For information
|
||||
// on how they are encoded, see
|
||||
// http://dvd.sourceforge.net/dvdinfo/pes-hdr.html
|
||||
pes.pts = (packet[offset + 9] & 0x0E) << 27 |
|
||||
(packet[offset + 10] & 0xFF) << 20 |
|
||||
(packet[offset + 11] & 0xFE) << 12 |
|
||||
(packet[offset + 12] & 0xFF) << 5 |
|
||||
(packet[offset + 13] & 0xFE) >>> 3;
|
||||
pes.pts *= 4; // Left shift by 2
|
||||
pes.pts += (packet[offset + 13] & 0x06) >>> 1; // OR by the two LSBs
|
||||
pes.dts = pes.pts;
|
||||
if (ptsDtsFlags & 0x40) {
|
||||
pes.dts = (packet[offset + 14] & 0x0E) << 27 |
|
||||
(packet[offset + 15] & 0xFF) << 20 |
|
||||
(packet[offset + 16] & 0xFE) << 12 |
|
||||
(packet[offset + 17] & 0xFF) << 5 |
|
||||
(packet[offset + 18] & 0xFE) >>> 3;
|
||||
pes.dts *= 4; // Left shift by 2
|
||||
pes.dts += (packet[offset + 18] & 0x06) >>> 1; // OR by the two LSBs
|
||||
}
|
||||
}
|
||||
return pes;
|
||||
};
|
||||
|
||||
var parseNalUnitType = function(type) {
|
||||
switch (type) {
|
||||
case 0x05:
|
||||
return 'slice_layer_without_partitioning_rbsp_idr';
|
||||
case 0x06:
|
||||
return 'sei_rbsp';
|
||||
case 0x07:
|
||||
return 'seq_parameter_set_rbsp';
|
||||
case 0x08:
|
||||
return 'pic_parameter_set_rbsp';
|
||||
case 0x09:
|
||||
return 'access_unit_delimiter_rbsp';
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
var videoPacketContainsKeyFrame = function(packet) {
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
var frameBuffer = packet.subarray(offset);
|
||||
var frameI = 0;
|
||||
var frameSyncPoint = 0;
|
||||
var foundKeyFrame = false;
|
||||
var nalType;
|
||||
|
||||
// advance the sync point to a NAL start, if necessary
|
||||
for (; frameSyncPoint < frameBuffer.byteLength - 3; frameSyncPoint++) {
|
||||
if (frameBuffer[frameSyncPoint + 2] === 1) {
|
||||
// the sync point is properly aligned
|
||||
frameI = frameSyncPoint + 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while (frameI < frameBuffer.byteLength) {
|
||||
// look at the current byte to determine if we've hit the end of
|
||||
// a NAL unit boundary
|
||||
switch (frameBuffer[frameI]) {
|
||||
case 0:
|
||||
// skip past non-sync sequences
|
||||
if (frameBuffer[frameI - 1] !== 0) {
|
||||
frameI += 2;
|
||||
break;
|
||||
} else if (frameBuffer[frameI - 2] !== 0) {
|
||||
frameI++;
|
||||
break;
|
||||
}
|
||||
|
||||
if (frameSyncPoint + 3 !== frameI - 2) {
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
}
|
||||
|
||||
// drop trailing zeroes
|
||||
do {
|
||||
frameI++;
|
||||
} while (frameBuffer[frameI] !== 1 && frameI < frameBuffer.length);
|
||||
frameSyncPoint = frameI - 2;
|
||||
frameI += 3;
|
||||
break;
|
||||
case 1:
|
||||
// skip past non-sync sequences
|
||||
if (frameBuffer[frameI - 1] !== 0 ||
|
||||
frameBuffer[frameI - 2] !== 0) {
|
||||
frameI += 3;
|
||||
break;
|
||||
}
|
||||
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
frameSyncPoint = frameI - 2;
|
||||
frameI += 3;
|
||||
break;
|
||||
default:
|
||||
// the current byte isn't a one or zero, so it cannot be part
|
||||
// of a sync sequence
|
||||
frameI += 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
frameBuffer = frameBuffer.subarray(frameSyncPoint);
|
||||
frameI -= frameSyncPoint;
|
||||
frameSyncPoint = 0;
|
||||
// parse the final nal
|
||||
if (frameBuffer && frameBuffer.byteLength > 3) {
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
}
|
||||
|
||||
return foundKeyFrame;
|
||||
};
|
||||
|
||||
|
||||
module.exports = {
|
||||
parseType: parseType,
|
||||
parsePat: parsePat,
|
||||
parsePmt: parsePmt,
|
||||
parsePayloadUnitStartIndicator: parsePayloadUnitStartIndicator,
|
||||
parsePesType: parsePesType,
|
||||
parsePesTime: parsePesTime,
|
||||
videoPacketContainsKeyFrame: videoPacketContainsKeyFrame
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about TS Segments.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var StreamTypes = require('./stream-types.js');
|
||||
|
||||
var parsePid = function(packet) {
|
||||
var pid = packet[1] & 0x1f;
|
||||
pid <<= 8;
|
||||
pid |= packet[2];
|
||||
return pid;
|
||||
};
|
||||
|
||||
var parsePayloadUnitStartIndicator = function(packet) {
|
||||
return !!(packet[1] & 0x40);
|
||||
};
|
||||
|
||||
var parseAdaptionField = function(packet) {
|
||||
var offset = 0;
|
||||
// if an adaption field is present, its length is specified by the
|
||||
// fifth byte of the TS packet header. The adaptation field is
|
||||
// used to add stuffing to PES packets that don't fill a complete
|
||||
// TS packet, and to specify some forms of timing and control data
|
||||
// that we do not currently use.
|
||||
if (((packet[3] & 0x30) >>> 4) > 0x01) {
|
||||
offset += packet[4] + 1;
|
||||
}
|
||||
return offset;
|
||||
};
|
||||
|
||||
var parseType = function(packet, pmtPid) {
|
||||
var pid = parsePid(packet);
|
||||
if (pid === 0) {
|
||||
return 'pat';
|
||||
} else if (pid === pmtPid) {
|
||||
return 'pmt';
|
||||
} else if (pmtPid) {
|
||||
return 'pes';
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
var parsePat = function(packet) {
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (pusi) {
|
||||
offset += packet[offset] + 1;
|
||||
}
|
||||
|
||||
return (packet[offset + 10] & 0x1f) << 8 | packet[offset + 11];
|
||||
};
|
||||
|
||||
var parsePmt = function(packet) {
|
||||
var programMapTable = {};
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
var payloadOffset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (pusi) {
|
||||
payloadOffset += packet[payloadOffset] + 1;
|
||||
}
|
||||
|
||||
// PMTs can be sent ahead of the time when they should actually
|
||||
// take effect. We don't believe this should ever be the case
|
||||
// for HLS but we'll ignore "forward" PMT declarations if we see
|
||||
// them. Future PMT declarations have the current_next_indicator
|
||||
// set to zero.
|
||||
if (!(packet[payloadOffset + 5] & 0x01)) {
|
||||
return;
|
||||
}
|
||||
|
||||
var sectionLength, tableEnd, programInfoLength;
|
||||
// the mapping table ends at the end of the current section
|
||||
sectionLength = (packet[payloadOffset + 1] & 0x0f) << 8 | packet[payloadOffset + 2];
|
||||
tableEnd = 3 + sectionLength - 4;
|
||||
|
||||
// to determine where the table is, we have to figure out how
|
||||
// long the program info descriptors are
|
||||
programInfoLength = (packet[payloadOffset + 10] & 0x0f) << 8 | packet[payloadOffset + 11];
|
||||
|
||||
// advance the offset to the first entry in the mapping table
|
||||
var offset = 12 + programInfoLength;
|
||||
while (offset < tableEnd) {
|
||||
var i = payloadOffset + offset;
|
||||
// add an entry that maps the elementary_pid to the stream_type
|
||||
programMapTable[(packet[i + 1] & 0x1F) << 8 | packet[i + 2]] = packet[i];
|
||||
|
||||
// move to the next table entry
|
||||
// skip past the elementary stream descriptors, if present
|
||||
offset += ((packet[i + 3] & 0x0F) << 8 | packet[i + 4]) + 5;
|
||||
}
|
||||
return programMapTable;
|
||||
};
|
||||
|
||||
var parsePesType = function(packet, programMapTable) {
|
||||
var pid = parsePid(packet);
|
||||
var type = programMapTable[pid];
|
||||
switch (type) {
|
||||
case StreamTypes.H264_STREAM_TYPE:
|
||||
return 'video';
|
||||
case StreamTypes.ADTS_STREAM_TYPE:
|
||||
return 'audio';
|
||||
case StreamTypes.METADATA_STREAM_TYPE:
|
||||
return 'timed-metadata';
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
var parsePesTime = function(packet) {
|
||||
var pusi = parsePayloadUnitStartIndicator(packet);
|
||||
if (!pusi) {
|
||||
return null;
|
||||
}
|
||||
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
|
||||
if (offset >= packet.byteLength) {
|
||||
// From the H 222.0 MPEG-TS spec
|
||||
// "For transport stream packets carrying PES packets, stuffing is needed when there
|
||||
// is insufficient PES packet data to completely fill the transport stream packet
|
||||
// payload bytes. Stuffing is accomplished by defining an adaptation field longer than
|
||||
// the sum of the lengths of the data elements in it, so that the payload bytes
|
||||
// remaining after the adaptation field exactly accommodates the available PES packet
|
||||
// data."
|
||||
//
|
||||
// If the offset is >= the length of the packet, then the packet contains no data
|
||||
// and instead is just adaption field stuffing bytes
|
||||
return null;
|
||||
}
|
||||
|
||||
var pes = null;
|
||||
var ptsDtsFlags;
|
||||
|
||||
// PES packets may be annotated with a PTS value, or a PTS value
|
||||
// and a DTS value. Determine what combination of values is
|
||||
// available to work with.
|
||||
ptsDtsFlags = packet[offset + 7];
|
||||
|
||||
// PTS and DTS are normally stored as a 33-bit number. Javascript
|
||||
// performs all bitwise operations on 32-bit integers but javascript
|
||||
// supports a much greater range (52-bits) of integer using standard
|
||||
// mathematical operations.
|
||||
// We construct a 31-bit value using bitwise operators over the 31
|
||||
// most significant bits and then multiply by 4 (equal to a left-shift
|
||||
// of 2) before we add the final 2 least significant bits of the
|
||||
// timestamp (equal to an OR.)
|
||||
if (ptsDtsFlags & 0xC0) {
|
||||
pes = {};
|
||||
// the PTS and DTS are not written out directly. For information
|
||||
// on how they are encoded, see
|
||||
// http://dvd.sourceforge.net/dvdinfo/pes-hdr.html
|
||||
pes.pts = (packet[offset + 9] & 0x0E) << 27 |
|
||||
(packet[offset + 10] & 0xFF) << 20 |
|
||||
(packet[offset + 11] & 0xFE) << 12 |
|
||||
(packet[offset + 12] & 0xFF) << 5 |
|
||||
(packet[offset + 13] & 0xFE) >>> 3;
|
||||
pes.pts *= 4; // Left shift by 2
|
||||
pes.pts += (packet[offset + 13] & 0x06) >>> 1; // OR by the two LSBs
|
||||
pes.dts = pes.pts;
|
||||
if (ptsDtsFlags & 0x40) {
|
||||
pes.dts = (packet[offset + 14] & 0x0E) << 27 |
|
||||
(packet[offset + 15] & 0xFF) << 20 |
|
||||
(packet[offset + 16] & 0xFE) << 12 |
|
||||
(packet[offset + 17] & 0xFF) << 5 |
|
||||
(packet[offset + 18] & 0xFE) >>> 3;
|
||||
pes.dts *= 4; // Left shift by 2
|
||||
pes.dts += (packet[offset + 18] & 0x06) >>> 1; // OR by the two LSBs
|
||||
}
|
||||
}
|
||||
return pes;
|
||||
};
|
||||
|
||||
var parseNalUnitType = function(type) {
|
||||
switch (type) {
|
||||
case 0x05:
|
||||
return 'slice_layer_without_partitioning_rbsp_idr';
|
||||
case 0x06:
|
||||
return 'sei_rbsp';
|
||||
case 0x07:
|
||||
return 'seq_parameter_set_rbsp';
|
||||
case 0x08:
|
||||
return 'pic_parameter_set_rbsp';
|
||||
case 0x09:
|
||||
return 'access_unit_delimiter_rbsp';
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
};
|
||||
|
||||
var videoPacketContainsKeyFrame = function(packet) {
|
||||
var offset = 4 + parseAdaptionField(packet);
|
||||
var frameBuffer = packet.subarray(offset);
|
||||
var frameI = 0;
|
||||
var frameSyncPoint = 0;
|
||||
var foundKeyFrame = false;
|
||||
var nalType;
|
||||
|
||||
// advance the sync point to a NAL start, if necessary
|
||||
for (; frameSyncPoint < frameBuffer.byteLength - 3; frameSyncPoint++) {
|
||||
if (frameBuffer[frameSyncPoint + 2] === 1) {
|
||||
// the sync point is properly aligned
|
||||
frameI = frameSyncPoint + 5;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
while (frameI < frameBuffer.byteLength) {
|
||||
// look at the current byte to determine if we've hit the end of
|
||||
// a NAL unit boundary
|
||||
switch (frameBuffer[frameI]) {
|
||||
case 0:
|
||||
// skip past non-sync sequences
|
||||
if (frameBuffer[frameI - 1] !== 0) {
|
||||
frameI += 2;
|
||||
break;
|
||||
} else if (frameBuffer[frameI - 2] !== 0) {
|
||||
frameI++;
|
||||
break;
|
||||
}
|
||||
|
||||
if (frameSyncPoint + 3 !== frameI - 2) {
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
}
|
||||
|
||||
// drop trailing zeroes
|
||||
do {
|
||||
frameI++;
|
||||
} while (frameBuffer[frameI] !== 1 && frameI < frameBuffer.length);
|
||||
frameSyncPoint = frameI - 2;
|
||||
frameI += 3;
|
||||
break;
|
||||
case 1:
|
||||
// skip past non-sync sequences
|
||||
if (frameBuffer[frameI - 1] !== 0 ||
|
||||
frameBuffer[frameI - 2] !== 0) {
|
||||
frameI += 3;
|
||||
break;
|
||||
}
|
||||
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
frameSyncPoint = frameI - 2;
|
||||
frameI += 3;
|
||||
break;
|
||||
default:
|
||||
// the current byte isn't a one or zero, so it cannot be part
|
||||
// of a sync sequence
|
||||
frameI += 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
frameBuffer = frameBuffer.subarray(frameSyncPoint);
|
||||
frameI -= frameSyncPoint;
|
||||
frameSyncPoint = 0;
|
||||
// parse the final nal
|
||||
if (frameBuffer && frameBuffer.byteLength > 3) {
|
||||
nalType = parseNalUnitType(frameBuffer[frameSyncPoint + 3] & 0x1f);
|
||||
if (nalType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
foundKeyFrame = true;
|
||||
}
|
||||
}
|
||||
|
||||
return foundKeyFrame;
|
||||
};
|
||||
|
||||
|
||||
module.exports = {
|
||||
parseType: parseType,
|
||||
parsePat: parsePat,
|
||||
parsePmt: parsePmt,
|
||||
parsePayloadUnitStartIndicator: parsePayloadUnitStartIndicator,
|
||||
parsePesType: parsePesType,
|
||||
parsePesTime: parsePesTime,
|
||||
videoPacketContainsKeyFrame: videoPacketContainsKeyFrame
|
||||
};
|
||||
|
|
26
node_modules/mux.js/lib/m2ts/stream-types.js
generated
vendored
26
node_modules/mux.js/lib/m2ts/stream-types.js
generated
vendored
|
@ -1,13 +1,13 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
H264_STREAM_TYPE: 0x1B,
|
||||
ADTS_STREAM_TYPE: 0x0F,
|
||||
METADATA_STREAM_TYPE: 0x15
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
H264_STREAM_TYPE: 0x1B,
|
||||
ADTS_STREAM_TYPE: 0x0F,
|
||||
METADATA_STREAM_TYPE: 0x15
|
||||
};
|
||||
|
|
202
node_modules/mux.js/lib/m2ts/timestamp-rollover-stream.js
generated
vendored
202
node_modules/mux.js/lib/m2ts/timestamp-rollover-stream.js
generated
vendored
|
@ -1,101 +1,101 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Accepts program elementary stream (PES) data events and corrects
|
||||
* decode and presentation time stamps to account for a rollover
|
||||
* of the 33 bit value.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream');
|
||||
|
||||
var MAX_TS = 8589934592;
|
||||
|
||||
var RO_THRESH = 4294967296;
|
||||
|
||||
var TYPE_SHARED = 'shared';
|
||||
|
||||
var handleRollover = function(value, reference) {
|
||||
var direction = 1;
|
||||
|
||||
if (value > reference) {
|
||||
// If the current timestamp value is greater than our reference timestamp and we detect a
|
||||
// timestamp rollover, this means the roll over is happening in the opposite direction.
|
||||
// Example scenario: Enter a long stream/video just after a rollover occurred. The reference
|
||||
// point will be set to a small number, e.g. 1. The user then seeks backwards over the
|
||||
// rollover point. In loading this segment, the timestamp values will be very large,
|
||||
// e.g. 2^33 - 1. Since this comes before the data we loaded previously, we want to adjust
|
||||
// the time stamp to be `value - 2^33`.
|
||||
direction = -1;
|
||||
}
|
||||
|
||||
// Note: A seek forwards or back that is greater than the RO_THRESH (2^32, ~13 hours) will
|
||||
// cause an incorrect adjustment.
|
||||
while (Math.abs(reference - value) > RO_THRESH) {
|
||||
value += (direction * MAX_TS);
|
||||
}
|
||||
|
||||
return value;
|
||||
};
|
||||
|
||||
var TimestampRolloverStream = function(type) {
|
||||
var lastDTS, referenceDTS;
|
||||
|
||||
TimestampRolloverStream.prototype.init.call(this);
|
||||
|
||||
// The "shared" type is used in cases where a stream will contain muxed
|
||||
// video and audio. We could use `undefined` here, but having a string
|
||||
// makes debugging a little clearer.
|
||||
this.type_ = type || TYPE_SHARED;
|
||||
|
||||
this.push = function(data) {
|
||||
|
||||
// Any "shared" rollover streams will accept _all_ data. Otherwise,
|
||||
// streams will only accept data that matches their type.
|
||||
if (this.type_ !== TYPE_SHARED && data.type !== this.type_) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (referenceDTS === undefined) {
|
||||
referenceDTS = data.dts;
|
||||
}
|
||||
|
||||
data.dts = handleRollover(data.dts, referenceDTS);
|
||||
data.pts = handleRollover(data.pts, referenceDTS);
|
||||
|
||||
lastDTS = data.dts;
|
||||
|
||||
this.trigger('data', data);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
referenceDTS = lastDTS;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
|
||||
this.discontinuity = function() {
|
||||
referenceDTS = void 0;
|
||||
lastDTS = void 0;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
this.discontinuity();
|
||||
this.trigger('reset');
|
||||
};
|
||||
};
|
||||
|
||||
TimestampRolloverStream.prototype = new Stream();
|
||||
|
||||
module.exports = {
|
||||
TimestampRolloverStream: TimestampRolloverStream,
|
||||
handleRollover: handleRollover
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Accepts program elementary stream (PES) data events and corrects
|
||||
* decode and presentation time stamps to account for a rollover
|
||||
* of the 33 bit value.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream');
|
||||
|
||||
var MAX_TS = 8589934592;
|
||||
|
||||
var RO_THRESH = 4294967296;
|
||||
|
||||
var TYPE_SHARED = 'shared';
|
||||
|
||||
var handleRollover = function(value, reference) {
|
||||
var direction = 1;
|
||||
|
||||
if (value > reference) {
|
||||
// If the current timestamp value is greater than our reference timestamp and we detect a
|
||||
// timestamp rollover, this means the roll over is happening in the opposite direction.
|
||||
// Example scenario: Enter a long stream/video just after a rollover occurred. The reference
|
||||
// point will be set to a small number, e.g. 1. The user then seeks backwards over the
|
||||
// rollover point. In loading this segment, the timestamp values will be very large,
|
||||
// e.g. 2^33 - 1. Since this comes before the data we loaded previously, we want to adjust
|
||||
// the time stamp to be `value - 2^33`.
|
||||
direction = -1;
|
||||
}
|
||||
|
||||
// Note: A seek forwards or back that is greater than the RO_THRESH (2^32, ~13 hours) will
|
||||
// cause an incorrect adjustment.
|
||||
while (Math.abs(reference - value) > RO_THRESH) {
|
||||
value += (direction * MAX_TS);
|
||||
}
|
||||
|
||||
return value;
|
||||
};
|
||||
|
||||
var TimestampRolloverStream = function(type) {
|
||||
var lastDTS, referenceDTS;
|
||||
|
||||
TimestampRolloverStream.prototype.init.call(this);
|
||||
|
||||
// The "shared" type is used in cases where a stream will contain muxed
|
||||
// video and audio. We could use `undefined` here, but having a string
|
||||
// makes debugging a little clearer.
|
||||
this.type_ = type || TYPE_SHARED;
|
||||
|
||||
this.push = function(data) {
|
||||
|
||||
// Any "shared" rollover streams will accept _all_ data. Otherwise,
|
||||
// streams will only accept data that matches their type.
|
||||
if (this.type_ !== TYPE_SHARED && data.type !== this.type_) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (referenceDTS === undefined) {
|
||||
referenceDTS = data.dts;
|
||||
}
|
||||
|
||||
data.dts = handleRollover(data.dts, referenceDTS);
|
||||
data.pts = handleRollover(data.pts, referenceDTS);
|
||||
|
||||
lastDTS = data.dts;
|
||||
|
||||
this.trigger('data', data);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
referenceDTS = lastDTS;
|
||||
this.trigger('done');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline');
|
||||
};
|
||||
|
||||
this.discontinuity = function() {
|
||||
referenceDTS = void 0;
|
||||
lastDTS = void 0;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
this.discontinuity();
|
||||
this.trigger('reset');
|
||||
};
|
||||
};
|
||||
|
||||
TimestampRolloverStream.prototype = new Stream();
|
||||
|
||||
module.exports = {
|
||||
TimestampRolloverStream: TimestampRolloverStream,
|
||||
handleRollover: handleRollover
|
||||
};
|
||||
|
|
314
node_modules/mux.js/lib/mp4/audio-frame-utils.js
generated
vendored
314
node_modules/mux.js/lib/mp4/audio-frame-utils.js
generated
vendored
|
@ -1,157 +1,157 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var coneOfSilence = require('../data/silence');
|
||||
var clock = require('../utils/clock');
|
||||
|
||||
/**
|
||||
* Sum the `byteLength` properties of the data in each AAC frame
|
||||
*/
|
||||
var sumFrameByteLengths = function(array) {
|
||||
var
|
||||
i,
|
||||
currentObj,
|
||||
sum = 0;
|
||||
|
||||
// sum the byteLength's all each nal unit in the frame
|
||||
for (i = 0; i < array.length; i++) {
|
||||
currentObj = array[i];
|
||||
sum += currentObj.data.byteLength;
|
||||
}
|
||||
|
||||
return sum;
|
||||
};
|
||||
|
||||
// Possibly pad (prefix) the audio track with silence if appending this track
|
||||
// would lead to the introduction of a gap in the audio buffer
|
||||
var prefixWithSilence = function(
|
||||
track,
|
||||
frames,
|
||||
audioAppendStartTs,
|
||||
videoBaseMediaDecodeTime
|
||||
) {
|
||||
var
|
||||
baseMediaDecodeTimeTs,
|
||||
frameDuration = 0,
|
||||
audioGapDuration = 0,
|
||||
audioFillFrameCount = 0,
|
||||
audioFillDuration = 0,
|
||||
silentFrame,
|
||||
i,
|
||||
firstFrame;
|
||||
|
||||
if (!frames.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
baseMediaDecodeTimeTs =
|
||||
clock.audioTsToVideoTs(track.baseMediaDecodeTime, track.samplerate);
|
||||
// determine frame clock duration based on sample rate, round up to avoid overfills
|
||||
frameDuration = Math.ceil(clock.ONE_SECOND_IN_TS / (track.samplerate / 1024));
|
||||
|
||||
if (audioAppendStartTs && videoBaseMediaDecodeTime) {
|
||||
// insert the shortest possible amount (audio gap or audio to video gap)
|
||||
audioGapDuration =
|
||||
baseMediaDecodeTimeTs - Math.max(audioAppendStartTs, videoBaseMediaDecodeTime);
|
||||
// number of full frames in the audio gap
|
||||
audioFillFrameCount = Math.floor(audioGapDuration / frameDuration);
|
||||
audioFillDuration = audioFillFrameCount * frameDuration;
|
||||
}
|
||||
|
||||
// don't attempt to fill gaps smaller than a single frame or larger
|
||||
// than a half second
|
||||
if (audioFillFrameCount < 1 || audioFillDuration > clock.ONE_SECOND_IN_TS / 2) {
|
||||
return;
|
||||
}
|
||||
|
||||
silentFrame = coneOfSilence()[track.samplerate];
|
||||
|
||||
if (!silentFrame) {
|
||||
// we don't have a silent frame pregenerated for the sample rate, so use a frame
|
||||
// from the content instead
|
||||
silentFrame = frames[0].data;
|
||||
}
|
||||
|
||||
for (i = 0; i < audioFillFrameCount; i++) {
|
||||
firstFrame = frames[0];
|
||||
|
||||
frames.splice(0, 0, {
|
||||
data: silentFrame,
|
||||
dts: firstFrame.dts - frameDuration,
|
||||
pts: firstFrame.pts - frameDuration
|
||||
});
|
||||
}
|
||||
|
||||
track.baseMediaDecodeTime -=
|
||||
Math.floor(clock.videoTsToAudioTs(audioFillDuration, track.samplerate));
|
||||
|
||||
return audioFillDuration;
|
||||
};
|
||||
|
||||
// If the audio segment extends before the earliest allowed dts
|
||||
// value, remove AAC frames until starts at or after the earliest
|
||||
// allowed DTS so that we don't end up with a negative baseMedia-
|
||||
// DecodeTime for the audio track
|
||||
var trimAdtsFramesByEarliestDts = function(adtsFrames, track, earliestAllowedDts) {
|
||||
if (track.minSegmentDts >= earliestAllowedDts) {
|
||||
return adtsFrames;
|
||||
}
|
||||
|
||||
// We will need to recalculate the earliest segment Dts
|
||||
track.minSegmentDts = Infinity;
|
||||
|
||||
return adtsFrames.filter(function(currentFrame) {
|
||||
// If this is an allowed frame, keep it and record it's Dts
|
||||
if (currentFrame.dts >= earliestAllowedDts) {
|
||||
track.minSegmentDts = Math.min(track.minSegmentDts, currentFrame.dts);
|
||||
track.minSegmentPts = track.minSegmentDts;
|
||||
return true;
|
||||
}
|
||||
// Otherwise, discard it
|
||||
return false;
|
||||
});
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from an array of frames
|
||||
var generateSampleTable = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
samples = [];
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
samples.push({
|
||||
size: currentFrame.data.byteLength,
|
||||
duration: 1024 // For AAC audio, all samples contain 1024 samples
|
||||
});
|
||||
}
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's sample table from an array of frames
|
||||
var concatenateFrameData = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
dataOffset = 0,
|
||||
data = new Uint8Array(sumFrameByteLengths(frames));
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
|
||||
data.set(currentFrame.data, dataOffset);
|
||||
dataOffset += currentFrame.data.byteLength;
|
||||
}
|
||||
return data;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
prefixWithSilence: prefixWithSilence,
|
||||
trimAdtsFramesByEarliestDts: trimAdtsFramesByEarliestDts,
|
||||
generateSampleTable: generateSampleTable,
|
||||
concatenateFrameData: concatenateFrameData
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var coneOfSilence = require('../data/silence');
|
||||
var clock = require('../utils/clock');
|
||||
|
||||
/**
|
||||
* Sum the `byteLength` properties of the data in each AAC frame
|
||||
*/
|
||||
var sumFrameByteLengths = function(array) {
|
||||
var
|
||||
i,
|
||||
currentObj,
|
||||
sum = 0;
|
||||
|
||||
// sum the byteLength's all each nal unit in the frame
|
||||
for (i = 0; i < array.length; i++) {
|
||||
currentObj = array[i];
|
||||
sum += currentObj.data.byteLength;
|
||||
}
|
||||
|
||||
return sum;
|
||||
};
|
||||
|
||||
// Possibly pad (prefix) the audio track with silence if appending this track
|
||||
// would lead to the introduction of a gap in the audio buffer
|
||||
var prefixWithSilence = function(
|
||||
track,
|
||||
frames,
|
||||
audioAppendStartTs,
|
||||
videoBaseMediaDecodeTime
|
||||
) {
|
||||
var
|
||||
baseMediaDecodeTimeTs,
|
||||
frameDuration = 0,
|
||||
audioGapDuration = 0,
|
||||
audioFillFrameCount = 0,
|
||||
audioFillDuration = 0,
|
||||
silentFrame,
|
||||
i,
|
||||
firstFrame;
|
||||
|
||||
if (!frames.length) {
|
||||
return;
|
||||
}
|
||||
|
||||
baseMediaDecodeTimeTs =
|
||||
clock.audioTsToVideoTs(track.baseMediaDecodeTime, track.samplerate);
|
||||
// determine frame clock duration based on sample rate, round up to avoid overfills
|
||||
frameDuration = Math.ceil(clock.ONE_SECOND_IN_TS / (track.samplerate / 1024));
|
||||
|
||||
if (audioAppendStartTs && videoBaseMediaDecodeTime) {
|
||||
// insert the shortest possible amount (audio gap or audio to video gap)
|
||||
audioGapDuration =
|
||||
baseMediaDecodeTimeTs - Math.max(audioAppendStartTs, videoBaseMediaDecodeTime);
|
||||
// number of full frames in the audio gap
|
||||
audioFillFrameCount = Math.floor(audioGapDuration / frameDuration);
|
||||
audioFillDuration = audioFillFrameCount * frameDuration;
|
||||
}
|
||||
|
||||
// don't attempt to fill gaps smaller than a single frame or larger
|
||||
// than a half second
|
||||
if (audioFillFrameCount < 1 || audioFillDuration > clock.ONE_SECOND_IN_TS / 2) {
|
||||
return;
|
||||
}
|
||||
|
||||
silentFrame = coneOfSilence()[track.samplerate];
|
||||
|
||||
if (!silentFrame) {
|
||||
// we don't have a silent frame pregenerated for the sample rate, so use a frame
|
||||
// from the content instead
|
||||
silentFrame = frames[0].data;
|
||||
}
|
||||
|
||||
for (i = 0; i < audioFillFrameCount; i++) {
|
||||
firstFrame = frames[0];
|
||||
|
||||
frames.splice(0, 0, {
|
||||
data: silentFrame,
|
||||
dts: firstFrame.dts - frameDuration,
|
||||
pts: firstFrame.pts - frameDuration
|
||||
});
|
||||
}
|
||||
|
||||
track.baseMediaDecodeTime -=
|
||||
Math.floor(clock.videoTsToAudioTs(audioFillDuration, track.samplerate));
|
||||
|
||||
return audioFillDuration;
|
||||
};
|
||||
|
||||
// If the audio segment extends before the earliest allowed dts
|
||||
// value, remove AAC frames until starts at or after the earliest
|
||||
// allowed DTS so that we don't end up with a negative baseMedia-
|
||||
// DecodeTime for the audio track
|
||||
var trimAdtsFramesByEarliestDts = function(adtsFrames, track, earliestAllowedDts) {
|
||||
if (track.minSegmentDts >= earliestAllowedDts) {
|
||||
return adtsFrames;
|
||||
}
|
||||
|
||||
// We will need to recalculate the earliest segment Dts
|
||||
track.minSegmentDts = Infinity;
|
||||
|
||||
return adtsFrames.filter(function(currentFrame) {
|
||||
// If this is an allowed frame, keep it and record it's Dts
|
||||
if (currentFrame.dts >= earliestAllowedDts) {
|
||||
track.minSegmentDts = Math.min(track.minSegmentDts, currentFrame.dts);
|
||||
track.minSegmentPts = track.minSegmentDts;
|
||||
return true;
|
||||
}
|
||||
// Otherwise, discard it
|
||||
return false;
|
||||
});
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from an array of frames
|
||||
var generateSampleTable = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
samples = [];
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
samples.push({
|
||||
size: currentFrame.data.byteLength,
|
||||
duration: 1024 // For AAC audio, all samples contain 1024 samples
|
||||
});
|
||||
}
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's sample table from an array of frames
|
||||
var concatenateFrameData = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
dataOffset = 0,
|
||||
data = new Uint8Array(sumFrameByteLengths(frames));
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
|
||||
data.set(currentFrame.data, dataOffset);
|
||||
dataOffset += currentFrame.data.byteLength;
|
||||
}
|
||||
return data;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
prefixWithSilence: prefixWithSilence,
|
||||
trimAdtsFramesByEarliestDts: trimAdtsFramesByEarliestDts,
|
||||
generateSampleTable: generateSampleTable,
|
||||
concatenateFrameData: concatenateFrameData
|
||||
};
|
||||
|
|
956
node_modules/mux.js/lib/mp4/caption-parser.js
generated
vendored
956
node_modules/mux.js/lib/mp4/caption-parser.js
generated
vendored
|
@ -1,478 +1,478 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Reads in-band CEA-708 captions out of FMP4 segments.
|
||||
* @see https://en.wikipedia.org/wiki/CEA-708
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var discardEmulationPreventionBytes = require('../tools/caption-packet-parser').discardEmulationPreventionBytes;
|
||||
var CaptionStream = require('../m2ts/caption-stream').CaptionStream;
|
||||
var findBox = require('../mp4/find-box.js');
|
||||
var parseTfdt = require('../tools/parse-tfdt.js');
|
||||
var parseTrun = require('../tools/parse-trun.js');
|
||||
var parseTfhd = require('../tools/parse-tfhd.js');
|
||||
|
||||
/**
|
||||
* Maps an offset in the mdat to a sample based on the the size of the samples.
|
||||
* Assumes that `parseSamples` has been called first.
|
||||
*
|
||||
* @param {Number} offset - The offset into the mdat
|
||||
* @param {Object[]} samples - An array of samples, parsed using `parseSamples`
|
||||
* @return {?Object} The matching sample, or null if no match was found.
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.8.8
|
||||
**/
|
||||
var mapToSample = function(offset, samples) {
|
||||
var approximateOffset = offset;
|
||||
|
||||
for (var i = 0; i < samples.length; i++) {
|
||||
var sample = samples[i];
|
||||
|
||||
if (approximateOffset < sample.size) {
|
||||
return sample;
|
||||
}
|
||||
|
||||
approximateOffset -= sample.size;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Finds SEI nal units contained in a Media Data Box.
|
||||
* Assumes that `parseSamples` has been called first.
|
||||
*
|
||||
* @param {Uint8Array} avcStream - The bytes of the mdat
|
||||
* @param {Object[]} samples - The samples parsed out by `parseSamples`
|
||||
* @param {Number} trackId - The trackId of this video track
|
||||
* @return {Object[]} seiNals - the parsed SEI NALUs found.
|
||||
* The contents of the seiNal should match what is expected by
|
||||
* CaptionStream.push (nalUnitType, size, data, escapedRBSP, pts, dts)
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.1.1
|
||||
* @see Rec. ITU-T H.264, 7.3.2.3.1
|
||||
**/
|
||||
var findSeiNals = function(avcStream, samples, trackId) {
|
||||
var
|
||||
avcView = new DataView(avcStream.buffer, avcStream.byteOffset, avcStream.byteLength),
|
||||
result = {
|
||||
logs: [],
|
||||
seiNals: []
|
||||
},
|
||||
seiNal,
|
||||
i,
|
||||
length,
|
||||
lastMatchedSample;
|
||||
|
||||
for (i = 0; i + 4 < avcStream.length; i += length) {
|
||||
length = avcView.getUint32(i);
|
||||
i += 4;
|
||||
|
||||
// Bail if this doesn't appear to be an H264 stream
|
||||
if (length <= 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
switch (avcStream[i] & 0x1F) {
|
||||
case 0x06:
|
||||
var data = avcStream.subarray(i + 1, i + 1 + length);
|
||||
var matchingSample = mapToSample(i, samples);
|
||||
|
||||
seiNal = {
|
||||
nalUnitType: 'sei_rbsp',
|
||||
size: length,
|
||||
data: data,
|
||||
escapedRBSP: discardEmulationPreventionBytes(data),
|
||||
trackId: trackId
|
||||
};
|
||||
|
||||
if (matchingSample) {
|
||||
seiNal.pts = matchingSample.pts;
|
||||
seiNal.dts = matchingSample.dts;
|
||||
lastMatchedSample = matchingSample;
|
||||
} else if (lastMatchedSample) {
|
||||
// If a matching sample cannot be found, use the last
|
||||
// sample's values as they should be as close as possible
|
||||
seiNal.pts = lastMatchedSample.pts;
|
||||
seiNal.dts = lastMatchedSample.dts;
|
||||
} else {
|
||||
result.logs.push({
|
||||
level: 'warn',
|
||||
message: 'We\'ve encountered a nal unit without data at ' + i + ' for trackId ' + trackId + '. See mux.js#223.'
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
result.seiNals.push(seiNal);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses sample information out of Track Run Boxes and calculates
|
||||
* the absolute presentation and decode timestamps of each sample.
|
||||
*
|
||||
* @param {Array<Uint8Array>} truns - The Trun Run boxes to be parsed
|
||||
* @param {Number} baseMediaDecodeTime - base media decode time from tfdt
|
||||
@see ISO-BMFF-12/2015, Section 8.8.12
|
||||
* @param {Object} tfhd - The parsed Track Fragment Header
|
||||
* @see inspect.parseTfhd
|
||||
* @return {Object[]} the parsed samples
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.8.8
|
||||
**/
|
||||
var parseSamples = function(truns, baseMediaDecodeTime, tfhd) {
|
||||
var currentDts = baseMediaDecodeTime;
|
||||
var defaultSampleDuration = tfhd.defaultSampleDuration || 0;
|
||||
var defaultSampleSize = tfhd.defaultSampleSize || 0;
|
||||
var trackId = tfhd.trackId;
|
||||
var allSamples = [];
|
||||
|
||||
truns.forEach(function(trun) {
|
||||
// Note: We currently do not parse the sample table as well
|
||||
// as the trun. It's possible some sources will require this.
|
||||
// moov > trak > mdia > minf > stbl
|
||||
var trackRun = parseTrun(trun);
|
||||
var samples = trackRun.samples;
|
||||
|
||||
samples.forEach(function(sample) {
|
||||
if (sample.duration === undefined) {
|
||||
sample.duration = defaultSampleDuration;
|
||||
}
|
||||
if (sample.size === undefined) {
|
||||
sample.size = defaultSampleSize;
|
||||
}
|
||||
sample.trackId = trackId;
|
||||
sample.dts = currentDts;
|
||||
if (sample.compositionTimeOffset === undefined) {
|
||||
sample.compositionTimeOffset = 0;
|
||||
}
|
||||
sample.pts = currentDts + sample.compositionTimeOffset;
|
||||
|
||||
currentDts += sample.duration;
|
||||
});
|
||||
|
||||
allSamples = allSamples.concat(samples);
|
||||
});
|
||||
|
||||
return allSamples;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out caption nals from an FMP4 segment's video tracks.
|
||||
*
|
||||
* @param {Uint8Array} segment - The bytes of a single segment
|
||||
* @param {Number} videoTrackId - The trackId of a video track in the segment
|
||||
* @return {Object.<Number, Object[]>} A mapping of video trackId to
|
||||
* a list of seiNals found in that track
|
||||
**/
|
||||
var parseCaptionNals = function(segment, videoTrackId) {
|
||||
// To get the samples
|
||||
var trafs = findBox(segment, ['moof', 'traf']);
|
||||
// To get SEI NAL units
|
||||
var mdats = findBox(segment, ['mdat']);
|
||||
var captionNals = {};
|
||||
var mdatTrafPairs = [];
|
||||
|
||||
// Pair up each traf with a mdat as moofs and mdats are in pairs
|
||||
mdats.forEach(function(mdat, index) {
|
||||
var matchingTraf = trafs[index];
|
||||
mdatTrafPairs.push({
|
||||
mdat: mdat,
|
||||
traf: matchingTraf
|
||||
});
|
||||
});
|
||||
|
||||
mdatTrafPairs.forEach(function(pair) {
|
||||
var mdat = pair.mdat;
|
||||
var traf = pair.traf;
|
||||
var tfhd = findBox(traf, ['tfhd']);
|
||||
// Exactly 1 tfhd per traf
|
||||
var headerInfo = parseTfhd(tfhd[0]);
|
||||
var trackId = headerInfo.trackId;
|
||||
var tfdt = findBox(traf, ['tfdt']);
|
||||
// Either 0 or 1 tfdt per traf
|
||||
var baseMediaDecodeTime = (tfdt.length > 0) ? parseTfdt(tfdt[0]).baseMediaDecodeTime : 0;
|
||||
var truns = findBox(traf, ['trun']);
|
||||
var samples;
|
||||
var result;
|
||||
|
||||
// Only parse video data for the chosen video track
|
||||
if (videoTrackId === trackId && truns.length > 0) {
|
||||
samples = parseSamples(truns, baseMediaDecodeTime, headerInfo);
|
||||
|
||||
result = findSeiNals(mdat, samples, trackId);
|
||||
|
||||
if (!captionNals[trackId]) {
|
||||
captionNals[trackId] = {seiNals: [], logs: []};
|
||||
}
|
||||
|
||||
captionNals[trackId].seiNals = captionNals[trackId].seiNals.concat(result.seiNals);
|
||||
captionNals[trackId].logs = captionNals[trackId].logs.concat(result.logs);
|
||||
}
|
||||
});
|
||||
|
||||
return captionNals;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out inband captions from an MP4 container and returns
|
||||
* caption objects that can be used by WebVTT and the TextTrack API.
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/VTTCue
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/TextTrack
|
||||
* Assumes that `probe.getVideoTrackIds` and `probe.timescale` have been called first
|
||||
*
|
||||
* @param {Uint8Array} segment - The fmp4 segment containing embedded captions
|
||||
* @param {Number} trackId - The id of the video track to parse
|
||||
* @param {Number} timescale - The timescale for the video track from the init segment
|
||||
*
|
||||
* @return {?Object[]} parsedCaptions - A list of captions or null if no video tracks
|
||||
* @return {Number} parsedCaptions[].startTime - The time to show the caption in seconds
|
||||
* @return {Number} parsedCaptions[].endTime - The time to stop showing the caption in seconds
|
||||
* @return {String} parsedCaptions[].text - The visible content of the caption
|
||||
**/
|
||||
var parseEmbeddedCaptions = function(segment, trackId, timescale) {
|
||||
var captionNals;
|
||||
|
||||
// the ISO-BMFF spec says that trackId can't be zero, but there's some broken content out there
|
||||
if (trackId === null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
captionNals = parseCaptionNals(segment, trackId);
|
||||
|
||||
var trackNals = captionNals[trackId] || {};
|
||||
|
||||
return {
|
||||
seiNals: trackNals.seiNals,
|
||||
logs: trackNals.logs,
|
||||
timescale: timescale
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Converts SEI NALUs into captions that can be used by video.js
|
||||
**/
|
||||
var CaptionParser = function() {
|
||||
var isInitialized = false;
|
||||
var captionStream;
|
||||
|
||||
// Stores segments seen before trackId and timescale are set
|
||||
var segmentCache;
|
||||
// Stores video track ID of the track being parsed
|
||||
var trackId;
|
||||
// Stores the timescale of the track being parsed
|
||||
var timescale;
|
||||
// Stores captions parsed so far
|
||||
var parsedCaptions;
|
||||
// Stores whether we are receiving partial data or not
|
||||
var parsingPartial;
|
||||
|
||||
/**
|
||||
* A method to indicate whether a CaptionParser has been initalized
|
||||
* @returns {Boolean}
|
||||
**/
|
||||
this.isInitialized = function() {
|
||||
return isInitialized;
|
||||
};
|
||||
|
||||
/**
|
||||
* Initializes the underlying CaptionStream, SEI NAL parsing
|
||||
* and management, and caption collection
|
||||
**/
|
||||
this.init = function(options) {
|
||||
captionStream = new CaptionStream();
|
||||
isInitialized = true;
|
||||
parsingPartial = options ? options.isPartial : false;
|
||||
|
||||
// Collect dispatched captions
|
||||
captionStream.on('data', function(event) {
|
||||
// Convert to seconds in the source's timescale
|
||||
event.startTime = event.startPts / timescale;
|
||||
event.endTime = event.endPts / timescale;
|
||||
|
||||
parsedCaptions.captions.push(event);
|
||||
parsedCaptions.captionStreams[event.stream] = true;
|
||||
});
|
||||
|
||||
captionStream.on('log', function(log) {
|
||||
parsedCaptions.logs.push(log);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if a new video track will be selected
|
||||
* or if the timescale changed
|
||||
* @return {Boolean}
|
||||
**/
|
||||
this.isNewInit = function(videoTrackIds, timescales) {
|
||||
if ((videoTrackIds && videoTrackIds.length === 0) ||
|
||||
(timescales && typeof timescales === 'object' &&
|
||||
Object.keys(timescales).length === 0)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return trackId !== videoTrackIds[0] ||
|
||||
timescale !== timescales[trackId];
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out SEI captions and interacts with underlying
|
||||
* CaptionStream to return dispatched captions
|
||||
*
|
||||
* @param {Uint8Array} segment - The fmp4 segment containing embedded captions
|
||||
* @param {Number[]} videoTrackIds - A list of video tracks found in the init segment
|
||||
* @param {Object.<Number, Number>} timescales - The timescales found in the init segment
|
||||
* @see parseEmbeddedCaptions
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.parse = function(segment, videoTrackIds, timescales) {
|
||||
var parsedData;
|
||||
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
|
||||
// This is not likely to be a video segment
|
||||
} else if (!videoTrackIds || !timescales) {
|
||||
return null;
|
||||
|
||||
} else if (this.isNewInit(videoTrackIds, timescales)) {
|
||||
// Use the first video track only as there is no
|
||||
// mechanism to switch to other video tracks
|
||||
trackId = videoTrackIds[0];
|
||||
timescale = timescales[trackId];
|
||||
|
||||
// If an init segment has not been seen yet, hold onto segment
|
||||
// data until we have one.
|
||||
// the ISO-BMFF spec says that trackId can't be zero, but there's some broken content out there
|
||||
} else if (trackId === null || !timescale) {
|
||||
segmentCache.push(segment);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Now that a timescale and trackId is set, parse cached segments
|
||||
while (segmentCache.length > 0) {
|
||||
var cachedSegment = segmentCache.shift();
|
||||
|
||||
this.parse(cachedSegment, videoTrackIds, timescales);
|
||||
}
|
||||
|
||||
parsedData = parseEmbeddedCaptions(segment, trackId, timescale);
|
||||
|
||||
if (parsedData && parsedData.logs) {
|
||||
parsedCaptions.logs = parsedCaptions.logs.concat(parsedData.logs);
|
||||
}
|
||||
|
||||
if (parsedData === null || !parsedData.seiNals) {
|
||||
if (parsedCaptions.logs.length) {
|
||||
return {logs: parsedCaptions.logs, captions: [], captionStreams: []};
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
this.pushNals(parsedData.seiNals);
|
||||
// Force the parsed captions to be dispatched
|
||||
this.flushStream();
|
||||
|
||||
return parsedCaptions;
|
||||
};
|
||||
|
||||
/**
|
||||
* Pushes SEI NALUs onto CaptionStream
|
||||
* @param {Object[]} nals - A list of SEI nals parsed using `parseCaptionNals`
|
||||
* Assumes that `parseCaptionNals` has been called first
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.pushNals = function(nals) {
|
||||
if (!this.isInitialized() || !nals || nals.length === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
nals.forEach(function(nal) {
|
||||
captionStream.push(nal);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Flushes underlying CaptionStream to dispatch processed, displayable captions
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.flushStream = function() {
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (!parsingPartial) {
|
||||
captionStream.flush();
|
||||
} else {
|
||||
captionStream.partialFlush();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Reset caption buckets for new data
|
||||
**/
|
||||
this.clearParsedCaptions = function() {
|
||||
parsedCaptions.captions = [];
|
||||
parsedCaptions.captionStreams = {};
|
||||
parsedCaptions.logs = [];
|
||||
};
|
||||
|
||||
/**
|
||||
* Resets underlying CaptionStream
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.resetCaptionStream = function() {
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
captionStream.reset();
|
||||
};
|
||||
|
||||
/**
|
||||
* Convenience method to clear all captions flushed from the
|
||||
* CaptionStream and still being parsed
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.clearAllCaptions = function() {
|
||||
this.clearParsedCaptions();
|
||||
this.resetCaptionStream();
|
||||
};
|
||||
|
||||
/**
|
||||
* Reset caption parser
|
||||
**/
|
||||
this.reset = function() {
|
||||
segmentCache = [];
|
||||
trackId = null;
|
||||
timescale = null;
|
||||
|
||||
if (!parsedCaptions) {
|
||||
parsedCaptions = {
|
||||
captions: [],
|
||||
// CC1, CC2, CC3, CC4
|
||||
captionStreams: {},
|
||||
logs: []
|
||||
};
|
||||
} else {
|
||||
this.clearParsedCaptions();
|
||||
}
|
||||
|
||||
this.resetCaptionStream();
|
||||
};
|
||||
|
||||
this.reset();
|
||||
};
|
||||
|
||||
module.exports = CaptionParser;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Reads in-band CEA-708 captions out of FMP4 segments.
|
||||
* @see https://en.wikipedia.org/wiki/CEA-708
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var discardEmulationPreventionBytes = require('../tools/caption-packet-parser').discardEmulationPreventionBytes;
|
||||
var CaptionStream = require('../m2ts/caption-stream').CaptionStream;
|
||||
var findBox = require('../mp4/find-box.js');
|
||||
var parseTfdt = require('../tools/parse-tfdt.js');
|
||||
var parseTrun = require('../tools/parse-trun.js');
|
||||
var parseTfhd = require('../tools/parse-tfhd.js');
|
||||
|
||||
/**
|
||||
* Maps an offset in the mdat to a sample based on the the size of the samples.
|
||||
* Assumes that `parseSamples` has been called first.
|
||||
*
|
||||
* @param {Number} offset - The offset into the mdat
|
||||
* @param {Object[]} samples - An array of samples, parsed using `parseSamples`
|
||||
* @return {?Object} The matching sample, or null if no match was found.
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.8.8
|
||||
**/
|
||||
var mapToSample = function(offset, samples) {
|
||||
var approximateOffset = offset;
|
||||
|
||||
for (var i = 0; i < samples.length; i++) {
|
||||
var sample = samples[i];
|
||||
|
||||
if (approximateOffset < sample.size) {
|
||||
return sample;
|
||||
}
|
||||
|
||||
approximateOffset -= sample.size;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
/**
|
||||
* Finds SEI nal units contained in a Media Data Box.
|
||||
* Assumes that `parseSamples` has been called first.
|
||||
*
|
||||
* @param {Uint8Array} avcStream - The bytes of the mdat
|
||||
* @param {Object[]} samples - The samples parsed out by `parseSamples`
|
||||
* @param {Number} trackId - The trackId of this video track
|
||||
* @return {Object[]} seiNals - the parsed SEI NALUs found.
|
||||
* The contents of the seiNal should match what is expected by
|
||||
* CaptionStream.push (nalUnitType, size, data, escapedRBSP, pts, dts)
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.1.1
|
||||
* @see Rec. ITU-T H.264, 7.3.2.3.1
|
||||
**/
|
||||
var findSeiNals = function(avcStream, samples, trackId) {
|
||||
var
|
||||
avcView = new DataView(avcStream.buffer, avcStream.byteOffset, avcStream.byteLength),
|
||||
result = {
|
||||
logs: [],
|
||||
seiNals: []
|
||||
},
|
||||
seiNal,
|
||||
i,
|
||||
length,
|
||||
lastMatchedSample;
|
||||
|
||||
for (i = 0; i + 4 < avcStream.length; i += length) {
|
||||
length = avcView.getUint32(i);
|
||||
i += 4;
|
||||
|
||||
// Bail if this doesn't appear to be an H264 stream
|
||||
if (length <= 0) {
|
||||
continue;
|
||||
}
|
||||
|
||||
switch (avcStream[i] & 0x1F) {
|
||||
case 0x06:
|
||||
var data = avcStream.subarray(i + 1, i + 1 + length);
|
||||
var matchingSample = mapToSample(i, samples);
|
||||
|
||||
seiNal = {
|
||||
nalUnitType: 'sei_rbsp',
|
||||
size: length,
|
||||
data: data,
|
||||
escapedRBSP: discardEmulationPreventionBytes(data),
|
||||
trackId: trackId
|
||||
};
|
||||
|
||||
if (matchingSample) {
|
||||
seiNal.pts = matchingSample.pts;
|
||||
seiNal.dts = matchingSample.dts;
|
||||
lastMatchedSample = matchingSample;
|
||||
} else if (lastMatchedSample) {
|
||||
// If a matching sample cannot be found, use the last
|
||||
// sample's values as they should be as close as possible
|
||||
seiNal.pts = lastMatchedSample.pts;
|
||||
seiNal.dts = lastMatchedSample.dts;
|
||||
} else {
|
||||
result.logs.push({
|
||||
level: 'warn',
|
||||
message: 'We\'ve encountered a nal unit without data at ' + i + ' for trackId ' + trackId + '. See mux.js#223.'
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
result.seiNals.push(seiNal);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses sample information out of Track Run Boxes and calculates
|
||||
* the absolute presentation and decode timestamps of each sample.
|
||||
*
|
||||
* @param {Array<Uint8Array>} truns - The Trun Run boxes to be parsed
|
||||
* @param {Number} baseMediaDecodeTime - base media decode time from tfdt
|
||||
@see ISO-BMFF-12/2015, Section 8.8.12
|
||||
* @param {Object} tfhd - The parsed Track Fragment Header
|
||||
* @see inspect.parseTfhd
|
||||
* @return {Object[]} the parsed samples
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.8.8
|
||||
**/
|
||||
var parseSamples = function(truns, baseMediaDecodeTime, tfhd) {
|
||||
var currentDts = baseMediaDecodeTime;
|
||||
var defaultSampleDuration = tfhd.defaultSampleDuration || 0;
|
||||
var defaultSampleSize = tfhd.defaultSampleSize || 0;
|
||||
var trackId = tfhd.trackId;
|
||||
var allSamples = [];
|
||||
|
||||
truns.forEach(function(trun) {
|
||||
// Note: We currently do not parse the sample table as well
|
||||
// as the trun. It's possible some sources will require this.
|
||||
// moov > trak > mdia > minf > stbl
|
||||
var trackRun = parseTrun(trun);
|
||||
var samples = trackRun.samples;
|
||||
|
||||
samples.forEach(function(sample) {
|
||||
if (sample.duration === undefined) {
|
||||
sample.duration = defaultSampleDuration;
|
||||
}
|
||||
if (sample.size === undefined) {
|
||||
sample.size = defaultSampleSize;
|
||||
}
|
||||
sample.trackId = trackId;
|
||||
sample.dts = currentDts;
|
||||
if (sample.compositionTimeOffset === undefined) {
|
||||
sample.compositionTimeOffset = 0;
|
||||
}
|
||||
sample.pts = currentDts + sample.compositionTimeOffset;
|
||||
|
||||
currentDts += sample.duration;
|
||||
});
|
||||
|
||||
allSamples = allSamples.concat(samples);
|
||||
});
|
||||
|
||||
return allSamples;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out caption nals from an FMP4 segment's video tracks.
|
||||
*
|
||||
* @param {Uint8Array} segment - The bytes of a single segment
|
||||
* @param {Number} videoTrackId - The trackId of a video track in the segment
|
||||
* @return {Object.<Number, Object[]>} A mapping of video trackId to
|
||||
* a list of seiNals found in that track
|
||||
**/
|
||||
var parseCaptionNals = function(segment, videoTrackId) {
|
||||
// To get the samples
|
||||
var trafs = findBox(segment, ['moof', 'traf']);
|
||||
// To get SEI NAL units
|
||||
var mdats = findBox(segment, ['mdat']);
|
||||
var captionNals = {};
|
||||
var mdatTrafPairs = [];
|
||||
|
||||
// Pair up each traf with a mdat as moofs and mdats are in pairs
|
||||
mdats.forEach(function(mdat, index) {
|
||||
var matchingTraf = trafs[index];
|
||||
mdatTrafPairs.push({
|
||||
mdat: mdat,
|
||||
traf: matchingTraf
|
||||
});
|
||||
});
|
||||
|
||||
mdatTrafPairs.forEach(function(pair) {
|
||||
var mdat = pair.mdat;
|
||||
var traf = pair.traf;
|
||||
var tfhd = findBox(traf, ['tfhd']);
|
||||
// Exactly 1 tfhd per traf
|
||||
var headerInfo = parseTfhd(tfhd[0]);
|
||||
var trackId = headerInfo.trackId;
|
||||
var tfdt = findBox(traf, ['tfdt']);
|
||||
// Either 0 or 1 tfdt per traf
|
||||
var baseMediaDecodeTime = (tfdt.length > 0) ? parseTfdt(tfdt[0]).baseMediaDecodeTime : 0;
|
||||
var truns = findBox(traf, ['trun']);
|
||||
var samples;
|
||||
var result;
|
||||
|
||||
// Only parse video data for the chosen video track
|
||||
if (videoTrackId === trackId && truns.length > 0) {
|
||||
samples = parseSamples(truns, baseMediaDecodeTime, headerInfo);
|
||||
|
||||
result = findSeiNals(mdat, samples, trackId);
|
||||
|
||||
if (!captionNals[trackId]) {
|
||||
captionNals[trackId] = {seiNals: [], logs: []};
|
||||
}
|
||||
|
||||
captionNals[trackId].seiNals = captionNals[trackId].seiNals.concat(result.seiNals);
|
||||
captionNals[trackId].logs = captionNals[trackId].logs.concat(result.logs);
|
||||
}
|
||||
});
|
||||
|
||||
return captionNals;
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out inband captions from an MP4 container and returns
|
||||
* caption objects that can be used by WebVTT and the TextTrack API.
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/VTTCue
|
||||
* @see https://developer.mozilla.org/en-US/docs/Web/API/TextTrack
|
||||
* Assumes that `probe.getVideoTrackIds` and `probe.timescale` have been called first
|
||||
*
|
||||
* @param {Uint8Array} segment - The fmp4 segment containing embedded captions
|
||||
* @param {Number} trackId - The id of the video track to parse
|
||||
* @param {Number} timescale - The timescale for the video track from the init segment
|
||||
*
|
||||
* @return {?Object[]} parsedCaptions - A list of captions or null if no video tracks
|
||||
* @return {Number} parsedCaptions[].startTime - The time to show the caption in seconds
|
||||
* @return {Number} parsedCaptions[].endTime - The time to stop showing the caption in seconds
|
||||
* @return {String} parsedCaptions[].text - The visible content of the caption
|
||||
**/
|
||||
var parseEmbeddedCaptions = function(segment, trackId, timescale) {
|
||||
var captionNals;
|
||||
|
||||
// the ISO-BMFF spec says that trackId can't be zero, but there's some broken content out there
|
||||
if (trackId === null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
captionNals = parseCaptionNals(segment, trackId);
|
||||
|
||||
var trackNals = captionNals[trackId] || {};
|
||||
|
||||
return {
|
||||
seiNals: trackNals.seiNals,
|
||||
logs: trackNals.logs,
|
||||
timescale: timescale
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Converts SEI NALUs into captions that can be used by video.js
|
||||
**/
|
||||
var CaptionParser = function() {
|
||||
var isInitialized = false;
|
||||
var captionStream;
|
||||
|
||||
// Stores segments seen before trackId and timescale are set
|
||||
var segmentCache;
|
||||
// Stores video track ID of the track being parsed
|
||||
var trackId;
|
||||
// Stores the timescale of the track being parsed
|
||||
var timescale;
|
||||
// Stores captions parsed so far
|
||||
var parsedCaptions;
|
||||
// Stores whether we are receiving partial data or not
|
||||
var parsingPartial;
|
||||
|
||||
/**
|
||||
* A method to indicate whether a CaptionParser has been initalized
|
||||
* @returns {Boolean}
|
||||
**/
|
||||
this.isInitialized = function() {
|
||||
return isInitialized;
|
||||
};
|
||||
|
||||
/**
|
||||
* Initializes the underlying CaptionStream, SEI NAL parsing
|
||||
* and management, and caption collection
|
||||
**/
|
||||
this.init = function(options) {
|
||||
captionStream = new CaptionStream();
|
||||
isInitialized = true;
|
||||
parsingPartial = options ? options.isPartial : false;
|
||||
|
||||
// Collect dispatched captions
|
||||
captionStream.on('data', function(event) {
|
||||
// Convert to seconds in the source's timescale
|
||||
event.startTime = event.startPts / timescale;
|
||||
event.endTime = event.endPts / timescale;
|
||||
|
||||
parsedCaptions.captions.push(event);
|
||||
parsedCaptions.captionStreams[event.stream] = true;
|
||||
});
|
||||
|
||||
captionStream.on('log', function(log) {
|
||||
parsedCaptions.logs.push(log);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if a new video track will be selected
|
||||
* or if the timescale changed
|
||||
* @return {Boolean}
|
||||
**/
|
||||
this.isNewInit = function(videoTrackIds, timescales) {
|
||||
if ((videoTrackIds && videoTrackIds.length === 0) ||
|
||||
(timescales && typeof timescales === 'object' &&
|
||||
Object.keys(timescales).length === 0)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return trackId !== videoTrackIds[0] ||
|
||||
timescale !== timescales[trackId];
|
||||
};
|
||||
|
||||
/**
|
||||
* Parses out SEI captions and interacts with underlying
|
||||
* CaptionStream to return dispatched captions
|
||||
*
|
||||
* @param {Uint8Array} segment - The fmp4 segment containing embedded captions
|
||||
* @param {Number[]} videoTrackIds - A list of video tracks found in the init segment
|
||||
* @param {Object.<Number, Number>} timescales - The timescales found in the init segment
|
||||
* @see parseEmbeddedCaptions
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.parse = function(segment, videoTrackIds, timescales) {
|
||||
var parsedData;
|
||||
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
|
||||
// This is not likely to be a video segment
|
||||
} else if (!videoTrackIds || !timescales) {
|
||||
return null;
|
||||
|
||||
} else if (this.isNewInit(videoTrackIds, timescales)) {
|
||||
// Use the first video track only as there is no
|
||||
// mechanism to switch to other video tracks
|
||||
trackId = videoTrackIds[0];
|
||||
timescale = timescales[trackId];
|
||||
|
||||
// If an init segment has not been seen yet, hold onto segment
|
||||
// data until we have one.
|
||||
// the ISO-BMFF spec says that trackId can't be zero, but there's some broken content out there
|
||||
} else if (trackId === null || !timescale) {
|
||||
segmentCache.push(segment);
|
||||
return null;
|
||||
}
|
||||
|
||||
// Now that a timescale and trackId is set, parse cached segments
|
||||
while (segmentCache.length > 0) {
|
||||
var cachedSegment = segmentCache.shift();
|
||||
|
||||
this.parse(cachedSegment, videoTrackIds, timescales);
|
||||
}
|
||||
|
||||
parsedData = parseEmbeddedCaptions(segment, trackId, timescale);
|
||||
|
||||
if (parsedData && parsedData.logs) {
|
||||
parsedCaptions.logs = parsedCaptions.logs.concat(parsedData.logs);
|
||||
}
|
||||
|
||||
if (parsedData === null || !parsedData.seiNals) {
|
||||
if (parsedCaptions.logs.length) {
|
||||
return {logs: parsedCaptions.logs, captions: [], captionStreams: []};
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
this.pushNals(parsedData.seiNals);
|
||||
// Force the parsed captions to be dispatched
|
||||
this.flushStream();
|
||||
|
||||
return parsedCaptions;
|
||||
};
|
||||
|
||||
/**
|
||||
* Pushes SEI NALUs onto CaptionStream
|
||||
* @param {Object[]} nals - A list of SEI nals parsed using `parseCaptionNals`
|
||||
* Assumes that `parseCaptionNals` has been called first
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.pushNals = function(nals) {
|
||||
if (!this.isInitialized() || !nals || nals.length === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
nals.forEach(function(nal) {
|
||||
captionStream.push(nal);
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Flushes underlying CaptionStream to dispatch processed, displayable captions
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.flushStream = function() {
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (!parsingPartial) {
|
||||
captionStream.flush();
|
||||
} else {
|
||||
captionStream.partialFlush();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Reset caption buckets for new data
|
||||
**/
|
||||
this.clearParsedCaptions = function() {
|
||||
parsedCaptions.captions = [];
|
||||
parsedCaptions.captionStreams = {};
|
||||
parsedCaptions.logs = [];
|
||||
};
|
||||
|
||||
/**
|
||||
* Resets underlying CaptionStream
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.resetCaptionStream = function() {
|
||||
if (!this.isInitialized()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
captionStream.reset();
|
||||
};
|
||||
|
||||
/**
|
||||
* Convenience method to clear all captions flushed from the
|
||||
* CaptionStream and still being parsed
|
||||
* @see m2ts/caption-stream.js
|
||||
**/
|
||||
this.clearAllCaptions = function() {
|
||||
this.clearParsedCaptions();
|
||||
this.resetCaptionStream();
|
||||
};
|
||||
|
||||
/**
|
||||
* Reset caption parser
|
||||
**/
|
||||
this.reset = function() {
|
||||
segmentCache = [];
|
||||
trackId = null;
|
||||
timescale = null;
|
||||
|
||||
if (!parsedCaptions) {
|
||||
parsedCaptions = {
|
||||
captions: [],
|
||||
// CC1, CC2, CC3, CC4
|
||||
captionStreams: {},
|
||||
logs: []
|
||||
};
|
||||
} else {
|
||||
this.clearParsedCaptions();
|
||||
}
|
||||
|
||||
this.resetCaptionStream();
|
||||
};
|
||||
|
||||
this.reset();
|
||||
};
|
||||
|
||||
module.exports = CaptionParser;
|
||||
|
|
88
node_modules/mux.js/lib/mp4/find-box.js
generated
vendored
88
node_modules/mux.js/lib/mp4/find-box.js
generated
vendored
|
@ -1,44 +1,44 @@
|
|||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
var parseType = require('./parse-type.js');
|
||||
|
||||
var findBox = function(data, path) {
|
||||
var results = [],
|
||||
i, size, type, end, subresults;
|
||||
|
||||
if (!path.length) {
|
||||
// short-circuit the search for empty paths
|
||||
return null;
|
||||
}
|
||||
|
||||
for (i = 0; i < data.byteLength;) {
|
||||
size = toUnsigned(data[i] << 24 |
|
||||
data[i + 1] << 16 |
|
||||
data[i + 2] << 8 |
|
||||
data[i + 3]);
|
||||
|
||||
type = parseType(data.subarray(i + 4, i + 8));
|
||||
|
||||
end = size > 1 ? i + size : data.byteLength;
|
||||
|
||||
if (type === path[0]) {
|
||||
if (path.length === 1) {
|
||||
// this is the end of the path and we've found the box we were
|
||||
// looking for
|
||||
results.push(data.subarray(i + 8, end));
|
||||
} else {
|
||||
// recursively search for the next box along the path
|
||||
subresults = findBox(data.subarray(i + 8, end), path.slice(1));
|
||||
if (subresults.length) {
|
||||
results = results.concat(subresults);
|
||||
}
|
||||
}
|
||||
}
|
||||
i = end;
|
||||
}
|
||||
|
||||
// we've finished searching all of data
|
||||
return results;
|
||||
};
|
||||
|
||||
module.exports = findBox;
|
||||
|
||||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
var parseType = require('./parse-type.js');
|
||||
|
||||
var findBox = function(data, path) {
|
||||
var results = [],
|
||||
i, size, type, end, subresults;
|
||||
|
||||
if (!path.length) {
|
||||
// short-circuit the search for empty paths
|
||||
return null;
|
||||
}
|
||||
|
||||
for (i = 0; i < data.byteLength;) {
|
||||
size = toUnsigned(data[i] << 24 |
|
||||
data[i + 1] << 16 |
|
||||
data[i + 2] << 8 |
|
||||
data[i + 3]);
|
||||
|
||||
type = parseType(data.subarray(i + 4, i + 8));
|
||||
|
||||
end = size > 1 ? i + size : data.byteLength;
|
||||
|
||||
if (type === path[0]) {
|
||||
if (path.length === 1) {
|
||||
// this is the end of the path and we've found the box we were
|
||||
// looking for
|
||||
results.push(data.subarray(i + 8, end));
|
||||
} else {
|
||||
// recursively search for the next box along the path
|
||||
subresults = findBox(data.subarray(i + 8, end), path.slice(1));
|
||||
if (subresults.length) {
|
||||
results = results.concat(subresults);
|
||||
}
|
||||
}
|
||||
}
|
||||
i = end;
|
||||
}
|
||||
|
||||
// we've finished searching all of data
|
||||
return results;
|
||||
};
|
||||
|
||||
module.exports = findBox;
|
||||
|
||||
|
|
638
node_modules/mux.js/lib/mp4/frame-utils.js
generated
vendored
638
node_modules/mux.js/lib/mp4/frame-utils.js
generated
vendored
|
@ -1,319 +1,319 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
// Convert an array of nal units into an array of frames with each frame being
|
||||
// composed of the nal units that make up that frame
|
||||
// Also keep track of cummulative data about the frame from the nal units such
|
||||
// as the frame duration, starting pts, etc.
|
||||
var groupNalsIntoFrames = function(nalUnits) {
|
||||
var
|
||||
i,
|
||||
currentNal,
|
||||
currentFrame = [],
|
||||
frames = [];
|
||||
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength = 0;
|
||||
frames.nalCount = 0;
|
||||
frames.duration = 0;
|
||||
|
||||
currentFrame.byteLength = 0;
|
||||
|
||||
for (i = 0; i < nalUnits.length; i++) {
|
||||
currentNal = nalUnits[i];
|
||||
|
||||
// Split on 'aud'-type nal units
|
||||
if (currentNal.nalUnitType === 'access_unit_delimiter_rbsp') {
|
||||
// Since the very first nal unit is expected to be an AUD
|
||||
// only push to the frames array when currentFrame is not empty
|
||||
if (currentFrame.length) {
|
||||
currentFrame.duration = currentNal.dts - currentFrame.dts;
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength += currentFrame.byteLength;
|
||||
frames.nalCount += currentFrame.length;
|
||||
frames.duration += currentFrame.duration;
|
||||
frames.push(currentFrame);
|
||||
}
|
||||
currentFrame = [currentNal];
|
||||
currentFrame.byteLength = currentNal.data.byteLength;
|
||||
currentFrame.pts = currentNal.pts;
|
||||
currentFrame.dts = currentNal.dts;
|
||||
} else {
|
||||
// Specifically flag key frames for ease of use later
|
||||
if (currentNal.nalUnitType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
currentFrame.keyFrame = true;
|
||||
}
|
||||
currentFrame.duration = currentNal.dts - currentFrame.dts;
|
||||
currentFrame.byteLength += currentNal.data.byteLength;
|
||||
currentFrame.push(currentNal);
|
||||
}
|
||||
}
|
||||
|
||||
// For the last frame, use the duration of the previous frame if we
|
||||
// have nothing better to go on
|
||||
if (frames.length &&
|
||||
(!currentFrame.duration ||
|
||||
currentFrame.duration <= 0)) {
|
||||
currentFrame.duration = frames[frames.length - 1].duration;
|
||||
}
|
||||
|
||||
// Push the final frame
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength += currentFrame.byteLength;
|
||||
frames.nalCount += currentFrame.length;
|
||||
frames.duration += currentFrame.duration;
|
||||
|
||||
frames.push(currentFrame);
|
||||
return frames;
|
||||
};
|
||||
|
||||
// Convert an array of frames into an array of Gop with each Gop being composed
|
||||
// of the frames that make up that Gop
|
||||
// Also keep track of cummulative data about the Gop from the frames such as the
|
||||
// Gop duration, starting pts, etc.
|
||||
var groupFramesIntoGops = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
currentGop = [],
|
||||
gops = [];
|
||||
|
||||
// We must pre-set some of the values on the Gop since we
|
||||
// keep running totals of these values
|
||||
currentGop.byteLength = 0;
|
||||
currentGop.nalCount = 0;
|
||||
currentGop.duration = 0;
|
||||
currentGop.pts = frames[0].pts;
|
||||
currentGop.dts = frames[0].dts;
|
||||
|
||||
// store some metadata about all the Gops
|
||||
gops.byteLength = 0;
|
||||
gops.nalCount = 0;
|
||||
gops.duration = 0;
|
||||
gops.pts = frames[0].pts;
|
||||
gops.dts = frames[0].dts;
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
|
||||
if (currentFrame.keyFrame) {
|
||||
// Since the very first frame is expected to be an keyframe
|
||||
// only push to the gops array when currentGop is not empty
|
||||
if (currentGop.length) {
|
||||
gops.push(currentGop);
|
||||
gops.byteLength += currentGop.byteLength;
|
||||
gops.nalCount += currentGop.nalCount;
|
||||
gops.duration += currentGop.duration;
|
||||
}
|
||||
|
||||
currentGop = [currentFrame];
|
||||
currentGop.nalCount = currentFrame.length;
|
||||
currentGop.byteLength = currentFrame.byteLength;
|
||||
currentGop.pts = currentFrame.pts;
|
||||
currentGop.dts = currentFrame.dts;
|
||||
currentGop.duration = currentFrame.duration;
|
||||
} else {
|
||||
currentGop.duration += currentFrame.duration;
|
||||
currentGop.nalCount += currentFrame.length;
|
||||
currentGop.byteLength += currentFrame.byteLength;
|
||||
currentGop.push(currentFrame);
|
||||
}
|
||||
}
|
||||
|
||||
if (gops.length && currentGop.duration <= 0) {
|
||||
currentGop.duration = gops[gops.length - 1].duration;
|
||||
}
|
||||
gops.byteLength += currentGop.byteLength;
|
||||
gops.nalCount += currentGop.nalCount;
|
||||
gops.duration += currentGop.duration;
|
||||
|
||||
// push the final Gop
|
||||
gops.push(currentGop);
|
||||
return gops;
|
||||
};
|
||||
|
||||
/*
|
||||
* Search for the first keyframe in the GOPs and throw away all frames
|
||||
* until that keyframe. Then extend the duration of the pulled keyframe
|
||||
* and pull the PTS and DTS of the keyframe so that it covers the time
|
||||
* range of the frames that were disposed.
|
||||
*
|
||||
* @param {Array} gops video GOPs
|
||||
* @returns {Array} modified video GOPs
|
||||
*/
|
||||
var extendFirstKeyFrame = function(gops) {
|
||||
var currentGop;
|
||||
|
||||
if (!gops[0][0].keyFrame && gops.length > 1) {
|
||||
// Remove the first GOP
|
||||
currentGop = gops.shift();
|
||||
|
||||
gops.byteLength -= currentGop.byteLength;
|
||||
gops.nalCount -= currentGop.nalCount;
|
||||
|
||||
// Extend the first frame of what is now the
|
||||
// first gop to cover the time period of the
|
||||
// frames we just removed
|
||||
gops[0][0].dts = currentGop.dts;
|
||||
gops[0][0].pts = currentGop.pts;
|
||||
gops[0][0].duration += currentGop.duration;
|
||||
}
|
||||
|
||||
return gops;
|
||||
};
|
||||
|
||||
/**
|
||||
* Default sample object
|
||||
* see ISO/IEC 14496-12:2012, section 8.6.4.3
|
||||
*/
|
||||
var createDefaultSample = function() {
|
||||
return {
|
||||
size: 0,
|
||||
flags: {
|
||||
isLeading: 0,
|
||||
dependsOn: 1,
|
||||
isDependedOn: 0,
|
||||
hasRedundancy: 0,
|
||||
degradationPriority: 0,
|
||||
isNonSyncSample: 1
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/*
|
||||
* Collates information from a video frame into an object for eventual
|
||||
* entry into an MP4 sample table.
|
||||
*
|
||||
* @param {Object} frame the video frame
|
||||
* @param {Number} dataOffset the byte offset to position the sample
|
||||
* @return {Object} object containing sample table info for a frame
|
||||
*/
|
||||
var sampleForFrame = function(frame, dataOffset) {
|
||||
var sample = createDefaultSample();
|
||||
|
||||
sample.dataOffset = dataOffset;
|
||||
sample.compositionTimeOffset = frame.pts - frame.dts;
|
||||
sample.duration = frame.duration;
|
||||
sample.size = 4 * frame.length; // Space for nal unit size
|
||||
sample.size += frame.byteLength;
|
||||
|
||||
if (frame.keyFrame) {
|
||||
sample.flags.dependsOn = 2;
|
||||
sample.flags.isNonSyncSample = 0;
|
||||
}
|
||||
|
||||
return sample;
|
||||
};
|
||||
|
||||
// generate the track's sample table from an array of gops
|
||||
var generateSampleTable = function(gops, baseDataOffset) {
|
||||
var
|
||||
h, i,
|
||||
sample,
|
||||
currentGop,
|
||||
currentFrame,
|
||||
dataOffset = baseDataOffset || 0,
|
||||
samples = [];
|
||||
|
||||
for (h = 0; h < gops.length; h++) {
|
||||
currentGop = gops[h];
|
||||
|
||||
for (i = 0; i < currentGop.length; i++) {
|
||||
currentFrame = currentGop[i];
|
||||
|
||||
sample = sampleForFrame(currentFrame, dataOffset);
|
||||
|
||||
dataOffset += sample.size;
|
||||
|
||||
samples.push(sample);
|
||||
}
|
||||
}
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from an array of gops
|
||||
var concatenateNalData = function(gops) {
|
||||
var
|
||||
h, i, j,
|
||||
currentGop,
|
||||
currentFrame,
|
||||
currentNal,
|
||||
dataOffset = 0,
|
||||
nalsByteLength = gops.byteLength,
|
||||
numberOfNals = gops.nalCount,
|
||||
totalByteLength = nalsByteLength + 4 * numberOfNals,
|
||||
data = new Uint8Array(totalByteLength),
|
||||
view = new DataView(data.buffer);
|
||||
|
||||
// For each Gop..
|
||||
for (h = 0; h < gops.length; h++) {
|
||||
currentGop = gops[h];
|
||||
|
||||
// For each Frame..
|
||||
for (i = 0; i < currentGop.length; i++) {
|
||||
currentFrame = currentGop[i];
|
||||
|
||||
// For each NAL..
|
||||
for (j = 0; j < currentFrame.length; j++) {
|
||||
currentNal = currentFrame[j];
|
||||
|
||||
view.setUint32(dataOffset, currentNal.data.byteLength);
|
||||
dataOffset += 4;
|
||||
data.set(currentNal.data, dataOffset);
|
||||
dataOffset += currentNal.data.byteLength;
|
||||
}
|
||||
}
|
||||
}
|
||||
return data;
|
||||
};
|
||||
|
||||
// generate the track's sample table from a frame
|
||||
var generateSampleTableForFrame = function(frame, baseDataOffset) {
|
||||
var
|
||||
sample,
|
||||
dataOffset = baseDataOffset || 0,
|
||||
samples = [];
|
||||
|
||||
sample = sampleForFrame(frame, dataOffset);
|
||||
samples.push(sample);
|
||||
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from a frame
|
||||
var concatenateNalDataForFrame = function(frame) {
|
||||
var
|
||||
i,
|
||||
currentNal,
|
||||
dataOffset = 0,
|
||||
nalsByteLength = frame.byteLength,
|
||||
numberOfNals = frame.length,
|
||||
totalByteLength = nalsByteLength + 4 * numberOfNals,
|
||||
data = new Uint8Array(totalByteLength),
|
||||
view = new DataView(data.buffer);
|
||||
|
||||
// For each NAL..
|
||||
for (i = 0; i < frame.length; i++) {
|
||||
currentNal = frame[i];
|
||||
|
||||
view.setUint32(dataOffset, currentNal.data.byteLength);
|
||||
dataOffset += 4;
|
||||
data.set(currentNal.data, dataOffset);
|
||||
dataOffset += currentNal.data.byteLength;
|
||||
}
|
||||
|
||||
return data;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
groupNalsIntoFrames: groupNalsIntoFrames,
|
||||
groupFramesIntoGops: groupFramesIntoGops,
|
||||
extendFirstKeyFrame: extendFirstKeyFrame,
|
||||
generateSampleTable: generateSampleTable,
|
||||
concatenateNalData: concatenateNalData,
|
||||
generateSampleTableForFrame: generateSampleTableForFrame,
|
||||
concatenateNalDataForFrame: concatenateNalDataForFrame
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
// Convert an array of nal units into an array of frames with each frame being
|
||||
// composed of the nal units that make up that frame
|
||||
// Also keep track of cummulative data about the frame from the nal units such
|
||||
// as the frame duration, starting pts, etc.
|
||||
var groupNalsIntoFrames = function(nalUnits) {
|
||||
var
|
||||
i,
|
||||
currentNal,
|
||||
currentFrame = [],
|
||||
frames = [];
|
||||
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength = 0;
|
||||
frames.nalCount = 0;
|
||||
frames.duration = 0;
|
||||
|
||||
currentFrame.byteLength = 0;
|
||||
|
||||
for (i = 0; i < nalUnits.length; i++) {
|
||||
currentNal = nalUnits[i];
|
||||
|
||||
// Split on 'aud'-type nal units
|
||||
if (currentNal.nalUnitType === 'access_unit_delimiter_rbsp') {
|
||||
// Since the very first nal unit is expected to be an AUD
|
||||
// only push to the frames array when currentFrame is not empty
|
||||
if (currentFrame.length) {
|
||||
currentFrame.duration = currentNal.dts - currentFrame.dts;
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength += currentFrame.byteLength;
|
||||
frames.nalCount += currentFrame.length;
|
||||
frames.duration += currentFrame.duration;
|
||||
frames.push(currentFrame);
|
||||
}
|
||||
currentFrame = [currentNal];
|
||||
currentFrame.byteLength = currentNal.data.byteLength;
|
||||
currentFrame.pts = currentNal.pts;
|
||||
currentFrame.dts = currentNal.dts;
|
||||
} else {
|
||||
// Specifically flag key frames for ease of use later
|
||||
if (currentNal.nalUnitType === 'slice_layer_without_partitioning_rbsp_idr') {
|
||||
currentFrame.keyFrame = true;
|
||||
}
|
||||
currentFrame.duration = currentNal.dts - currentFrame.dts;
|
||||
currentFrame.byteLength += currentNal.data.byteLength;
|
||||
currentFrame.push(currentNal);
|
||||
}
|
||||
}
|
||||
|
||||
// For the last frame, use the duration of the previous frame if we
|
||||
// have nothing better to go on
|
||||
if (frames.length &&
|
||||
(!currentFrame.duration ||
|
||||
currentFrame.duration <= 0)) {
|
||||
currentFrame.duration = frames[frames.length - 1].duration;
|
||||
}
|
||||
|
||||
// Push the final frame
|
||||
// TODO added for LHLS, make sure this is OK
|
||||
frames.byteLength += currentFrame.byteLength;
|
||||
frames.nalCount += currentFrame.length;
|
||||
frames.duration += currentFrame.duration;
|
||||
|
||||
frames.push(currentFrame);
|
||||
return frames;
|
||||
};
|
||||
|
||||
// Convert an array of frames into an array of Gop with each Gop being composed
|
||||
// of the frames that make up that Gop
|
||||
// Also keep track of cummulative data about the Gop from the frames such as the
|
||||
// Gop duration, starting pts, etc.
|
||||
var groupFramesIntoGops = function(frames) {
|
||||
var
|
||||
i,
|
||||
currentFrame,
|
||||
currentGop = [],
|
||||
gops = [];
|
||||
|
||||
// We must pre-set some of the values on the Gop since we
|
||||
// keep running totals of these values
|
||||
currentGop.byteLength = 0;
|
||||
currentGop.nalCount = 0;
|
||||
currentGop.duration = 0;
|
||||
currentGop.pts = frames[0].pts;
|
||||
currentGop.dts = frames[0].dts;
|
||||
|
||||
// store some metadata about all the Gops
|
||||
gops.byteLength = 0;
|
||||
gops.nalCount = 0;
|
||||
gops.duration = 0;
|
||||
gops.pts = frames[0].pts;
|
||||
gops.dts = frames[0].dts;
|
||||
|
||||
for (i = 0; i < frames.length; i++) {
|
||||
currentFrame = frames[i];
|
||||
|
||||
if (currentFrame.keyFrame) {
|
||||
// Since the very first frame is expected to be an keyframe
|
||||
// only push to the gops array when currentGop is not empty
|
||||
if (currentGop.length) {
|
||||
gops.push(currentGop);
|
||||
gops.byteLength += currentGop.byteLength;
|
||||
gops.nalCount += currentGop.nalCount;
|
||||
gops.duration += currentGop.duration;
|
||||
}
|
||||
|
||||
currentGop = [currentFrame];
|
||||
currentGop.nalCount = currentFrame.length;
|
||||
currentGop.byteLength = currentFrame.byteLength;
|
||||
currentGop.pts = currentFrame.pts;
|
||||
currentGop.dts = currentFrame.dts;
|
||||
currentGop.duration = currentFrame.duration;
|
||||
} else {
|
||||
currentGop.duration += currentFrame.duration;
|
||||
currentGop.nalCount += currentFrame.length;
|
||||
currentGop.byteLength += currentFrame.byteLength;
|
||||
currentGop.push(currentFrame);
|
||||
}
|
||||
}
|
||||
|
||||
if (gops.length && currentGop.duration <= 0) {
|
||||
currentGop.duration = gops[gops.length - 1].duration;
|
||||
}
|
||||
gops.byteLength += currentGop.byteLength;
|
||||
gops.nalCount += currentGop.nalCount;
|
||||
gops.duration += currentGop.duration;
|
||||
|
||||
// push the final Gop
|
||||
gops.push(currentGop);
|
||||
return gops;
|
||||
};
|
||||
|
||||
/*
|
||||
* Search for the first keyframe in the GOPs and throw away all frames
|
||||
* until that keyframe. Then extend the duration of the pulled keyframe
|
||||
* and pull the PTS and DTS of the keyframe so that it covers the time
|
||||
* range of the frames that were disposed.
|
||||
*
|
||||
* @param {Array} gops video GOPs
|
||||
* @returns {Array} modified video GOPs
|
||||
*/
|
||||
var extendFirstKeyFrame = function(gops) {
|
||||
var currentGop;
|
||||
|
||||
if (!gops[0][0].keyFrame && gops.length > 1) {
|
||||
// Remove the first GOP
|
||||
currentGop = gops.shift();
|
||||
|
||||
gops.byteLength -= currentGop.byteLength;
|
||||
gops.nalCount -= currentGop.nalCount;
|
||||
|
||||
// Extend the first frame of what is now the
|
||||
// first gop to cover the time period of the
|
||||
// frames we just removed
|
||||
gops[0][0].dts = currentGop.dts;
|
||||
gops[0][0].pts = currentGop.pts;
|
||||
gops[0][0].duration += currentGop.duration;
|
||||
}
|
||||
|
||||
return gops;
|
||||
};
|
||||
|
||||
/**
|
||||
* Default sample object
|
||||
* see ISO/IEC 14496-12:2012, section 8.6.4.3
|
||||
*/
|
||||
var createDefaultSample = function() {
|
||||
return {
|
||||
size: 0,
|
||||
flags: {
|
||||
isLeading: 0,
|
||||
dependsOn: 1,
|
||||
isDependedOn: 0,
|
||||
hasRedundancy: 0,
|
||||
degradationPriority: 0,
|
||||
isNonSyncSample: 1
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/*
|
||||
* Collates information from a video frame into an object for eventual
|
||||
* entry into an MP4 sample table.
|
||||
*
|
||||
* @param {Object} frame the video frame
|
||||
* @param {Number} dataOffset the byte offset to position the sample
|
||||
* @return {Object} object containing sample table info for a frame
|
||||
*/
|
||||
var sampleForFrame = function(frame, dataOffset) {
|
||||
var sample = createDefaultSample();
|
||||
|
||||
sample.dataOffset = dataOffset;
|
||||
sample.compositionTimeOffset = frame.pts - frame.dts;
|
||||
sample.duration = frame.duration;
|
||||
sample.size = 4 * frame.length; // Space for nal unit size
|
||||
sample.size += frame.byteLength;
|
||||
|
||||
if (frame.keyFrame) {
|
||||
sample.flags.dependsOn = 2;
|
||||
sample.flags.isNonSyncSample = 0;
|
||||
}
|
||||
|
||||
return sample;
|
||||
};
|
||||
|
||||
// generate the track's sample table from an array of gops
|
||||
var generateSampleTable = function(gops, baseDataOffset) {
|
||||
var
|
||||
h, i,
|
||||
sample,
|
||||
currentGop,
|
||||
currentFrame,
|
||||
dataOffset = baseDataOffset || 0,
|
||||
samples = [];
|
||||
|
||||
for (h = 0; h < gops.length; h++) {
|
||||
currentGop = gops[h];
|
||||
|
||||
for (i = 0; i < currentGop.length; i++) {
|
||||
currentFrame = currentGop[i];
|
||||
|
||||
sample = sampleForFrame(currentFrame, dataOffset);
|
||||
|
||||
dataOffset += sample.size;
|
||||
|
||||
samples.push(sample);
|
||||
}
|
||||
}
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from an array of gops
|
||||
var concatenateNalData = function(gops) {
|
||||
var
|
||||
h, i, j,
|
||||
currentGop,
|
||||
currentFrame,
|
||||
currentNal,
|
||||
dataOffset = 0,
|
||||
nalsByteLength = gops.byteLength,
|
||||
numberOfNals = gops.nalCount,
|
||||
totalByteLength = nalsByteLength + 4 * numberOfNals,
|
||||
data = new Uint8Array(totalByteLength),
|
||||
view = new DataView(data.buffer);
|
||||
|
||||
// For each Gop..
|
||||
for (h = 0; h < gops.length; h++) {
|
||||
currentGop = gops[h];
|
||||
|
||||
// For each Frame..
|
||||
for (i = 0; i < currentGop.length; i++) {
|
||||
currentFrame = currentGop[i];
|
||||
|
||||
// For each NAL..
|
||||
for (j = 0; j < currentFrame.length; j++) {
|
||||
currentNal = currentFrame[j];
|
||||
|
||||
view.setUint32(dataOffset, currentNal.data.byteLength);
|
||||
dataOffset += 4;
|
||||
data.set(currentNal.data, dataOffset);
|
||||
dataOffset += currentNal.data.byteLength;
|
||||
}
|
||||
}
|
||||
}
|
||||
return data;
|
||||
};
|
||||
|
||||
// generate the track's sample table from a frame
|
||||
var generateSampleTableForFrame = function(frame, baseDataOffset) {
|
||||
var
|
||||
sample,
|
||||
dataOffset = baseDataOffset || 0,
|
||||
samples = [];
|
||||
|
||||
sample = sampleForFrame(frame, dataOffset);
|
||||
samples.push(sample);
|
||||
|
||||
return samples;
|
||||
};
|
||||
|
||||
// generate the track's raw mdat data from a frame
|
||||
var concatenateNalDataForFrame = function(frame) {
|
||||
var
|
||||
i,
|
||||
currentNal,
|
||||
dataOffset = 0,
|
||||
nalsByteLength = frame.byteLength,
|
||||
numberOfNals = frame.length,
|
||||
totalByteLength = nalsByteLength + 4 * numberOfNals,
|
||||
data = new Uint8Array(totalByteLength),
|
||||
view = new DataView(data.buffer);
|
||||
|
||||
// For each NAL..
|
||||
for (i = 0; i < frame.length; i++) {
|
||||
currentNal = frame[i];
|
||||
|
||||
view.setUint32(dataOffset, currentNal.data.byteLength);
|
||||
dataOffset += 4;
|
||||
data.set(currentNal.data, dataOffset);
|
||||
dataOffset += currentNal.data.byteLength;
|
||||
}
|
||||
|
||||
return data;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
groupNalsIntoFrames: groupNalsIntoFrames,
|
||||
groupFramesIntoGops: groupFramesIntoGops,
|
||||
extendFirstKeyFrame: extendFirstKeyFrame,
|
||||
generateSampleTable: generateSampleTable,
|
||||
concatenateNalData: concatenateNalData,
|
||||
generateSampleTableForFrame: generateSampleTableForFrame,
|
||||
concatenateNalDataForFrame: concatenateNalDataForFrame
|
||||
};
|
||||
|
|
28
node_modules/mux.js/lib/mp4/index.js
generated
vendored
28
node_modules/mux.js/lib/mp4/index.js
generated
vendored
|
@ -1,14 +1,14 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = {
|
||||
generator: require('./mp4-generator'),
|
||||
probe: require('./probe'),
|
||||
Transmuxer: require('./transmuxer').Transmuxer,
|
||||
AudioSegmentStream: require('./transmuxer').AudioSegmentStream,
|
||||
VideoSegmentStream: require('./transmuxer').VideoSegmentStream,
|
||||
CaptionParser: require('./caption-parser')
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
module.exports = {
|
||||
generator: require('./mp4-generator'),
|
||||
probe: require('./probe'),
|
||||
Transmuxer: require('./transmuxer').Transmuxer,
|
||||
AudioSegmentStream: require('./transmuxer').AudioSegmentStream,
|
||||
VideoSegmentStream: require('./transmuxer').VideoSegmentStream,
|
||||
CaptionParser: require('./caption-parser')
|
||||
};
|
||||
|
|
1598
node_modules/mux.js/lib/mp4/mp4-generator.js
generated
vendored
1598
node_modules/mux.js/lib/mp4/mp4-generator.js
generated
vendored
File diff suppressed because it is too large
Load diff
22
node_modules/mux.js/lib/mp4/parse-type.js
generated
vendored
22
node_modules/mux.js/lib/mp4/parse-type.js
generated
vendored
|
@ -1,11 +1,11 @@
|
|||
var parseType = function(buffer) {
|
||||
var result = '';
|
||||
result += String.fromCharCode(buffer[0]);
|
||||
result += String.fromCharCode(buffer[1]);
|
||||
result += String.fromCharCode(buffer[2]);
|
||||
result += String.fromCharCode(buffer[3]);
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
module.exports = parseType;
|
||||
var parseType = function(buffer) {
|
||||
var result = '';
|
||||
result += String.fromCharCode(buffer[0]);
|
||||
result += String.fromCharCode(buffer[1]);
|
||||
result += String.fromCharCode(buffer[2]);
|
||||
result += String.fromCharCode(buffer[3]);
|
||||
return result;
|
||||
};
|
||||
|
||||
|
||||
module.exports = parseType;
|
||||
|
|
732
node_modules/mux.js/lib/mp4/probe.js
generated
vendored
732
node_modules/mux.js/lib/mp4/probe.js
generated
vendored
|
@ -1,366 +1,366 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about MP4s.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
var toHexString = require('../utils/bin').toHexString;
|
||||
var findBox = require('../mp4/find-box.js');
|
||||
var parseType = require('../mp4/parse-type.js');
|
||||
var parseTfhd = require('../tools/parse-tfhd.js');
|
||||
var parseTrun = require('../tools/parse-trun.js');
|
||||
var parseTfdt = require('../tools/parse-tfdt.js');
|
||||
var timescale, startTime, compositionStartTime, getVideoTrackIds, getTracks,
|
||||
getTimescaleFromMediaHeader;
|
||||
|
||||
/**
|
||||
* Parses an MP4 initialization segment and extracts the timescale
|
||||
* values for any declared tracks. Timescale values indicate the
|
||||
* number of clock ticks per second to assume for time-based values
|
||||
* elsewhere in the MP4.
|
||||
*
|
||||
* To determine the start time of an MP4, you need two pieces of
|
||||
* information: the timescale unit and the earliest base media decode
|
||||
* time. Multiple timescales can be specified within an MP4 but the
|
||||
* base media decode time is always expressed in the timescale from
|
||||
* the media header box for the track:
|
||||
* ```
|
||||
* moov > trak > mdia > mdhd.timescale
|
||||
* ```
|
||||
* @param init {Uint8Array} the bytes of the init segment
|
||||
* @return {object} a hash of track ids to timescale values or null if
|
||||
* the init segment is malformed.
|
||||
*/
|
||||
timescale = function(init) {
|
||||
var
|
||||
result = {},
|
||||
traks = findBox(init, ['moov', 'trak']);
|
||||
|
||||
// mdhd timescale
|
||||
return traks.reduce(function(result, trak) {
|
||||
var tkhd, version, index, id, mdhd;
|
||||
|
||||
tkhd = findBox(trak, ['tkhd'])[0];
|
||||
if (!tkhd) {
|
||||
return null;
|
||||
}
|
||||
version = tkhd[0];
|
||||
index = version === 0 ? 12 : 20;
|
||||
id = toUnsigned(tkhd[index] << 24 |
|
||||
tkhd[index + 1] << 16 |
|
||||
tkhd[index + 2] << 8 |
|
||||
tkhd[index + 3]);
|
||||
|
||||
mdhd = findBox(trak, ['mdia', 'mdhd'])[0];
|
||||
if (!mdhd) {
|
||||
return null;
|
||||
}
|
||||
version = mdhd[0];
|
||||
index = version === 0 ? 12 : 20;
|
||||
result[id] = toUnsigned(mdhd[index] << 24 |
|
||||
mdhd[index + 1] << 16 |
|
||||
mdhd[index + 2] << 8 |
|
||||
mdhd[index + 3]);
|
||||
return result;
|
||||
}, result);
|
||||
};
|
||||
|
||||
/**
|
||||
* Determine the base media decode start time, in seconds, for an MP4
|
||||
* fragment. If multiple fragments are specified, the earliest time is
|
||||
* returned.
|
||||
*
|
||||
* The base media decode time can be parsed from track fragment
|
||||
* metadata:
|
||||
* ```
|
||||
* moof > traf > tfdt.baseMediaDecodeTime
|
||||
* ```
|
||||
* It requires the timescale value from the mdhd to interpret.
|
||||
*
|
||||
* @param timescale {object} a hash of track ids to timescale values.
|
||||
* @return {number} the earliest base media decode start time for the
|
||||
* fragment, in seconds
|
||||
*/
|
||||
startTime = function(timescale, fragment) {
|
||||
var trafs, baseTimes, result;
|
||||
|
||||
// we need info from two childrend of each track fragment box
|
||||
trafs = findBox(fragment, ['moof', 'traf']);
|
||||
|
||||
// determine the start times for each track
|
||||
baseTimes = [].concat.apply([], trafs.map(function(traf) {
|
||||
return findBox(traf, ['tfhd']).map(function(tfhd) {
|
||||
var id, scale, baseTime;
|
||||
|
||||
// get the track id from the tfhd
|
||||
id = toUnsigned(tfhd[4] << 24 |
|
||||
tfhd[5] << 16 |
|
||||
tfhd[6] << 8 |
|
||||
tfhd[7]);
|
||||
// assume a 90kHz clock if no timescale was specified
|
||||
scale = timescale[id] || 90e3;
|
||||
|
||||
// get the base media decode time from the tfdt
|
||||
baseTime = findBox(traf, ['tfdt']).map(function(tfdt) {
|
||||
var version, result;
|
||||
|
||||
version = tfdt[0];
|
||||
result = toUnsigned(tfdt[4] << 24 |
|
||||
tfdt[5] << 16 |
|
||||
tfdt[6] << 8 |
|
||||
tfdt[7]);
|
||||
if (version === 1) {
|
||||
result *= Math.pow(2, 32);
|
||||
result += toUnsigned(tfdt[8] << 24 |
|
||||
tfdt[9] << 16 |
|
||||
tfdt[10] << 8 |
|
||||
tfdt[11]);
|
||||
}
|
||||
return result;
|
||||
})[0];
|
||||
baseTime = typeof baseTime === 'number' && !isNaN(baseTime) ? baseTime : Infinity;
|
||||
|
||||
// convert base time to seconds
|
||||
return baseTime / scale;
|
||||
});
|
||||
}));
|
||||
|
||||
// return the minimum
|
||||
result = Math.min.apply(null, baseTimes);
|
||||
return isFinite(result) ? result : 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* Determine the composition start, in seconds, for an MP4
|
||||
* fragment.
|
||||
*
|
||||
* The composition start time of a fragment can be calculated using the base
|
||||
* media decode time, composition time offset, and timescale, as follows:
|
||||
*
|
||||
* compositionStartTime = (baseMediaDecodeTime + compositionTimeOffset) / timescale
|
||||
*
|
||||
* All of the aforementioned information is contained within a media fragment's
|
||||
* `traf` box, except for timescale info, which comes from the initialization
|
||||
* segment, so a track id (also contained within a `traf`) is also necessary to
|
||||
* associate it with a timescale
|
||||
*
|
||||
*
|
||||
* @param timescales {object} - a hash of track ids to timescale values.
|
||||
* @param fragment {Unit8Array} - the bytes of a media segment
|
||||
* @return {number} the composition start time for the fragment, in seconds
|
||||
**/
|
||||
compositionStartTime = function(timescales, fragment) {
|
||||
var trafBoxes = findBox(fragment, ['moof', 'traf']);
|
||||
var baseMediaDecodeTime = 0;
|
||||
var compositionTimeOffset = 0;
|
||||
var trackId;
|
||||
|
||||
if (trafBoxes && trafBoxes.length) {
|
||||
// The spec states that track run samples contained within a `traf` box are contiguous, but
|
||||
// it does not explicitly state whether the `traf` boxes themselves are contiguous.
|
||||
// We will assume that they are, so we only need the first to calculate start time.
|
||||
var tfhd = findBox(trafBoxes[0], ['tfhd'])[0];
|
||||
var trun = findBox(trafBoxes[0], ['trun'])[0];
|
||||
var tfdt = findBox(trafBoxes[0], ['tfdt'])[0];
|
||||
|
||||
if (tfhd) {
|
||||
var parsedTfhd = parseTfhd(tfhd);
|
||||
|
||||
trackId = parsedTfhd.trackId;
|
||||
}
|
||||
|
||||
if (tfdt) {
|
||||
var parsedTfdt = parseTfdt(tfdt);
|
||||
|
||||
baseMediaDecodeTime = parsedTfdt.baseMediaDecodeTime;
|
||||
}
|
||||
|
||||
if (trun) {
|
||||
var parsedTrun = parseTrun(trun);
|
||||
|
||||
if (parsedTrun.samples && parsedTrun.samples.length) {
|
||||
compositionTimeOffset = parsedTrun.samples[0].compositionTimeOffset || 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Get timescale for this specific track. Assume a 90kHz clock if no timescale was
|
||||
// specified.
|
||||
var timescale = timescales[trackId] || 90e3;
|
||||
|
||||
// return the composition start time, in seconds
|
||||
return (baseMediaDecodeTime + compositionTimeOffset) / timescale;
|
||||
};
|
||||
|
||||
/**
|
||||
* Find the trackIds of the video tracks in this source.
|
||||
* Found by parsing the Handler Reference and Track Header Boxes:
|
||||
* moov > trak > mdia > hdlr
|
||||
* moov > trak > tkhd
|
||||
*
|
||||
* @param {Uint8Array} init - The bytes of the init segment for this source
|
||||
* @return {Number[]} A list of trackIds
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.4.3
|
||||
**/
|
||||
getVideoTrackIds = function(init) {
|
||||
var traks = findBox(init, ['moov', 'trak']);
|
||||
var videoTrackIds = [];
|
||||
|
||||
traks.forEach(function(trak) {
|
||||
var hdlrs = findBox(trak, ['mdia', 'hdlr']);
|
||||
var tkhds = findBox(trak, ['tkhd']);
|
||||
|
||||
hdlrs.forEach(function(hdlr, index) {
|
||||
var handlerType = parseType(hdlr.subarray(8, 12));
|
||||
var tkhd = tkhds[index];
|
||||
var view;
|
||||
var version;
|
||||
var trackId;
|
||||
|
||||
if (handlerType === 'vide') {
|
||||
view = new DataView(tkhd.buffer, tkhd.byteOffset, tkhd.byteLength);
|
||||
version = view.getUint8(0);
|
||||
trackId = (version === 0) ? view.getUint32(12) : view.getUint32(20);
|
||||
|
||||
videoTrackIds.push(trackId);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return videoTrackIds;
|
||||
};
|
||||
|
||||
getTimescaleFromMediaHeader = function(mdhd) {
|
||||
// mdhd is a FullBox, meaning it will have its own version as the first byte
|
||||
var version = mdhd[0];
|
||||
var index = version === 0 ? 12 : 20;
|
||||
|
||||
return toUnsigned(
|
||||
mdhd[index] << 24 |
|
||||
mdhd[index + 1] << 16 |
|
||||
mdhd[index + 2] << 8 |
|
||||
mdhd[index + 3]
|
||||
);
|
||||
};
|
||||
|
||||
/**
|
||||
* Get all the video, audio, and hint tracks from a non fragmented
|
||||
* mp4 segment
|
||||
*/
|
||||
getTracks = function(init) {
|
||||
var traks = findBox(init, ['moov', 'trak']);
|
||||
var tracks = [];
|
||||
|
||||
traks.forEach(function(trak) {
|
||||
var track = {};
|
||||
var tkhd = findBox(trak, ['tkhd'])[0];
|
||||
var view, tkhdVersion;
|
||||
|
||||
// id
|
||||
if (tkhd) {
|
||||
view = new DataView(tkhd.buffer, tkhd.byteOffset, tkhd.byteLength);
|
||||
tkhdVersion = view.getUint8(0);
|
||||
|
||||
track.id = (tkhdVersion === 0) ? view.getUint32(12) : view.getUint32(20);
|
||||
}
|
||||
|
||||
var hdlr = findBox(trak, ['mdia', 'hdlr'])[0];
|
||||
|
||||
// type
|
||||
if (hdlr) {
|
||||
var type = parseType(hdlr.subarray(8, 12));
|
||||
|
||||
if (type === 'vide') {
|
||||
track.type = 'video';
|
||||
} else if (type === 'soun') {
|
||||
track.type = 'audio';
|
||||
} else {
|
||||
track.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// codec
|
||||
var stsd = findBox(trak, ['mdia', 'minf', 'stbl', 'stsd'])[0];
|
||||
|
||||
if (stsd) {
|
||||
var sampleDescriptions = stsd.subarray(8);
|
||||
// gives the codec type string
|
||||
track.codec = parseType(sampleDescriptions.subarray(4, 8));
|
||||
|
||||
var codecBox = findBox(sampleDescriptions, [track.codec])[0];
|
||||
var codecConfig, codecConfigType;
|
||||
|
||||
if (codecBox) {
|
||||
// https://tools.ietf.org/html/rfc6381#section-3.3
|
||||
if ((/^[a-z]vc[1-9]$/i).test(track.codec)) {
|
||||
// we don't need anything but the "config" parameter of the
|
||||
// avc1 codecBox
|
||||
codecConfig = codecBox.subarray(78);
|
||||
codecConfigType = parseType(codecConfig.subarray(4, 8));
|
||||
|
||||
if (codecConfigType === 'avcC' && codecConfig.length > 11) {
|
||||
track.codec += '.';
|
||||
|
||||
// left padded with zeroes for single digit hex
|
||||
// profile idc
|
||||
track.codec += toHexString(codecConfig[9]);
|
||||
// the byte containing the constraint_set flags
|
||||
track.codec += toHexString(codecConfig[10]);
|
||||
// level idc
|
||||
track.codec += toHexString(codecConfig[11]);
|
||||
} else {
|
||||
// TODO: show a warning that we couldn't parse the codec
|
||||
// and are using the default
|
||||
track.codec = 'avc1.4d400d';
|
||||
}
|
||||
} else if ((/^mp4[a,v]$/i).test(track.codec)) {
|
||||
// we do not need anything but the streamDescriptor of the mp4a codecBox
|
||||
codecConfig = codecBox.subarray(28);
|
||||
codecConfigType = parseType(codecConfig.subarray(4, 8));
|
||||
|
||||
if (codecConfigType === 'esds' && codecConfig.length > 20 && codecConfig[19] !== 0) {
|
||||
track.codec += '.' + toHexString(codecConfig[19]);
|
||||
// this value is only a single digit
|
||||
track.codec += '.' + toHexString((codecConfig[20] >>> 2) & 0x3f).replace(/^0/, '');
|
||||
} else {
|
||||
// TODO: show a warning that we couldn't parse the codec
|
||||
// and are using the default
|
||||
track.codec = 'mp4a.40.2';
|
||||
}
|
||||
} else {
|
||||
// flac, opus, etc
|
||||
track.codec = track.codec.toLowerCase();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var mdhd = findBox(trak, ['mdia', 'mdhd'])[0];
|
||||
|
||||
if (mdhd) {
|
||||
track.timescale = getTimescaleFromMediaHeader(mdhd);
|
||||
}
|
||||
|
||||
tracks.push(track);
|
||||
});
|
||||
|
||||
return tracks;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
// export mp4 inspector's findBox and parseType for backwards compatibility
|
||||
findBox: findBox,
|
||||
parseType: parseType,
|
||||
timescale: timescale,
|
||||
startTime: startTime,
|
||||
compositionStartTime: compositionStartTime,
|
||||
videoTrackIds: getVideoTrackIds,
|
||||
tracks: getTracks,
|
||||
getTimescaleFromMediaHeader: getTimescaleFromMediaHeader
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* Utilities to detect basic properties and metadata about MP4s.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
var toHexString = require('../utils/bin').toHexString;
|
||||
var findBox = require('../mp4/find-box.js');
|
||||
var parseType = require('../mp4/parse-type.js');
|
||||
var parseTfhd = require('../tools/parse-tfhd.js');
|
||||
var parseTrun = require('../tools/parse-trun.js');
|
||||
var parseTfdt = require('../tools/parse-tfdt.js');
|
||||
var timescale, startTime, compositionStartTime, getVideoTrackIds, getTracks,
|
||||
getTimescaleFromMediaHeader;
|
||||
|
||||
/**
|
||||
* Parses an MP4 initialization segment and extracts the timescale
|
||||
* values for any declared tracks. Timescale values indicate the
|
||||
* number of clock ticks per second to assume for time-based values
|
||||
* elsewhere in the MP4.
|
||||
*
|
||||
* To determine the start time of an MP4, you need two pieces of
|
||||
* information: the timescale unit and the earliest base media decode
|
||||
* time. Multiple timescales can be specified within an MP4 but the
|
||||
* base media decode time is always expressed in the timescale from
|
||||
* the media header box for the track:
|
||||
* ```
|
||||
* moov > trak > mdia > mdhd.timescale
|
||||
* ```
|
||||
* @param init {Uint8Array} the bytes of the init segment
|
||||
* @return {object} a hash of track ids to timescale values or null if
|
||||
* the init segment is malformed.
|
||||
*/
|
||||
timescale = function(init) {
|
||||
var
|
||||
result = {},
|
||||
traks = findBox(init, ['moov', 'trak']);
|
||||
|
||||
// mdhd timescale
|
||||
return traks.reduce(function(result, trak) {
|
||||
var tkhd, version, index, id, mdhd;
|
||||
|
||||
tkhd = findBox(trak, ['tkhd'])[0];
|
||||
if (!tkhd) {
|
||||
return null;
|
||||
}
|
||||
version = tkhd[0];
|
||||
index = version === 0 ? 12 : 20;
|
||||
id = toUnsigned(tkhd[index] << 24 |
|
||||
tkhd[index + 1] << 16 |
|
||||
tkhd[index + 2] << 8 |
|
||||
tkhd[index + 3]);
|
||||
|
||||
mdhd = findBox(trak, ['mdia', 'mdhd'])[0];
|
||||
if (!mdhd) {
|
||||
return null;
|
||||
}
|
||||
version = mdhd[0];
|
||||
index = version === 0 ? 12 : 20;
|
||||
result[id] = toUnsigned(mdhd[index] << 24 |
|
||||
mdhd[index + 1] << 16 |
|
||||
mdhd[index + 2] << 8 |
|
||||
mdhd[index + 3]);
|
||||
return result;
|
||||
}, result);
|
||||
};
|
||||
|
||||
/**
|
||||
* Determine the base media decode start time, in seconds, for an MP4
|
||||
* fragment. If multiple fragments are specified, the earliest time is
|
||||
* returned.
|
||||
*
|
||||
* The base media decode time can be parsed from track fragment
|
||||
* metadata:
|
||||
* ```
|
||||
* moof > traf > tfdt.baseMediaDecodeTime
|
||||
* ```
|
||||
* It requires the timescale value from the mdhd to interpret.
|
||||
*
|
||||
* @param timescale {object} a hash of track ids to timescale values.
|
||||
* @return {number} the earliest base media decode start time for the
|
||||
* fragment, in seconds
|
||||
*/
|
||||
startTime = function(timescale, fragment) {
|
||||
var trafs, baseTimes, result;
|
||||
|
||||
// we need info from two childrend of each track fragment box
|
||||
trafs = findBox(fragment, ['moof', 'traf']);
|
||||
|
||||
// determine the start times for each track
|
||||
baseTimes = [].concat.apply([], trafs.map(function(traf) {
|
||||
return findBox(traf, ['tfhd']).map(function(tfhd) {
|
||||
var id, scale, baseTime;
|
||||
|
||||
// get the track id from the tfhd
|
||||
id = toUnsigned(tfhd[4] << 24 |
|
||||
tfhd[5] << 16 |
|
||||
tfhd[6] << 8 |
|
||||
tfhd[7]);
|
||||
// assume a 90kHz clock if no timescale was specified
|
||||
scale = timescale[id] || 90e3;
|
||||
|
||||
// get the base media decode time from the tfdt
|
||||
baseTime = findBox(traf, ['tfdt']).map(function(tfdt) {
|
||||
var version, result;
|
||||
|
||||
version = tfdt[0];
|
||||
result = toUnsigned(tfdt[4] << 24 |
|
||||
tfdt[5] << 16 |
|
||||
tfdt[6] << 8 |
|
||||
tfdt[7]);
|
||||
if (version === 1) {
|
||||
result *= Math.pow(2, 32);
|
||||
result += toUnsigned(tfdt[8] << 24 |
|
||||
tfdt[9] << 16 |
|
||||
tfdt[10] << 8 |
|
||||
tfdt[11]);
|
||||
}
|
||||
return result;
|
||||
})[0];
|
||||
baseTime = typeof baseTime === 'number' && !isNaN(baseTime) ? baseTime : Infinity;
|
||||
|
||||
// convert base time to seconds
|
||||
return baseTime / scale;
|
||||
});
|
||||
}));
|
||||
|
||||
// return the minimum
|
||||
result = Math.min.apply(null, baseTimes);
|
||||
return isFinite(result) ? result : 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* Determine the composition start, in seconds, for an MP4
|
||||
* fragment.
|
||||
*
|
||||
* The composition start time of a fragment can be calculated using the base
|
||||
* media decode time, composition time offset, and timescale, as follows:
|
||||
*
|
||||
* compositionStartTime = (baseMediaDecodeTime + compositionTimeOffset) / timescale
|
||||
*
|
||||
* All of the aforementioned information is contained within a media fragment's
|
||||
* `traf` box, except for timescale info, which comes from the initialization
|
||||
* segment, so a track id (also contained within a `traf`) is also necessary to
|
||||
* associate it with a timescale
|
||||
*
|
||||
*
|
||||
* @param timescales {object} - a hash of track ids to timescale values.
|
||||
* @param fragment {Unit8Array} - the bytes of a media segment
|
||||
* @return {number} the composition start time for the fragment, in seconds
|
||||
**/
|
||||
compositionStartTime = function(timescales, fragment) {
|
||||
var trafBoxes = findBox(fragment, ['moof', 'traf']);
|
||||
var baseMediaDecodeTime = 0;
|
||||
var compositionTimeOffset = 0;
|
||||
var trackId;
|
||||
|
||||
if (trafBoxes && trafBoxes.length) {
|
||||
// The spec states that track run samples contained within a `traf` box are contiguous, but
|
||||
// it does not explicitly state whether the `traf` boxes themselves are contiguous.
|
||||
// We will assume that they are, so we only need the first to calculate start time.
|
||||
var tfhd = findBox(trafBoxes[0], ['tfhd'])[0];
|
||||
var trun = findBox(trafBoxes[0], ['trun'])[0];
|
||||
var tfdt = findBox(trafBoxes[0], ['tfdt'])[0];
|
||||
|
||||
if (tfhd) {
|
||||
var parsedTfhd = parseTfhd(tfhd);
|
||||
|
||||
trackId = parsedTfhd.trackId;
|
||||
}
|
||||
|
||||
if (tfdt) {
|
||||
var parsedTfdt = parseTfdt(tfdt);
|
||||
|
||||
baseMediaDecodeTime = parsedTfdt.baseMediaDecodeTime;
|
||||
}
|
||||
|
||||
if (trun) {
|
||||
var parsedTrun = parseTrun(trun);
|
||||
|
||||
if (parsedTrun.samples && parsedTrun.samples.length) {
|
||||
compositionTimeOffset = parsedTrun.samples[0].compositionTimeOffset || 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Get timescale for this specific track. Assume a 90kHz clock if no timescale was
|
||||
// specified.
|
||||
var timescale = timescales[trackId] || 90e3;
|
||||
|
||||
// return the composition start time, in seconds
|
||||
return (baseMediaDecodeTime + compositionTimeOffset) / timescale;
|
||||
};
|
||||
|
||||
/**
|
||||
* Find the trackIds of the video tracks in this source.
|
||||
* Found by parsing the Handler Reference and Track Header Boxes:
|
||||
* moov > trak > mdia > hdlr
|
||||
* moov > trak > tkhd
|
||||
*
|
||||
* @param {Uint8Array} init - The bytes of the init segment for this source
|
||||
* @return {Number[]} A list of trackIds
|
||||
*
|
||||
* @see ISO-BMFF-12/2015, Section 8.4.3
|
||||
**/
|
||||
getVideoTrackIds = function(init) {
|
||||
var traks = findBox(init, ['moov', 'trak']);
|
||||
var videoTrackIds = [];
|
||||
|
||||
traks.forEach(function(trak) {
|
||||
var hdlrs = findBox(trak, ['mdia', 'hdlr']);
|
||||
var tkhds = findBox(trak, ['tkhd']);
|
||||
|
||||
hdlrs.forEach(function(hdlr, index) {
|
||||
var handlerType = parseType(hdlr.subarray(8, 12));
|
||||
var tkhd = tkhds[index];
|
||||
var view;
|
||||
var version;
|
||||
var trackId;
|
||||
|
||||
if (handlerType === 'vide') {
|
||||
view = new DataView(tkhd.buffer, tkhd.byteOffset, tkhd.byteLength);
|
||||
version = view.getUint8(0);
|
||||
trackId = (version === 0) ? view.getUint32(12) : view.getUint32(20);
|
||||
|
||||
videoTrackIds.push(trackId);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return videoTrackIds;
|
||||
};
|
||||
|
||||
getTimescaleFromMediaHeader = function(mdhd) {
|
||||
// mdhd is a FullBox, meaning it will have its own version as the first byte
|
||||
var version = mdhd[0];
|
||||
var index = version === 0 ? 12 : 20;
|
||||
|
||||
return toUnsigned(
|
||||
mdhd[index] << 24 |
|
||||
mdhd[index + 1] << 16 |
|
||||
mdhd[index + 2] << 8 |
|
||||
mdhd[index + 3]
|
||||
);
|
||||
};
|
||||
|
||||
/**
|
||||
* Get all the video, audio, and hint tracks from a non fragmented
|
||||
* mp4 segment
|
||||
*/
|
||||
getTracks = function(init) {
|
||||
var traks = findBox(init, ['moov', 'trak']);
|
||||
var tracks = [];
|
||||
|
||||
traks.forEach(function(trak) {
|
||||
var track = {};
|
||||
var tkhd = findBox(trak, ['tkhd'])[0];
|
||||
var view, tkhdVersion;
|
||||
|
||||
// id
|
||||
if (tkhd) {
|
||||
view = new DataView(tkhd.buffer, tkhd.byteOffset, tkhd.byteLength);
|
||||
tkhdVersion = view.getUint8(0);
|
||||
|
||||
track.id = (tkhdVersion === 0) ? view.getUint32(12) : view.getUint32(20);
|
||||
}
|
||||
|
||||
var hdlr = findBox(trak, ['mdia', 'hdlr'])[0];
|
||||
|
||||
// type
|
||||
if (hdlr) {
|
||||
var type = parseType(hdlr.subarray(8, 12));
|
||||
|
||||
if (type === 'vide') {
|
||||
track.type = 'video';
|
||||
} else if (type === 'soun') {
|
||||
track.type = 'audio';
|
||||
} else {
|
||||
track.type = type;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// codec
|
||||
var stsd = findBox(trak, ['mdia', 'minf', 'stbl', 'stsd'])[0];
|
||||
|
||||
if (stsd) {
|
||||
var sampleDescriptions = stsd.subarray(8);
|
||||
// gives the codec type string
|
||||
track.codec = parseType(sampleDescriptions.subarray(4, 8));
|
||||
|
||||
var codecBox = findBox(sampleDescriptions, [track.codec])[0];
|
||||
var codecConfig, codecConfigType;
|
||||
|
||||
if (codecBox) {
|
||||
// https://tools.ietf.org/html/rfc6381#section-3.3
|
||||
if ((/^[a-z]vc[1-9]$/i).test(track.codec)) {
|
||||
// we don't need anything but the "config" parameter of the
|
||||
// avc1 codecBox
|
||||
codecConfig = codecBox.subarray(78);
|
||||
codecConfigType = parseType(codecConfig.subarray(4, 8));
|
||||
|
||||
if (codecConfigType === 'avcC' && codecConfig.length > 11) {
|
||||
track.codec += '.';
|
||||
|
||||
// left padded with zeroes for single digit hex
|
||||
// profile idc
|
||||
track.codec += toHexString(codecConfig[9]);
|
||||
// the byte containing the constraint_set flags
|
||||
track.codec += toHexString(codecConfig[10]);
|
||||
// level idc
|
||||
track.codec += toHexString(codecConfig[11]);
|
||||
} else {
|
||||
// TODO: show a warning that we couldn't parse the codec
|
||||
// and are using the default
|
||||
track.codec = 'avc1.4d400d';
|
||||
}
|
||||
} else if ((/^mp4[a,v]$/i).test(track.codec)) {
|
||||
// we do not need anything but the streamDescriptor of the mp4a codecBox
|
||||
codecConfig = codecBox.subarray(28);
|
||||
codecConfigType = parseType(codecConfig.subarray(4, 8));
|
||||
|
||||
if (codecConfigType === 'esds' && codecConfig.length > 20 && codecConfig[19] !== 0) {
|
||||
track.codec += '.' + toHexString(codecConfig[19]);
|
||||
// this value is only a single digit
|
||||
track.codec += '.' + toHexString((codecConfig[20] >>> 2) & 0x3f).replace(/^0/, '');
|
||||
} else {
|
||||
// TODO: show a warning that we couldn't parse the codec
|
||||
// and are using the default
|
||||
track.codec = 'mp4a.40.2';
|
||||
}
|
||||
} else {
|
||||
// flac, opus, etc
|
||||
track.codec = track.codec.toLowerCase();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var mdhd = findBox(trak, ['mdia', 'mdhd'])[0];
|
||||
|
||||
if (mdhd) {
|
||||
track.timescale = getTimescaleFromMediaHeader(mdhd);
|
||||
}
|
||||
|
||||
tracks.push(track);
|
||||
});
|
||||
|
||||
return tracks;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
// export mp4 inspector's findBox and parseType for backwards compatibility
|
||||
findBox: findBox,
|
||||
parseType: parseType,
|
||||
timescale: timescale,
|
||||
startTime: startTime,
|
||||
compositionStartTime: compositionStartTime,
|
||||
videoTrackIds: getVideoTrackIds,
|
||||
tracks: getTracks,
|
||||
getTimescaleFromMediaHeader: getTimescaleFromMediaHeader
|
||||
};
|
||||
|
|
214
node_modules/mux.js/lib/mp4/track-decode-info.js
generated
vendored
214
node_modules/mux.js/lib/mp4/track-decode-info.js
generated
vendored
|
@ -1,107 +1,107 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
|
||||
/**
|
||||
* Store information about the start and end of the track and the
|
||||
* duration for each frame/sample we process in order to calculate
|
||||
* the baseMediaDecodeTime
|
||||
*/
|
||||
var collectDtsInfo = function(track, data) {
|
||||
if (typeof data.pts === 'number') {
|
||||
if (track.timelineStartInfo.pts === undefined) {
|
||||
track.timelineStartInfo.pts = data.pts;
|
||||
}
|
||||
|
||||
if (track.minSegmentPts === undefined) {
|
||||
track.minSegmentPts = data.pts;
|
||||
} else {
|
||||
track.minSegmentPts = Math.min(track.minSegmentPts, data.pts);
|
||||
}
|
||||
|
||||
if (track.maxSegmentPts === undefined) {
|
||||
track.maxSegmentPts = data.pts;
|
||||
} else {
|
||||
track.maxSegmentPts = Math.max(track.maxSegmentPts, data.pts);
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof data.dts === 'number') {
|
||||
if (track.timelineStartInfo.dts === undefined) {
|
||||
track.timelineStartInfo.dts = data.dts;
|
||||
}
|
||||
|
||||
if (track.minSegmentDts === undefined) {
|
||||
track.minSegmentDts = data.dts;
|
||||
} else {
|
||||
track.minSegmentDts = Math.min(track.minSegmentDts, data.dts);
|
||||
}
|
||||
|
||||
if (track.maxSegmentDts === undefined) {
|
||||
track.maxSegmentDts = data.dts;
|
||||
} else {
|
||||
track.maxSegmentDts = Math.max(track.maxSegmentDts, data.dts);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Clear values used to calculate the baseMediaDecodeTime between
|
||||
* tracks
|
||||
*/
|
||||
var clearDtsInfo = function(track) {
|
||||
delete track.minSegmentDts;
|
||||
delete track.maxSegmentDts;
|
||||
delete track.minSegmentPts;
|
||||
delete track.maxSegmentPts;
|
||||
};
|
||||
|
||||
/**
|
||||
* Calculate the track's baseMediaDecodeTime based on the earliest
|
||||
* DTS the transmuxer has ever seen and the minimum DTS for the
|
||||
* current track
|
||||
* @param track {object} track metadata configuration
|
||||
* @param keepOriginalTimestamps {boolean} If true, keep the timestamps
|
||||
* in the source; false to adjust the first segment to start at 0.
|
||||
*/
|
||||
var calculateTrackBaseMediaDecodeTime = function(track, keepOriginalTimestamps) {
|
||||
var
|
||||
baseMediaDecodeTime,
|
||||
scale,
|
||||
minSegmentDts = track.minSegmentDts;
|
||||
|
||||
// Optionally adjust the time so the first segment starts at zero.
|
||||
if (!keepOriginalTimestamps) {
|
||||
minSegmentDts -= track.timelineStartInfo.dts;
|
||||
}
|
||||
|
||||
// track.timelineStartInfo.baseMediaDecodeTime is the location, in time, where
|
||||
// we want the start of the first segment to be placed
|
||||
baseMediaDecodeTime = track.timelineStartInfo.baseMediaDecodeTime;
|
||||
|
||||
// Add to that the distance this segment is from the very first
|
||||
baseMediaDecodeTime += minSegmentDts;
|
||||
|
||||
// baseMediaDecodeTime must not become negative
|
||||
baseMediaDecodeTime = Math.max(0, baseMediaDecodeTime);
|
||||
|
||||
if (track.type === 'audio') {
|
||||
// Audio has a different clock equal to the sampling_rate so we need to
|
||||
// scale the PTS values into the clock rate of the track
|
||||
scale = track.samplerate / ONE_SECOND_IN_TS;
|
||||
baseMediaDecodeTime *= scale;
|
||||
baseMediaDecodeTime = Math.floor(baseMediaDecodeTime);
|
||||
}
|
||||
|
||||
return baseMediaDecodeTime;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
clearDtsInfo: clearDtsInfo,
|
||||
calculateTrackBaseMediaDecodeTime: calculateTrackBaseMediaDecodeTime,
|
||||
collectDtsInfo: collectDtsInfo
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
|
||||
/**
|
||||
* Store information about the start and end of the track and the
|
||||
* duration for each frame/sample we process in order to calculate
|
||||
* the baseMediaDecodeTime
|
||||
*/
|
||||
var collectDtsInfo = function(track, data) {
|
||||
if (typeof data.pts === 'number') {
|
||||
if (track.timelineStartInfo.pts === undefined) {
|
||||
track.timelineStartInfo.pts = data.pts;
|
||||
}
|
||||
|
||||
if (track.minSegmentPts === undefined) {
|
||||
track.minSegmentPts = data.pts;
|
||||
} else {
|
||||
track.minSegmentPts = Math.min(track.minSegmentPts, data.pts);
|
||||
}
|
||||
|
||||
if (track.maxSegmentPts === undefined) {
|
||||
track.maxSegmentPts = data.pts;
|
||||
} else {
|
||||
track.maxSegmentPts = Math.max(track.maxSegmentPts, data.pts);
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof data.dts === 'number') {
|
||||
if (track.timelineStartInfo.dts === undefined) {
|
||||
track.timelineStartInfo.dts = data.dts;
|
||||
}
|
||||
|
||||
if (track.minSegmentDts === undefined) {
|
||||
track.minSegmentDts = data.dts;
|
||||
} else {
|
||||
track.minSegmentDts = Math.min(track.minSegmentDts, data.dts);
|
||||
}
|
||||
|
||||
if (track.maxSegmentDts === undefined) {
|
||||
track.maxSegmentDts = data.dts;
|
||||
} else {
|
||||
track.maxSegmentDts = Math.max(track.maxSegmentDts, data.dts);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Clear values used to calculate the baseMediaDecodeTime between
|
||||
* tracks
|
||||
*/
|
||||
var clearDtsInfo = function(track) {
|
||||
delete track.minSegmentDts;
|
||||
delete track.maxSegmentDts;
|
||||
delete track.minSegmentPts;
|
||||
delete track.maxSegmentPts;
|
||||
};
|
||||
|
||||
/**
|
||||
* Calculate the track's baseMediaDecodeTime based on the earliest
|
||||
* DTS the transmuxer has ever seen and the minimum DTS for the
|
||||
* current track
|
||||
* @param track {object} track metadata configuration
|
||||
* @param keepOriginalTimestamps {boolean} If true, keep the timestamps
|
||||
* in the source; false to adjust the first segment to start at 0.
|
||||
*/
|
||||
var calculateTrackBaseMediaDecodeTime = function(track, keepOriginalTimestamps) {
|
||||
var
|
||||
baseMediaDecodeTime,
|
||||
scale,
|
||||
minSegmentDts = track.minSegmentDts;
|
||||
|
||||
// Optionally adjust the time so the first segment starts at zero.
|
||||
if (!keepOriginalTimestamps) {
|
||||
minSegmentDts -= track.timelineStartInfo.dts;
|
||||
}
|
||||
|
||||
// track.timelineStartInfo.baseMediaDecodeTime is the location, in time, where
|
||||
// we want the start of the first segment to be placed
|
||||
baseMediaDecodeTime = track.timelineStartInfo.baseMediaDecodeTime;
|
||||
|
||||
// Add to that the distance this segment is from the very first
|
||||
baseMediaDecodeTime += minSegmentDts;
|
||||
|
||||
// baseMediaDecodeTime must not become negative
|
||||
baseMediaDecodeTime = Math.max(0, baseMediaDecodeTime);
|
||||
|
||||
if (track.type === 'audio') {
|
||||
// Audio has a different clock equal to the sampling_rate so we need to
|
||||
// scale the PTS values into the clock rate of the track
|
||||
scale = track.samplerate / ONE_SECOND_IN_TS;
|
||||
baseMediaDecodeTime *= scale;
|
||||
baseMediaDecodeTime = Math.floor(baseMediaDecodeTime);
|
||||
}
|
||||
|
||||
return baseMediaDecodeTime;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
clearDtsInfo: clearDtsInfo,
|
||||
calculateTrackBaseMediaDecodeTime: calculateTrackBaseMediaDecodeTime,
|
||||
collectDtsInfo: collectDtsInfo
|
||||
};
|
||||
|
|
2476
node_modules/mux.js/lib/mp4/transmuxer.js
generated
vendored
2476
node_modules/mux.js/lib/mp4/transmuxer.js
generated
vendored
File diff suppressed because it is too large
Load diff
308
node_modules/mux.js/lib/partial/audio-segment-stream.js
generated
vendored
308
node_modules/mux.js/lib/partial/audio-segment-stream.js
generated
vendored
|
@ -1,154 +1,154 @@
|
|||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var mp4 = require('../mp4/mp4-generator.js');
|
||||
var audioFrameUtils = require('../mp4/audio-frame-utils');
|
||||
var trackInfo = require('../mp4/track-decode-info.js');
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
var AUDIO_PROPERTIES = require('../constants/audio-properties.js');
|
||||
|
||||
/**
|
||||
* Constructs a single-track, ISO BMFF media segment from AAC data
|
||||
* events. The output of this stream can be fed to a SourceBuffer
|
||||
* configured with a suitable initialization segment.
|
||||
*/
|
||||
var AudioSegmentStream = function(track, options) {
|
||||
var
|
||||
adtsFrames = [],
|
||||
sequenceNumber = 0,
|
||||
earliestAllowedDts = 0,
|
||||
audioAppendStartTs = 0,
|
||||
videoBaseMediaDecodeTime = Infinity,
|
||||
segmentStartPts = null,
|
||||
segmentEndPts = null;
|
||||
|
||||
options = options || {};
|
||||
|
||||
AudioSegmentStream.prototype.init.call(this);
|
||||
|
||||
this.push = function(data) {
|
||||
trackInfo.collectDtsInfo(track, data);
|
||||
|
||||
if (track) {
|
||||
AUDIO_PROPERTIES.forEach(function(prop) {
|
||||
track[prop] = data[prop];
|
||||
});
|
||||
}
|
||||
|
||||
// buffer audio data until end() is called
|
||||
adtsFrames.push(data);
|
||||
};
|
||||
|
||||
this.setEarliestDts = function(earliestDts) {
|
||||
earliestAllowedDts = earliestDts;
|
||||
};
|
||||
|
||||
this.setVideoBaseMediaDecodeTime = function(baseMediaDecodeTime) {
|
||||
videoBaseMediaDecodeTime = baseMediaDecodeTime;
|
||||
};
|
||||
|
||||
this.setAudioAppendStart = function(timestamp) {
|
||||
audioAppendStartTs = timestamp;
|
||||
};
|
||||
|
||||
this.processFrames_ = function() {
|
||||
var
|
||||
frames,
|
||||
moof,
|
||||
mdat,
|
||||
boxes,
|
||||
timingInfo;
|
||||
|
||||
// return early if no audio data has been observed
|
||||
if (adtsFrames.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
frames = audioFrameUtils.trimAdtsFramesByEarliestDts(
|
||||
adtsFrames, track, earliestAllowedDts);
|
||||
if (frames.length === 0) {
|
||||
// return early if the frames are all after the earliest allowed DTS
|
||||
// TODO should we clear the adtsFrames?
|
||||
return;
|
||||
}
|
||||
|
||||
track.baseMediaDecodeTime = trackInfo.calculateTrackBaseMediaDecodeTime(
|
||||
track, options.keepOriginalTimestamps);
|
||||
|
||||
audioFrameUtils.prefixWithSilence(
|
||||
track, frames, audioAppendStartTs, videoBaseMediaDecodeTime);
|
||||
|
||||
// we have to build the index from byte locations to
|
||||
// samples (that is, adts frames) in the audio data
|
||||
track.samples = audioFrameUtils.generateSampleTable(frames);
|
||||
|
||||
// concatenate the audio data to constuct the mdat
|
||||
mdat = mp4.mdat(audioFrameUtils.concatenateFrameData(frames));
|
||||
|
||||
adtsFrames = [];
|
||||
|
||||
moof = mp4.moof(sequenceNumber, [track]);
|
||||
|
||||
// bump the sequence number for next time
|
||||
sequenceNumber++;
|
||||
|
||||
track.initSegment = mp4.initSegment([track]);
|
||||
|
||||
// it would be great to allocate this array up front instead of
|
||||
// throwing away hundreds of media segment fragments
|
||||
boxes = new Uint8Array(moof.byteLength + mdat.byteLength);
|
||||
|
||||
boxes.set(moof);
|
||||
boxes.set(mdat, moof.byteLength);
|
||||
|
||||
trackInfo.clearDtsInfo(track);
|
||||
|
||||
if (segmentStartPts === null) {
|
||||
segmentEndPts = segmentStartPts = frames[0].pts;
|
||||
}
|
||||
|
||||
segmentEndPts += frames.length * (ONE_SECOND_IN_TS * 1024 / track.samplerate);
|
||||
|
||||
timingInfo = { start: segmentStartPts };
|
||||
|
||||
this.trigger('timingInfo', timingInfo);
|
||||
this.trigger('data', {track: track, boxes: boxes});
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
this.processFrames_();
|
||||
// trigger final timing info
|
||||
this.trigger('timingInfo', {
|
||||
start: segmentStartPts,
|
||||
end: segmentEndPts
|
||||
});
|
||||
this.resetTiming_();
|
||||
this.trigger('done', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
this.processFrames_();
|
||||
this.trigger('partialdone', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.resetTiming_ = function() {
|
||||
trackInfo.clearDtsInfo(track);
|
||||
segmentStartPts = null;
|
||||
segmentEndPts = null;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
this.resetTiming_();
|
||||
adtsFrames = [];
|
||||
this.trigger('reset');
|
||||
};
|
||||
};
|
||||
|
||||
AudioSegmentStream.prototype = new Stream();
|
||||
|
||||
module.exports = AudioSegmentStream;
|
||||
'use strict';
|
||||
|
||||
var Stream = require('../utils/stream.js');
|
||||
var mp4 = require('../mp4/mp4-generator.js');
|
||||
var audioFrameUtils = require('../mp4/audio-frame-utils');
|
||||
var trackInfo = require('../mp4/track-decode-info.js');
|
||||
var ONE_SECOND_IN_TS = require('../utils/clock').ONE_SECOND_IN_TS;
|
||||
var AUDIO_PROPERTIES = require('../constants/audio-properties.js');
|
||||
|
||||
/**
|
||||
* Constructs a single-track, ISO BMFF media segment from AAC data
|
||||
* events. The output of this stream can be fed to a SourceBuffer
|
||||
* configured with a suitable initialization segment.
|
||||
*/
|
||||
var AudioSegmentStream = function(track, options) {
|
||||
var
|
||||
adtsFrames = [],
|
||||
sequenceNumber = 0,
|
||||
earliestAllowedDts = 0,
|
||||
audioAppendStartTs = 0,
|
||||
videoBaseMediaDecodeTime = Infinity,
|
||||
segmentStartPts = null,
|
||||
segmentEndPts = null;
|
||||
|
||||
options = options || {};
|
||||
|
||||
AudioSegmentStream.prototype.init.call(this);
|
||||
|
||||
this.push = function(data) {
|
||||
trackInfo.collectDtsInfo(track, data);
|
||||
|
||||
if (track) {
|
||||
AUDIO_PROPERTIES.forEach(function(prop) {
|
||||
track[prop] = data[prop];
|
||||
});
|
||||
}
|
||||
|
||||
// buffer audio data until end() is called
|
||||
adtsFrames.push(data);
|
||||
};
|
||||
|
||||
this.setEarliestDts = function(earliestDts) {
|
||||
earliestAllowedDts = earliestDts;
|
||||
};
|
||||
|
||||
this.setVideoBaseMediaDecodeTime = function(baseMediaDecodeTime) {
|
||||
videoBaseMediaDecodeTime = baseMediaDecodeTime;
|
||||
};
|
||||
|
||||
this.setAudioAppendStart = function(timestamp) {
|
||||
audioAppendStartTs = timestamp;
|
||||
};
|
||||
|
||||
this.processFrames_ = function() {
|
||||
var
|
||||
frames,
|
||||
moof,
|
||||
mdat,
|
||||
boxes,
|
||||
timingInfo;
|
||||
|
||||
// return early if no audio data has been observed
|
||||
if (adtsFrames.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
frames = audioFrameUtils.trimAdtsFramesByEarliestDts(
|
||||
adtsFrames, track, earliestAllowedDts);
|
||||
if (frames.length === 0) {
|
||||
// return early if the frames are all after the earliest allowed DTS
|
||||
// TODO should we clear the adtsFrames?
|
||||
return;
|
||||
}
|
||||
|
||||
track.baseMediaDecodeTime = trackInfo.calculateTrackBaseMediaDecodeTime(
|
||||
track, options.keepOriginalTimestamps);
|
||||
|
||||
audioFrameUtils.prefixWithSilence(
|
||||
track, frames, audioAppendStartTs, videoBaseMediaDecodeTime);
|
||||
|
||||
// we have to build the index from byte locations to
|
||||
// samples (that is, adts frames) in the audio data
|
||||
track.samples = audioFrameUtils.generateSampleTable(frames);
|
||||
|
||||
// concatenate the audio data to constuct the mdat
|
||||
mdat = mp4.mdat(audioFrameUtils.concatenateFrameData(frames));
|
||||
|
||||
adtsFrames = [];
|
||||
|
||||
moof = mp4.moof(sequenceNumber, [track]);
|
||||
|
||||
// bump the sequence number for next time
|
||||
sequenceNumber++;
|
||||
|
||||
track.initSegment = mp4.initSegment([track]);
|
||||
|
||||
// it would be great to allocate this array up front instead of
|
||||
// throwing away hundreds of media segment fragments
|
||||
boxes = new Uint8Array(moof.byteLength + mdat.byteLength);
|
||||
|
||||
boxes.set(moof);
|
||||
boxes.set(mdat, moof.byteLength);
|
||||
|
||||
trackInfo.clearDtsInfo(track);
|
||||
|
||||
if (segmentStartPts === null) {
|
||||
segmentEndPts = segmentStartPts = frames[0].pts;
|
||||
}
|
||||
|
||||
segmentEndPts += frames.length * (ONE_SECOND_IN_TS * 1024 / track.samplerate);
|
||||
|
||||
timingInfo = { start: segmentStartPts };
|
||||
|
||||
this.trigger('timingInfo', timingInfo);
|
||||
this.trigger('data', {track: track, boxes: boxes});
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
this.processFrames_();
|
||||
// trigger final timing info
|
||||
this.trigger('timingInfo', {
|
||||
start: segmentStartPts,
|
||||
end: segmentEndPts
|
||||
});
|
||||
this.resetTiming_();
|
||||
this.trigger('done', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
this.processFrames_();
|
||||
this.trigger('partialdone', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
this.flush();
|
||||
this.trigger('endedtimeline', 'AudioSegmentStream');
|
||||
};
|
||||
|
||||
this.resetTiming_ = function() {
|
||||
trackInfo.clearDtsInfo(track);
|
||||
segmentStartPts = null;
|
||||
segmentEndPts = null;
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
this.resetTiming_();
|
||||
adtsFrames = [];
|
||||
this.trigger('reset');
|
||||
};
|
||||
};
|
||||
|
||||
AudioSegmentStream.prototype = new Stream();
|
||||
|
||||
module.exports = AudioSegmentStream;
|
||||
|
|
6
node_modules/mux.js/lib/partial/index.js
generated
vendored
6
node_modules/mux.js/lib/partial/index.js
generated
vendored
|
@ -1,3 +1,3 @@
|
|||
module.exports = {
|
||||
Transmuxer: require('./transmuxer')
|
||||
};
|
||||
module.exports = {
|
||||
Transmuxer: require('./transmuxer')
|
||||
};
|
||||
|
|
756
node_modules/mux.js/lib/partial/transmuxer.js
generated
vendored
756
node_modules/mux.js/lib/partial/transmuxer.js
generated
vendored
|
@ -1,378 +1,378 @@
|
|||
var Stream = require('../utils/stream.js');
|
||||
var m2ts = require('../m2ts/m2ts.js');
|
||||
var codecs = require('../codecs/index.js');
|
||||
var AudioSegmentStream = require('./audio-segment-stream.js');
|
||||
var VideoSegmentStream = require('./video-segment-stream.js');
|
||||
var trackInfo = require('../mp4/track-decode-info.js');
|
||||
var isLikelyAacData = require('../aac/utils').isLikelyAacData;
|
||||
var AdtsStream = require('../codecs/adts');
|
||||
var AacStream = require('../aac/index');
|
||||
var clock = require('../utils/clock');
|
||||
|
||||
var createPipeline = function(object) {
|
||||
object.prototype = new Stream();
|
||||
object.prototype.init.call(object);
|
||||
|
||||
return object;
|
||||
};
|
||||
|
||||
var tsPipeline = function(options) {
|
||||
var
|
||||
pipeline = {
|
||||
type: 'ts',
|
||||
tracks: {
|
||||
audio: null,
|
||||
video: null
|
||||
},
|
||||
packet: new m2ts.TransportPacketStream(),
|
||||
parse: new m2ts.TransportParseStream(),
|
||||
elementary: new m2ts.ElementaryStream(),
|
||||
timestampRollover: new m2ts.TimestampRolloverStream(),
|
||||
adts: new codecs.Adts(),
|
||||
h264: new codecs.h264.H264Stream(),
|
||||
captionStream: new m2ts.CaptionStream(options),
|
||||
metadataStream: new m2ts.MetadataStream()
|
||||
};
|
||||
|
||||
pipeline.headOfPipeline = pipeline.packet;
|
||||
|
||||
// Transport Stream
|
||||
pipeline.packet
|
||||
.pipe(pipeline.parse)
|
||||
.pipe(pipeline.elementary)
|
||||
.pipe(pipeline.timestampRollover);
|
||||
|
||||
// H264
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.h264);
|
||||
|
||||
// Hook up CEA-608/708 caption stream
|
||||
pipeline.h264
|
||||
.pipe(pipeline.captionStream);
|
||||
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.metadataStream);
|
||||
|
||||
// ADTS
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.adts);
|
||||
|
||||
pipeline.elementary.on('data', function(data) {
|
||||
if (data.type !== 'metadata') {
|
||||
return;
|
||||
}
|
||||
|
||||
for (var i = 0; i < data.tracks.length; i++) {
|
||||
if (!pipeline.tracks[data.tracks[i].type]) {
|
||||
pipeline.tracks[data.tracks[i].type] = data.tracks[i];
|
||||
pipeline.tracks[data.tracks[i].type].timelineStartInfo.baseMediaDecodeTime = options.baseMediaDecodeTime;
|
||||
}
|
||||
}
|
||||
|
||||
if (pipeline.tracks.video && !pipeline.videoSegmentStream) {
|
||||
pipeline.videoSegmentStream = new VideoSegmentStream(pipeline.tracks.video, options);
|
||||
|
||||
pipeline.videoSegmentStream.on('timelineStartInfo', function(timelineStartInfo) {
|
||||
if (pipeline.tracks.audio && !options.keepOriginalTimestamps) {
|
||||
pipeline.audioSegmentStream.setEarliestDts(timelineStartInfo.dts - options.baseMediaDecodeTime);
|
||||
}
|
||||
});
|
||||
|
||||
pipeline.videoSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'videoTimingInfo'));
|
||||
|
||||
pipeline.videoSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'video',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.videoSegmentStream.on('done',
|
||||
pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.videoSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.videoSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
|
||||
pipeline.h264
|
||||
.pipe(pipeline.videoSegmentStream);
|
||||
}
|
||||
|
||||
if (pipeline.tracks.audio && !pipeline.audioSegmentStream) {
|
||||
pipeline.audioSegmentStream = new AudioSegmentStream(pipeline.tracks.audio, options);
|
||||
|
||||
pipeline.audioSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'audio',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.audioSegmentStream.on('done',
|
||||
pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.audioSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.audioSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
|
||||
pipeline.audioSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'audioTimingInfo'));
|
||||
|
||||
pipeline.adts
|
||||
.pipe(pipeline.audioSegmentStream);
|
||||
}
|
||||
|
||||
// emit pmt info
|
||||
pipeline.trigger('trackinfo', {
|
||||
hasAudio: !!pipeline.tracks.audio,
|
||||
hasVideo: !!pipeline.tracks.video
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.captionStream.on('data', function(caption) {
|
||||
var timelineStartPts;
|
||||
|
||||
if (pipeline.tracks.video) {
|
||||
timelineStartPts = pipeline.tracks.video.timelineStartInfo.pts || 0;
|
||||
} else {
|
||||
// This will only happen if we encounter caption packets before
|
||||
// video data in a segment. This is an unusual/unlikely scenario,
|
||||
// so we assume the timeline starts at zero for now.
|
||||
timelineStartPts = 0;
|
||||
}
|
||||
|
||||
// Translate caption PTS times into second offsets into the
|
||||
// video timeline for the segment
|
||||
caption.startTime = clock.metadataTsToSeconds(caption.startPts, timelineStartPts, options.keepOriginalTimestamps);
|
||||
caption.endTime = clock.metadataTsToSeconds(caption.endPts, timelineStartPts, options.keepOriginalTimestamps);
|
||||
|
||||
pipeline.trigger('caption', caption);
|
||||
});
|
||||
|
||||
pipeline = createPipeline(pipeline);
|
||||
|
||||
pipeline.metadataStream.on('data', pipeline.trigger.bind(pipeline, 'id3Frame'));
|
||||
|
||||
return pipeline;
|
||||
};
|
||||
|
||||
var aacPipeline = function(options) {
|
||||
var
|
||||
pipeline = {
|
||||
type: 'aac',
|
||||
tracks: {
|
||||
audio: null
|
||||
},
|
||||
metadataStream: new m2ts.MetadataStream(),
|
||||
aacStream: new AacStream(),
|
||||
audioRollover: new m2ts.TimestampRolloverStream('audio'),
|
||||
timedMetadataRollover: new m2ts.TimestampRolloverStream('timed-metadata'),
|
||||
adtsStream: new AdtsStream(true)
|
||||
};
|
||||
|
||||
// set up the parsing pipeline
|
||||
pipeline.headOfPipeline = pipeline.aacStream;
|
||||
|
||||
pipeline.aacStream
|
||||
.pipe(pipeline.audioRollover)
|
||||
.pipe(pipeline.adtsStream);
|
||||
pipeline.aacStream
|
||||
.pipe(pipeline.timedMetadataRollover)
|
||||
.pipe(pipeline.metadataStream);
|
||||
|
||||
pipeline.metadataStream.on('timestamp', function(frame) {
|
||||
pipeline.aacStream.setTimestamp(frame.timeStamp);
|
||||
});
|
||||
|
||||
pipeline.aacStream.on('data', function(data) {
|
||||
if ((data.type !== 'timed-metadata' && data.type !== 'audio') || pipeline.audioSegmentStream) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.tracks.audio = pipeline.tracks.audio || {
|
||||
timelineStartInfo: {
|
||||
baseMediaDecodeTime: options.baseMediaDecodeTime
|
||||
},
|
||||
codec: 'adts',
|
||||
type: 'audio'
|
||||
};
|
||||
|
||||
// hook up the audio segment stream to the first track with aac data
|
||||
pipeline.audioSegmentStream = new AudioSegmentStream(pipeline.tracks.audio, options);
|
||||
|
||||
pipeline.audioSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'audio',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.audioSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.audioSegmentStream.on('done', pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.audioSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
pipeline.audioSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'audioTimingInfo'));
|
||||
|
||||
// Set up the final part of the audio pipeline
|
||||
pipeline.adtsStream
|
||||
.pipe(pipeline.audioSegmentStream);
|
||||
|
||||
pipeline.trigger('trackinfo', {
|
||||
hasAudio: !!pipeline.tracks.audio,
|
||||
hasVideo: !!pipeline.tracks.video
|
||||
});
|
||||
});
|
||||
|
||||
// set the pipeline up as a stream before binding to get access to the trigger function
|
||||
pipeline = createPipeline(pipeline);
|
||||
|
||||
pipeline.metadataStream.on('data', pipeline.trigger.bind(pipeline, 'id3Frame'));
|
||||
|
||||
return pipeline;
|
||||
};
|
||||
|
||||
var setupPipelineListeners = function(pipeline, transmuxer) {
|
||||
pipeline.on('data', transmuxer.trigger.bind(transmuxer, 'data'));
|
||||
pipeline.on('done', transmuxer.trigger.bind(transmuxer, 'done'));
|
||||
pipeline.on('partialdone', transmuxer.trigger.bind(transmuxer, 'partialdone'));
|
||||
pipeline.on('endedtimeline', transmuxer.trigger.bind(transmuxer, 'endedtimeline'));
|
||||
pipeline.on('audioTimingInfo', transmuxer.trigger.bind(transmuxer, 'audioTimingInfo'));
|
||||
pipeline.on('videoTimingInfo', transmuxer.trigger.bind(transmuxer, 'videoTimingInfo'));
|
||||
pipeline.on('trackinfo', transmuxer.trigger.bind(transmuxer, 'trackinfo'));
|
||||
pipeline.on('id3Frame', function(event) {
|
||||
// add this to every single emitted segment even though it's only needed for the first
|
||||
event.dispatchType = pipeline.metadataStream.dispatchType;
|
||||
// keep original time, can be adjusted if needed at a higher level
|
||||
event.cueTime = clock.videoTsToSeconds(event.pts);
|
||||
|
||||
transmuxer.trigger('id3Frame', event);
|
||||
});
|
||||
pipeline.on('caption', function(event) {
|
||||
transmuxer.trigger('caption', event);
|
||||
});
|
||||
};
|
||||
|
||||
var Transmuxer = function(options) {
|
||||
var
|
||||
pipeline = null,
|
||||
hasFlushed = true;
|
||||
|
||||
options = options || {};
|
||||
|
||||
Transmuxer.prototype.init.call(this);
|
||||
options.baseMediaDecodeTime = options.baseMediaDecodeTime || 0;
|
||||
|
||||
this.push = function(bytes) {
|
||||
if (hasFlushed) {
|
||||
var isAac = isLikelyAacData(bytes);
|
||||
|
||||
if (isAac && (!pipeline || pipeline.type !== 'aac')) {
|
||||
pipeline = aacPipeline(options);
|
||||
setupPipelineListeners(pipeline, this);
|
||||
} else if (!isAac && (!pipeline || pipeline.type !== 'ts')) {
|
||||
pipeline = tsPipeline(options);
|
||||
setupPipelineListeners(pipeline, this);
|
||||
}
|
||||
hasFlushed = false;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.push(bytes);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
hasFlushed = true;
|
||||
pipeline.headOfPipeline.flush();
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.partialFlush();
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.endTimeline();
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.reset();
|
||||
};
|
||||
|
||||
this.setBaseMediaDecodeTime = function(baseMediaDecodeTime) {
|
||||
if (!options.keepOriginalTimestamps) {
|
||||
options.baseMediaDecodeTime = baseMediaDecodeTime;
|
||||
}
|
||||
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (pipeline.tracks.audio) {
|
||||
pipeline.tracks.audio.timelineStartInfo.dts = undefined;
|
||||
pipeline.tracks.audio.timelineStartInfo.pts = undefined;
|
||||
trackInfo.clearDtsInfo(pipeline.tracks.audio);
|
||||
if (pipeline.audioRollover) {
|
||||
pipeline.audioRollover.discontinuity();
|
||||
}
|
||||
}
|
||||
if (pipeline.tracks.video) {
|
||||
if (pipeline.videoSegmentStream) {
|
||||
pipeline.videoSegmentStream.gopCache_ = [];
|
||||
}
|
||||
pipeline.tracks.video.timelineStartInfo.dts = undefined;
|
||||
pipeline.tracks.video.timelineStartInfo.pts = undefined;
|
||||
trackInfo.clearDtsInfo(pipeline.tracks.video);
|
||||
// pipeline.captionStream.reset();
|
||||
}
|
||||
|
||||
if (pipeline.timestampRollover) {
|
||||
pipeline.timestampRollover.discontinuity();
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
this.setRemux = function(val) {
|
||||
options.remux = val;
|
||||
|
||||
if (pipeline && pipeline.coalesceStream) {
|
||||
pipeline.coalesceStream.setRemux(val);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
this.setAudioAppendStart = function(audioAppendStart) {
|
||||
if (!pipeline || !pipeline.tracks.audio || !pipeline.audioSegmentStream) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.audioSegmentStream.setAudioAppendStart(audioAppendStart);
|
||||
};
|
||||
|
||||
// TODO GOP alignment support
|
||||
// Support may be a bit trickier than with full segment appends, as GOPs may be split
|
||||
// and processed in a more granular fashion
|
||||
this.alignGopsWith = function(gopsToAlignWith) {
|
||||
return;
|
||||
};
|
||||
};
|
||||
|
||||
Transmuxer.prototype = new Stream();
|
||||
|
||||
module.exports = Transmuxer;
|
||||
var Stream = require('../utils/stream.js');
|
||||
var m2ts = require('../m2ts/m2ts.js');
|
||||
var codecs = require('../codecs/index.js');
|
||||
var AudioSegmentStream = require('./audio-segment-stream.js');
|
||||
var VideoSegmentStream = require('./video-segment-stream.js');
|
||||
var trackInfo = require('../mp4/track-decode-info.js');
|
||||
var isLikelyAacData = require('../aac/utils').isLikelyAacData;
|
||||
var AdtsStream = require('../codecs/adts');
|
||||
var AacStream = require('../aac/index');
|
||||
var clock = require('../utils/clock');
|
||||
|
||||
var createPipeline = function(object) {
|
||||
object.prototype = new Stream();
|
||||
object.prototype.init.call(object);
|
||||
|
||||
return object;
|
||||
};
|
||||
|
||||
var tsPipeline = function(options) {
|
||||
var
|
||||
pipeline = {
|
||||
type: 'ts',
|
||||
tracks: {
|
||||
audio: null,
|
||||
video: null
|
||||
},
|
||||
packet: new m2ts.TransportPacketStream(),
|
||||
parse: new m2ts.TransportParseStream(),
|
||||
elementary: new m2ts.ElementaryStream(),
|
||||
timestampRollover: new m2ts.TimestampRolloverStream(),
|
||||
adts: new codecs.Adts(),
|
||||
h264: new codecs.h264.H264Stream(),
|
||||
captionStream: new m2ts.CaptionStream(options),
|
||||
metadataStream: new m2ts.MetadataStream()
|
||||
};
|
||||
|
||||
pipeline.headOfPipeline = pipeline.packet;
|
||||
|
||||
// Transport Stream
|
||||
pipeline.packet
|
||||
.pipe(pipeline.parse)
|
||||
.pipe(pipeline.elementary)
|
||||
.pipe(pipeline.timestampRollover);
|
||||
|
||||
// H264
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.h264);
|
||||
|
||||
// Hook up CEA-608/708 caption stream
|
||||
pipeline.h264
|
||||
.pipe(pipeline.captionStream);
|
||||
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.metadataStream);
|
||||
|
||||
// ADTS
|
||||
pipeline.timestampRollover
|
||||
.pipe(pipeline.adts);
|
||||
|
||||
pipeline.elementary.on('data', function(data) {
|
||||
if (data.type !== 'metadata') {
|
||||
return;
|
||||
}
|
||||
|
||||
for (var i = 0; i < data.tracks.length; i++) {
|
||||
if (!pipeline.tracks[data.tracks[i].type]) {
|
||||
pipeline.tracks[data.tracks[i].type] = data.tracks[i];
|
||||
pipeline.tracks[data.tracks[i].type].timelineStartInfo.baseMediaDecodeTime = options.baseMediaDecodeTime;
|
||||
}
|
||||
}
|
||||
|
||||
if (pipeline.tracks.video && !pipeline.videoSegmentStream) {
|
||||
pipeline.videoSegmentStream = new VideoSegmentStream(pipeline.tracks.video, options);
|
||||
|
||||
pipeline.videoSegmentStream.on('timelineStartInfo', function(timelineStartInfo) {
|
||||
if (pipeline.tracks.audio && !options.keepOriginalTimestamps) {
|
||||
pipeline.audioSegmentStream.setEarliestDts(timelineStartInfo.dts - options.baseMediaDecodeTime);
|
||||
}
|
||||
});
|
||||
|
||||
pipeline.videoSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'videoTimingInfo'));
|
||||
|
||||
pipeline.videoSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'video',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.videoSegmentStream.on('done',
|
||||
pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.videoSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.videoSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
|
||||
pipeline.h264
|
||||
.pipe(pipeline.videoSegmentStream);
|
||||
}
|
||||
|
||||
if (pipeline.tracks.audio && !pipeline.audioSegmentStream) {
|
||||
pipeline.audioSegmentStream = new AudioSegmentStream(pipeline.tracks.audio, options);
|
||||
|
||||
pipeline.audioSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'audio',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.audioSegmentStream.on('done',
|
||||
pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.audioSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.audioSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
|
||||
pipeline.audioSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'audioTimingInfo'));
|
||||
|
||||
pipeline.adts
|
||||
.pipe(pipeline.audioSegmentStream);
|
||||
}
|
||||
|
||||
// emit pmt info
|
||||
pipeline.trigger('trackinfo', {
|
||||
hasAudio: !!pipeline.tracks.audio,
|
||||
hasVideo: !!pipeline.tracks.video
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.captionStream.on('data', function(caption) {
|
||||
var timelineStartPts;
|
||||
|
||||
if (pipeline.tracks.video) {
|
||||
timelineStartPts = pipeline.tracks.video.timelineStartInfo.pts || 0;
|
||||
} else {
|
||||
// This will only happen if we encounter caption packets before
|
||||
// video data in a segment. This is an unusual/unlikely scenario,
|
||||
// so we assume the timeline starts at zero for now.
|
||||
timelineStartPts = 0;
|
||||
}
|
||||
|
||||
// Translate caption PTS times into second offsets into the
|
||||
// video timeline for the segment
|
||||
caption.startTime = clock.metadataTsToSeconds(caption.startPts, timelineStartPts, options.keepOriginalTimestamps);
|
||||
caption.endTime = clock.metadataTsToSeconds(caption.endPts, timelineStartPts, options.keepOriginalTimestamps);
|
||||
|
||||
pipeline.trigger('caption', caption);
|
||||
});
|
||||
|
||||
pipeline = createPipeline(pipeline);
|
||||
|
||||
pipeline.metadataStream.on('data', pipeline.trigger.bind(pipeline, 'id3Frame'));
|
||||
|
||||
return pipeline;
|
||||
};
|
||||
|
||||
var aacPipeline = function(options) {
|
||||
var
|
||||
pipeline = {
|
||||
type: 'aac',
|
||||
tracks: {
|
||||
audio: null
|
||||
},
|
||||
metadataStream: new m2ts.MetadataStream(),
|
||||
aacStream: new AacStream(),
|
||||
audioRollover: new m2ts.TimestampRolloverStream('audio'),
|
||||
timedMetadataRollover: new m2ts.TimestampRolloverStream('timed-metadata'),
|
||||
adtsStream: new AdtsStream(true)
|
||||
};
|
||||
|
||||
// set up the parsing pipeline
|
||||
pipeline.headOfPipeline = pipeline.aacStream;
|
||||
|
||||
pipeline.aacStream
|
||||
.pipe(pipeline.audioRollover)
|
||||
.pipe(pipeline.adtsStream);
|
||||
pipeline.aacStream
|
||||
.pipe(pipeline.timedMetadataRollover)
|
||||
.pipe(pipeline.metadataStream);
|
||||
|
||||
pipeline.metadataStream.on('timestamp', function(frame) {
|
||||
pipeline.aacStream.setTimestamp(frame.timeStamp);
|
||||
});
|
||||
|
||||
pipeline.aacStream.on('data', function(data) {
|
||||
if ((data.type !== 'timed-metadata' && data.type !== 'audio') || pipeline.audioSegmentStream) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.tracks.audio = pipeline.tracks.audio || {
|
||||
timelineStartInfo: {
|
||||
baseMediaDecodeTime: options.baseMediaDecodeTime
|
||||
},
|
||||
codec: 'adts',
|
||||
type: 'audio'
|
||||
};
|
||||
|
||||
// hook up the audio segment stream to the first track with aac data
|
||||
pipeline.audioSegmentStream = new AudioSegmentStream(pipeline.tracks.audio, options);
|
||||
|
||||
pipeline.audioSegmentStream.on('data', function(data) {
|
||||
pipeline.trigger('data', {
|
||||
type: 'audio',
|
||||
data: data
|
||||
});
|
||||
});
|
||||
|
||||
pipeline.audioSegmentStream.on('partialdone',
|
||||
pipeline.trigger.bind(pipeline, 'partialdone'));
|
||||
pipeline.audioSegmentStream.on('done', pipeline.trigger.bind(pipeline, 'done'));
|
||||
pipeline.audioSegmentStream.on('endedtimeline',
|
||||
pipeline.trigger.bind(pipeline, 'endedtimeline'));
|
||||
pipeline.audioSegmentStream.on('timingInfo',
|
||||
pipeline.trigger.bind(pipeline, 'audioTimingInfo'));
|
||||
|
||||
// Set up the final part of the audio pipeline
|
||||
pipeline.adtsStream
|
||||
.pipe(pipeline.audioSegmentStream);
|
||||
|
||||
pipeline.trigger('trackinfo', {
|
||||
hasAudio: !!pipeline.tracks.audio,
|
||||
hasVideo: !!pipeline.tracks.video
|
||||
});
|
||||
});
|
||||
|
||||
// set the pipeline up as a stream before binding to get access to the trigger function
|
||||
pipeline = createPipeline(pipeline);
|
||||
|
||||
pipeline.metadataStream.on('data', pipeline.trigger.bind(pipeline, 'id3Frame'));
|
||||
|
||||
return pipeline;
|
||||
};
|
||||
|
||||
var setupPipelineListeners = function(pipeline, transmuxer) {
|
||||
pipeline.on('data', transmuxer.trigger.bind(transmuxer, 'data'));
|
||||
pipeline.on('done', transmuxer.trigger.bind(transmuxer, 'done'));
|
||||
pipeline.on('partialdone', transmuxer.trigger.bind(transmuxer, 'partialdone'));
|
||||
pipeline.on('endedtimeline', transmuxer.trigger.bind(transmuxer, 'endedtimeline'));
|
||||
pipeline.on('audioTimingInfo', transmuxer.trigger.bind(transmuxer, 'audioTimingInfo'));
|
||||
pipeline.on('videoTimingInfo', transmuxer.trigger.bind(transmuxer, 'videoTimingInfo'));
|
||||
pipeline.on('trackinfo', transmuxer.trigger.bind(transmuxer, 'trackinfo'));
|
||||
pipeline.on('id3Frame', function(event) {
|
||||
// add this to every single emitted segment even though it's only needed for the first
|
||||
event.dispatchType = pipeline.metadataStream.dispatchType;
|
||||
// keep original time, can be adjusted if needed at a higher level
|
||||
event.cueTime = clock.videoTsToSeconds(event.pts);
|
||||
|
||||
transmuxer.trigger('id3Frame', event);
|
||||
});
|
||||
pipeline.on('caption', function(event) {
|
||||
transmuxer.trigger('caption', event);
|
||||
});
|
||||
};
|
||||
|
||||
var Transmuxer = function(options) {
|
||||
var
|
||||
pipeline = null,
|
||||
hasFlushed = true;
|
||||
|
||||
options = options || {};
|
||||
|
||||
Transmuxer.prototype.init.call(this);
|
||||
options.baseMediaDecodeTime = options.baseMediaDecodeTime || 0;
|
||||
|
||||
this.push = function(bytes) {
|
||||
if (hasFlushed) {
|
||||
var isAac = isLikelyAacData(bytes);
|
||||
|
||||
if (isAac && (!pipeline || pipeline.type !== 'aac')) {
|
||||
pipeline = aacPipeline(options);
|
||||
setupPipelineListeners(pipeline, this);
|
||||
} else if (!isAac && (!pipeline || pipeline.type !== 'ts')) {
|
||||
pipeline = tsPipeline(options);
|
||||
setupPipelineListeners(pipeline, this);
|
||||
}
|
||||
hasFlushed = false;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.push(bytes);
|
||||
};
|
||||
|
||||
this.flush = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
hasFlushed = true;
|
||||
pipeline.headOfPipeline.flush();
|
||||
};
|
||||
|
||||
this.partialFlush = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.partialFlush();
|
||||
};
|
||||
|
||||
this.endTimeline = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.endTimeline();
|
||||
};
|
||||
|
||||
this.reset = function() {
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.headOfPipeline.reset();
|
||||
};
|
||||
|
||||
this.setBaseMediaDecodeTime = function(baseMediaDecodeTime) {
|
||||
if (!options.keepOriginalTimestamps) {
|
||||
options.baseMediaDecodeTime = baseMediaDecodeTime;
|
||||
}
|
||||
|
||||
if (!pipeline) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (pipeline.tracks.audio) {
|
||||
pipeline.tracks.audio.timelineStartInfo.dts = undefined;
|
||||
pipeline.tracks.audio.timelineStartInfo.pts = undefined;
|
||||
trackInfo.clearDtsInfo(pipeline.tracks.audio);
|
||||
if (pipeline.audioRollover) {
|
||||
pipeline.audioRollover.discontinuity();
|
||||
}
|
||||
}
|
||||
if (pipeline.tracks.video) {
|
||||
if (pipeline.videoSegmentStream) {
|
||||
pipeline.videoSegmentStream.gopCache_ = [];
|
||||
}
|
||||
pipeline.tracks.video.timelineStartInfo.dts = undefined;
|
||||
pipeline.tracks.video.timelineStartInfo.pts = undefined;
|
||||
trackInfo.clearDtsInfo(pipeline.tracks.video);
|
||||
// pipeline.captionStream.reset();
|
||||
}
|
||||
|
||||
if (pipeline.timestampRollover) {
|
||||
pipeline.timestampRollover.discontinuity();
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
this.setRemux = function(val) {
|
||||
options.remux = val;
|
||||
|
||||
if (pipeline && pipeline.coalesceStream) {
|
||||
pipeline.coalesceStream.setRemux(val);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
this.setAudioAppendStart = function(audioAppendStart) {
|
||||
if (!pipeline || !pipeline.tracks.audio || !pipeline.audioSegmentStream) {
|
||||
return;
|
||||
}
|
||||
|
||||
pipeline.audioSegmentStream.setAudioAppendStart(audioAppendStart);
|
||||
};
|
||||
|
||||
// TODO GOP alignment support
|
||||
// Support may be a bit trickier than with full segment appends, as GOPs may be split
|
||||
// and processed in a more granular fashion
|
||||
this.alignGopsWith = function(gopsToAlignWith) {
|
||||
return;
|
||||
};
|
||||
};
|
||||
|
||||
Transmuxer.prototype = new Stream();
|
||||
|
||||
module.exports = Transmuxer;
|
||||
|
|
34
node_modules/mux.js/lib/tools/parse-tfdt.js
generated
vendored
34
node_modules/mux.js/lib/tools/parse-tfdt.js
generated
vendored
|
@ -1,17 +1,17 @@
|
|||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
|
||||
var tfdt = function(data) {
|
||||
var result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
baseMediaDecodeTime: toUnsigned(data[4] << 24 | data[5] << 16 | data[6] << 8 | data[7])
|
||||
};
|
||||
if (result.version === 1) {
|
||||
result.baseMediaDecodeTime *= Math.pow(2, 32);
|
||||
result.baseMediaDecodeTime += toUnsigned(data[8] << 24 | data[9] << 16 | data[10] << 8 | data[11]);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = tfdt;
|
||||
|
||||
var toUnsigned = require('../utils/bin').toUnsigned;
|
||||
|
||||
var tfdt = function(data) {
|
||||
var result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
baseMediaDecodeTime: toUnsigned(data[4] << 24 | data[5] << 16 | data[6] << 8 | data[7])
|
||||
};
|
||||
if (result.version === 1) {
|
||||
result.baseMediaDecodeTime *= Math.pow(2, 32);
|
||||
result.baseMediaDecodeTime += toUnsigned(data[8] << 24 | data[9] << 16 | data[10] << 8 | data[11]);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = tfdt;
|
||||
|
||||
|
|
98
node_modules/mux.js/lib/tools/parse-tfhd.js
generated
vendored
98
node_modules/mux.js/lib/tools/parse-tfhd.js
generated
vendored
|
@ -1,49 +1,49 @@
|
|||
var tfhd = function(data) {
|
||||
var
|
||||
view = new DataView(data.buffer, data.byteOffset, data.byteLength),
|
||||
result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
trackId: view.getUint32(4)
|
||||
},
|
||||
baseDataOffsetPresent = result.flags[2] & 0x01,
|
||||
sampleDescriptionIndexPresent = result.flags[2] & 0x02,
|
||||
defaultSampleDurationPresent = result.flags[2] & 0x08,
|
||||
defaultSampleSizePresent = result.flags[2] & 0x10,
|
||||
defaultSampleFlagsPresent = result.flags[2] & 0x20,
|
||||
durationIsEmpty = result.flags[0] & 0x010000,
|
||||
defaultBaseIsMoof = result.flags[0] & 0x020000,
|
||||
i;
|
||||
|
||||
i = 8;
|
||||
if (baseDataOffsetPresent) {
|
||||
i += 4; // truncate top 4 bytes
|
||||
// FIXME: should we read the full 64 bits?
|
||||
result.baseDataOffset = view.getUint32(12);
|
||||
i += 4;
|
||||
}
|
||||
if (sampleDescriptionIndexPresent) {
|
||||
result.sampleDescriptionIndex = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleDurationPresent) {
|
||||
result.defaultSampleDuration = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleSizePresent) {
|
||||
result.defaultSampleSize = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleFlagsPresent) {
|
||||
result.defaultSampleFlags = view.getUint32(i);
|
||||
}
|
||||
if (durationIsEmpty) {
|
||||
result.durationIsEmpty = true;
|
||||
}
|
||||
if (!baseDataOffsetPresent && defaultBaseIsMoof) {
|
||||
result.baseDataOffsetIsMoof = true;
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = tfhd;
|
||||
var tfhd = function(data) {
|
||||
var
|
||||
view = new DataView(data.buffer, data.byteOffset, data.byteLength),
|
||||
result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
trackId: view.getUint32(4)
|
||||
},
|
||||
baseDataOffsetPresent = result.flags[2] & 0x01,
|
||||
sampleDescriptionIndexPresent = result.flags[2] & 0x02,
|
||||
defaultSampleDurationPresent = result.flags[2] & 0x08,
|
||||
defaultSampleSizePresent = result.flags[2] & 0x10,
|
||||
defaultSampleFlagsPresent = result.flags[2] & 0x20,
|
||||
durationIsEmpty = result.flags[0] & 0x010000,
|
||||
defaultBaseIsMoof = result.flags[0] & 0x020000,
|
||||
i;
|
||||
|
||||
i = 8;
|
||||
if (baseDataOffsetPresent) {
|
||||
i += 4; // truncate top 4 bytes
|
||||
// FIXME: should we read the full 64 bits?
|
||||
result.baseDataOffset = view.getUint32(12);
|
||||
i += 4;
|
||||
}
|
||||
if (sampleDescriptionIndexPresent) {
|
||||
result.sampleDescriptionIndex = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleDurationPresent) {
|
||||
result.defaultSampleDuration = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleSizePresent) {
|
||||
result.defaultSampleSize = view.getUint32(i);
|
||||
i += 4;
|
||||
}
|
||||
if (defaultSampleFlagsPresent) {
|
||||
result.defaultSampleFlags = view.getUint32(i);
|
||||
}
|
||||
if (durationIsEmpty) {
|
||||
result.durationIsEmpty = true;
|
||||
}
|
||||
if (!baseDataOffsetPresent && defaultBaseIsMoof) {
|
||||
result.baseDataOffsetIsMoof = true;
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = tfhd;
|
||||
|
|
164
node_modules/mux.js/lib/tools/parse-trun.js
generated
vendored
164
node_modules/mux.js/lib/tools/parse-trun.js
generated
vendored
|
@ -1,82 +1,82 @@
|
|||
var parseSampleFlags = require('./parse-sample-flags.js');
|
||||
|
||||
var trun = function(data) {
|
||||
var
|
||||
result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
samples: []
|
||||
},
|
||||
view = new DataView(data.buffer, data.byteOffset, data.byteLength),
|
||||
// Flag interpretation
|
||||
dataOffsetPresent = result.flags[2] & 0x01, // compare with 2nd byte of 0x1
|
||||
firstSampleFlagsPresent = result.flags[2] & 0x04, // compare with 2nd byte of 0x4
|
||||
sampleDurationPresent = result.flags[1] & 0x01, // compare with 2nd byte of 0x100
|
||||
sampleSizePresent = result.flags[1] & 0x02, // compare with 2nd byte of 0x200
|
||||
sampleFlagsPresent = result.flags[1] & 0x04, // compare with 2nd byte of 0x400
|
||||
sampleCompositionTimeOffsetPresent = result.flags[1] & 0x08, // compare with 2nd byte of 0x800
|
||||
sampleCount = view.getUint32(4),
|
||||
offset = 8,
|
||||
sample;
|
||||
|
||||
if (dataOffsetPresent) {
|
||||
// 32 bit signed integer
|
||||
result.dataOffset = view.getInt32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
|
||||
// Overrides the flags for the first sample only. The order of
|
||||
// optional values will be: duration, size, compositionTimeOffset
|
||||
if (firstSampleFlagsPresent && sampleCount) {
|
||||
sample = {
|
||||
flags: parseSampleFlags(data.subarray(offset, offset + 4))
|
||||
};
|
||||
offset += 4;
|
||||
if (sampleDurationPresent) {
|
||||
sample.duration = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleSizePresent) {
|
||||
sample.size = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleCompositionTimeOffsetPresent) {
|
||||
if (result.version === 1) {
|
||||
sample.compositionTimeOffset = view.getInt32(offset);
|
||||
} else {
|
||||
sample.compositionTimeOffset = view.getUint32(offset);
|
||||
}
|
||||
offset += 4;
|
||||
}
|
||||
result.samples.push(sample);
|
||||
sampleCount--;
|
||||
}
|
||||
|
||||
while (sampleCount--) {
|
||||
sample = {};
|
||||
if (sampleDurationPresent) {
|
||||
sample.duration = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleSizePresent) {
|
||||
sample.size = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleFlagsPresent) {
|
||||
sample.flags = parseSampleFlags(data.subarray(offset, offset + 4));
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleCompositionTimeOffsetPresent) {
|
||||
if (result.version === 1) {
|
||||
sample.compositionTimeOffset = view.getInt32(offset);
|
||||
} else {
|
||||
sample.compositionTimeOffset = view.getUint32(offset);
|
||||
}
|
||||
offset += 4;
|
||||
}
|
||||
result.samples.push(sample);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = trun;
|
||||
var parseSampleFlags = require('./parse-sample-flags.js');
|
||||
|
||||
var trun = function(data) {
|
||||
var
|
||||
result = {
|
||||
version: data[0],
|
||||
flags: new Uint8Array(data.subarray(1, 4)),
|
||||
samples: []
|
||||
},
|
||||
view = new DataView(data.buffer, data.byteOffset, data.byteLength),
|
||||
// Flag interpretation
|
||||
dataOffsetPresent = result.flags[2] & 0x01, // compare with 2nd byte of 0x1
|
||||
firstSampleFlagsPresent = result.flags[2] & 0x04, // compare with 2nd byte of 0x4
|
||||
sampleDurationPresent = result.flags[1] & 0x01, // compare with 2nd byte of 0x100
|
||||
sampleSizePresent = result.flags[1] & 0x02, // compare with 2nd byte of 0x200
|
||||
sampleFlagsPresent = result.flags[1] & 0x04, // compare with 2nd byte of 0x400
|
||||
sampleCompositionTimeOffsetPresent = result.flags[1] & 0x08, // compare with 2nd byte of 0x800
|
||||
sampleCount = view.getUint32(4),
|
||||
offset = 8,
|
||||
sample;
|
||||
|
||||
if (dataOffsetPresent) {
|
||||
// 32 bit signed integer
|
||||
result.dataOffset = view.getInt32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
|
||||
// Overrides the flags for the first sample only. The order of
|
||||
// optional values will be: duration, size, compositionTimeOffset
|
||||
if (firstSampleFlagsPresent && sampleCount) {
|
||||
sample = {
|
||||
flags: parseSampleFlags(data.subarray(offset, offset + 4))
|
||||
};
|
||||
offset += 4;
|
||||
if (sampleDurationPresent) {
|
||||
sample.duration = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleSizePresent) {
|
||||
sample.size = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleCompositionTimeOffsetPresent) {
|
||||
if (result.version === 1) {
|
||||
sample.compositionTimeOffset = view.getInt32(offset);
|
||||
} else {
|
||||
sample.compositionTimeOffset = view.getUint32(offset);
|
||||
}
|
||||
offset += 4;
|
||||
}
|
||||
result.samples.push(sample);
|
||||
sampleCount--;
|
||||
}
|
||||
|
||||
while (sampleCount--) {
|
||||
sample = {};
|
||||
if (sampleDurationPresent) {
|
||||
sample.duration = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleSizePresent) {
|
||||
sample.size = view.getUint32(offset);
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleFlagsPresent) {
|
||||
sample.flags = parseSampleFlags(data.subarray(offset, offset + 4));
|
||||
offset += 4;
|
||||
}
|
||||
if (sampleCompositionTimeOffsetPresent) {
|
||||
if (result.version === 1) {
|
||||
sample.compositionTimeOffset = view.getInt32(offset);
|
||||
} else {
|
||||
sample.compositionTimeOffset = view.getUint32(offset);
|
||||
}
|
||||
offset += 4;
|
||||
}
|
||||
result.samples.push(sample);
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
module.exports = trun;
|
||||
|
|
1038
node_modules/mux.js/lib/tools/ts-inspector.js
generated
vendored
1038
node_modules/mux.js/lib/tools/ts-inspector.js
generated
vendored
File diff suppressed because it is too large
Load diff
36
node_modules/mux.js/lib/utils/bin.js
generated
vendored
36
node_modules/mux.js/lib/utils/bin.js
generated
vendored
|
@ -1,18 +1,18 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var toUnsigned = function(value) {
|
||||
return value >>> 0;
|
||||
};
|
||||
|
||||
var toHexString = function(value) {
|
||||
return ('00' + value.toString(16)).slice(-2);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
toUnsigned: toUnsigned,
|
||||
toHexString: toHexString
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var toUnsigned = function(value) {
|
||||
return value >>> 0;
|
||||
};
|
||||
|
||||
var toHexString = function(value) {
|
||||
return ('00' + value.toString(16)).slice(-2);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
toUnsigned: toUnsigned,
|
||||
toHexString: toHexString
|
||||
};
|
||||
|
|
116
node_modules/mux.js/lib/utils/clock.js
generated
vendored
116
node_modules/mux.js/lib/utils/clock.js
generated
vendored
|
@ -1,58 +1,58 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var
|
||||
ONE_SECOND_IN_TS = 90000, // 90kHz clock
|
||||
secondsToVideoTs,
|
||||
secondsToAudioTs,
|
||||
videoTsToSeconds,
|
||||
audioTsToSeconds,
|
||||
audioTsToVideoTs,
|
||||
videoTsToAudioTs,
|
||||
metadataTsToSeconds;
|
||||
|
||||
secondsToVideoTs = function(seconds) {
|
||||
return seconds * ONE_SECOND_IN_TS;
|
||||
};
|
||||
|
||||
secondsToAudioTs = function(seconds, sampleRate) {
|
||||
return seconds * sampleRate;
|
||||
};
|
||||
|
||||
videoTsToSeconds = function(timestamp) {
|
||||
return timestamp / ONE_SECOND_IN_TS;
|
||||
};
|
||||
|
||||
audioTsToSeconds = function(timestamp, sampleRate) {
|
||||
return timestamp / sampleRate;
|
||||
};
|
||||
|
||||
audioTsToVideoTs = function(timestamp, sampleRate) {
|
||||
return secondsToVideoTs(audioTsToSeconds(timestamp, sampleRate));
|
||||
};
|
||||
|
||||
videoTsToAudioTs = function(timestamp, sampleRate) {
|
||||
return secondsToAudioTs(videoTsToSeconds(timestamp), sampleRate);
|
||||
};
|
||||
|
||||
/**
|
||||
* Adjust ID3 tag or caption timing information by the timeline pts values
|
||||
* (if keepOriginalTimestamps is false) and convert to seconds
|
||||
*/
|
||||
metadataTsToSeconds = function(timestamp, timelineStartPts, keepOriginalTimestamps) {
|
||||
return videoTsToSeconds(keepOriginalTimestamps ? timestamp : timestamp - timelineStartPts);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
ONE_SECOND_IN_TS: ONE_SECOND_IN_TS,
|
||||
secondsToVideoTs: secondsToVideoTs,
|
||||
secondsToAudioTs: secondsToAudioTs,
|
||||
videoTsToSeconds: videoTsToSeconds,
|
||||
audioTsToSeconds: audioTsToSeconds,
|
||||
audioTsToVideoTs: audioTsToVideoTs,
|
||||
videoTsToAudioTs: videoTsToAudioTs,
|
||||
metadataTsToSeconds: metadataTsToSeconds
|
||||
};
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
var
|
||||
ONE_SECOND_IN_TS = 90000, // 90kHz clock
|
||||
secondsToVideoTs,
|
||||
secondsToAudioTs,
|
||||
videoTsToSeconds,
|
||||
audioTsToSeconds,
|
||||
audioTsToVideoTs,
|
||||
videoTsToAudioTs,
|
||||
metadataTsToSeconds;
|
||||
|
||||
secondsToVideoTs = function(seconds) {
|
||||
return seconds * ONE_SECOND_IN_TS;
|
||||
};
|
||||
|
||||
secondsToAudioTs = function(seconds, sampleRate) {
|
||||
return seconds * sampleRate;
|
||||
};
|
||||
|
||||
videoTsToSeconds = function(timestamp) {
|
||||
return timestamp / ONE_SECOND_IN_TS;
|
||||
};
|
||||
|
||||
audioTsToSeconds = function(timestamp, sampleRate) {
|
||||
return timestamp / sampleRate;
|
||||
};
|
||||
|
||||
audioTsToVideoTs = function(timestamp, sampleRate) {
|
||||
return secondsToVideoTs(audioTsToSeconds(timestamp, sampleRate));
|
||||
};
|
||||
|
||||
videoTsToAudioTs = function(timestamp, sampleRate) {
|
||||
return secondsToAudioTs(videoTsToSeconds(timestamp), sampleRate);
|
||||
};
|
||||
|
||||
/**
|
||||
* Adjust ID3 tag or caption timing information by the timeline pts values
|
||||
* (if keepOriginalTimestamps is false) and convert to seconds
|
||||
*/
|
||||
metadataTsToSeconds = function(timestamp, timelineStartPts, keepOriginalTimestamps) {
|
||||
return videoTsToSeconds(keepOriginalTimestamps ? timestamp : timestamp - timelineStartPts);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
ONE_SECOND_IN_TS: ONE_SECOND_IN_TS,
|
||||
secondsToVideoTs: secondsToVideoTs,
|
||||
secondsToAudioTs: secondsToAudioTs,
|
||||
videoTsToSeconds: videoTsToSeconds,
|
||||
audioTsToSeconds: audioTsToSeconds,
|
||||
audioTsToVideoTs: audioTsToVideoTs,
|
||||
videoTsToAudioTs: videoTsToAudioTs,
|
||||
metadataTsToSeconds: metadataTsToSeconds
|
||||
};
|
||||
|
|
306
node_modules/mux.js/lib/utils/exp-golomb.js
generated
vendored
306
node_modules/mux.js/lib/utils/exp-golomb.js
generated
vendored
|
@ -1,153 +1,153 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var ExpGolomb;
|
||||
|
||||
/**
|
||||
* Parser for exponential Golomb codes, a variable-bitwidth number encoding
|
||||
* scheme used by h264.
|
||||
*/
|
||||
ExpGolomb = function(workingData) {
|
||||
var
|
||||
// the number of bytes left to examine in workingData
|
||||
workingBytesAvailable = workingData.byteLength,
|
||||
|
||||
// the current word being examined
|
||||
workingWord = 0, // :uint
|
||||
|
||||
// the number of bits left to examine in the current word
|
||||
workingBitsAvailable = 0; // :uint;
|
||||
|
||||
// ():uint
|
||||
this.length = function() {
|
||||
return (8 * workingBytesAvailable);
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.bitsAvailable = function() {
|
||||
return (8 * workingBytesAvailable) + workingBitsAvailable;
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.loadWord = function() {
|
||||
var
|
||||
position = workingData.byteLength - workingBytesAvailable,
|
||||
workingBytes = new Uint8Array(4),
|
||||
availableBytes = Math.min(4, workingBytesAvailable);
|
||||
|
||||
if (availableBytes === 0) {
|
||||
throw new Error('no bytes available');
|
||||
}
|
||||
|
||||
workingBytes.set(workingData.subarray(position,
|
||||
position + availableBytes));
|
||||
workingWord = new DataView(workingBytes.buffer).getUint32(0);
|
||||
|
||||
// track the amount of workingData that has been processed
|
||||
workingBitsAvailable = availableBytes * 8;
|
||||
workingBytesAvailable -= availableBytes;
|
||||
};
|
||||
|
||||
// (count:int):void
|
||||
this.skipBits = function(count) {
|
||||
var skipBytes; // :int
|
||||
if (workingBitsAvailable > count) {
|
||||
workingWord <<= count;
|
||||
workingBitsAvailable -= count;
|
||||
} else {
|
||||
count -= workingBitsAvailable;
|
||||
skipBytes = Math.floor(count / 8);
|
||||
|
||||
count -= (skipBytes * 8);
|
||||
workingBytesAvailable -= skipBytes;
|
||||
|
||||
this.loadWord();
|
||||
|
||||
workingWord <<= count;
|
||||
workingBitsAvailable -= count;
|
||||
}
|
||||
};
|
||||
|
||||
// (size:int):uint
|
||||
this.readBits = function(size) {
|
||||
var
|
||||
bits = Math.min(workingBitsAvailable, size), // :uint
|
||||
valu = workingWord >>> (32 - bits); // :uint
|
||||
// if size > 31, handle error
|
||||
workingBitsAvailable -= bits;
|
||||
if (workingBitsAvailable > 0) {
|
||||
workingWord <<= bits;
|
||||
} else if (workingBytesAvailable > 0) {
|
||||
this.loadWord();
|
||||
}
|
||||
|
||||
bits = size - bits;
|
||||
if (bits > 0) {
|
||||
return valu << bits | this.readBits(bits);
|
||||
}
|
||||
return valu;
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.skipLeadingZeros = function() {
|
||||
var leadingZeroCount; // :uint
|
||||
for (leadingZeroCount = 0; leadingZeroCount < workingBitsAvailable; ++leadingZeroCount) {
|
||||
if ((workingWord & (0x80000000 >>> leadingZeroCount)) !== 0) {
|
||||
// the first bit of working word is 1
|
||||
workingWord <<= leadingZeroCount;
|
||||
workingBitsAvailable -= leadingZeroCount;
|
||||
return leadingZeroCount;
|
||||
}
|
||||
}
|
||||
|
||||
// we exhausted workingWord and still have not found a 1
|
||||
this.loadWord();
|
||||
return leadingZeroCount + this.skipLeadingZeros();
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.skipUnsignedExpGolomb = function() {
|
||||
this.skipBits(1 + this.skipLeadingZeros());
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.skipExpGolomb = function() {
|
||||
this.skipBits(1 + this.skipLeadingZeros());
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.readUnsignedExpGolomb = function() {
|
||||
var clz = this.skipLeadingZeros(); // :uint
|
||||
return this.readBits(clz + 1) - 1;
|
||||
};
|
||||
|
||||
// ():int
|
||||
this.readExpGolomb = function() {
|
||||
var valu = this.readUnsignedExpGolomb(); // :int
|
||||
if (0x01 & valu) {
|
||||
// the number is odd if the low order bit is set
|
||||
return (1 + valu) >>> 1; // add 1 to make it even, and divide by 2
|
||||
}
|
||||
return -1 * (valu >>> 1); // divide by two then make it negative
|
||||
};
|
||||
|
||||
// Some convenience functions
|
||||
// :Boolean
|
||||
this.readBoolean = function() {
|
||||
return this.readBits(1) === 1;
|
||||
};
|
||||
|
||||
// ():int
|
||||
this.readUnsignedByte = function() {
|
||||
return this.readBits(8);
|
||||
};
|
||||
|
||||
this.loadWord();
|
||||
};
|
||||
|
||||
module.exports = ExpGolomb;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var ExpGolomb;
|
||||
|
||||
/**
|
||||
* Parser for exponential Golomb codes, a variable-bitwidth number encoding
|
||||
* scheme used by h264.
|
||||
*/
|
||||
ExpGolomb = function(workingData) {
|
||||
var
|
||||
// the number of bytes left to examine in workingData
|
||||
workingBytesAvailable = workingData.byteLength,
|
||||
|
||||
// the current word being examined
|
||||
workingWord = 0, // :uint
|
||||
|
||||
// the number of bits left to examine in the current word
|
||||
workingBitsAvailable = 0; // :uint;
|
||||
|
||||
// ():uint
|
||||
this.length = function() {
|
||||
return (8 * workingBytesAvailable);
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.bitsAvailable = function() {
|
||||
return (8 * workingBytesAvailable) + workingBitsAvailable;
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.loadWord = function() {
|
||||
var
|
||||
position = workingData.byteLength - workingBytesAvailable,
|
||||
workingBytes = new Uint8Array(4),
|
||||
availableBytes = Math.min(4, workingBytesAvailable);
|
||||
|
||||
if (availableBytes === 0) {
|
||||
throw new Error('no bytes available');
|
||||
}
|
||||
|
||||
workingBytes.set(workingData.subarray(position,
|
||||
position + availableBytes));
|
||||
workingWord = new DataView(workingBytes.buffer).getUint32(0);
|
||||
|
||||
// track the amount of workingData that has been processed
|
||||
workingBitsAvailable = availableBytes * 8;
|
||||
workingBytesAvailable -= availableBytes;
|
||||
};
|
||||
|
||||
// (count:int):void
|
||||
this.skipBits = function(count) {
|
||||
var skipBytes; // :int
|
||||
if (workingBitsAvailable > count) {
|
||||
workingWord <<= count;
|
||||
workingBitsAvailable -= count;
|
||||
} else {
|
||||
count -= workingBitsAvailable;
|
||||
skipBytes = Math.floor(count / 8);
|
||||
|
||||
count -= (skipBytes * 8);
|
||||
workingBytesAvailable -= skipBytes;
|
||||
|
||||
this.loadWord();
|
||||
|
||||
workingWord <<= count;
|
||||
workingBitsAvailable -= count;
|
||||
}
|
||||
};
|
||||
|
||||
// (size:int):uint
|
||||
this.readBits = function(size) {
|
||||
var
|
||||
bits = Math.min(workingBitsAvailable, size), // :uint
|
||||
valu = workingWord >>> (32 - bits); // :uint
|
||||
// if size > 31, handle error
|
||||
workingBitsAvailable -= bits;
|
||||
if (workingBitsAvailable > 0) {
|
||||
workingWord <<= bits;
|
||||
} else if (workingBytesAvailable > 0) {
|
||||
this.loadWord();
|
||||
}
|
||||
|
||||
bits = size - bits;
|
||||
if (bits > 0) {
|
||||
return valu << bits | this.readBits(bits);
|
||||
}
|
||||
return valu;
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.skipLeadingZeros = function() {
|
||||
var leadingZeroCount; // :uint
|
||||
for (leadingZeroCount = 0; leadingZeroCount < workingBitsAvailable; ++leadingZeroCount) {
|
||||
if ((workingWord & (0x80000000 >>> leadingZeroCount)) !== 0) {
|
||||
// the first bit of working word is 1
|
||||
workingWord <<= leadingZeroCount;
|
||||
workingBitsAvailable -= leadingZeroCount;
|
||||
return leadingZeroCount;
|
||||
}
|
||||
}
|
||||
|
||||
// we exhausted workingWord and still have not found a 1
|
||||
this.loadWord();
|
||||
return leadingZeroCount + this.skipLeadingZeros();
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.skipUnsignedExpGolomb = function() {
|
||||
this.skipBits(1 + this.skipLeadingZeros());
|
||||
};
|
||||
|
||||
// ():void
|
||||
this.skipExpGolomb = function() {
|
||||
this.skipBits(1 + this.skipLeadingZeros());
|
||||
};
|
||||
|
||||
// ():uint
|
||||
this.readUnsignedExpGolomb = function() {
|
||||
var clz = this.skipLeadingZeros(); // :uint
|
||||
return this.readBits(clz + 1) - 1;
|
||||
};
|
||||
|
||||
// ():int
|
||||
this.readExpGolomb = function() {
|
||||
var valu = this.readUnsignedExpGolomb(); // :int
|
||||
if (0x01 & valu) {
|
||||
// the number is odd if the low order bit is set
|
||||
return (1 + valu) >>> 1; // add 1 to make it even, and divide by 2
|
||||
}
|
||||
return -1 * (valu >>> 1); // divide by two then make it negative
|
||||
};
|
||||
|
||||
// Some convenience functions
|
||||
// :Boolean
|
||||
this.readBoolean = function() {
|
||||
return this.readBits(1) === 1;
|
||||
};
|
||||
|
||||
// ():int
|
||||
this.readUnsignedByte = function() {
|
||||
return this.readBits(8);
|
||||
};
|
||||
|
||||
this.loadWord();
|
||||
};
|
||||
|
||||
module.exports = ExpGolomb;
|
||||
|
|
282
node_modules/mux.js/lib/utils/stream.js
generated
vendored
282
node_modules/mux.js/lib/utils/stream.js
generated
vendored
|
@ -1,141 +1,141 @@
|
|||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* A lightweight readable stream implemention that handles event dispatching.
|
||||
* Objects that inherit from streams should call init in their constructors.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = function() {
|
||||
this.init = function() {
|
||||
var listeners = {};
|
||||
/**
|
||||
* Add a listener for a specified event type.
|
||||
* @param type {string} the event name
|
||||
* @param listener {function} the callback to be invoked when an event of
|
||||
* the specified type occurs
|
||||
*/
|
||||
this.on = function(type, listener) {
|
||||
if (!listeners[type]) {
|
||||
listeners[type] = [];
|
||||
}
|
||||
listeners[type] = listeners[type].concat(listener);
|
||||
};
|
||||
/**
|
||||
* Remove a listener for a specified event type.
|
||||
* @param type {string} the event name
|
||||
* @param listener {function} a function previously registered for this
|
||||
* type of event through `on`
|
||||
*/
|
||||
this.off = function(type, listener) {
|
||||
var index;
|
||||
if (!listeners[type]) {
|
||||
return false;
|
||||
}
|
||||
index = listeners[type].indexOf(listener);
|
||||
listeners[type] = listeners[type].slice();
|
||||
listeners[type].splice(index, 1);
|
||||
return index > -1;
|
||||
};
|
||||
/**
|
||||
* Trigger an event of the specified type on this stream. Any additional
|
||||
* arguments to this function are passed as parameters to event listeners.
|
||||
* @param type {string} the event name
|
||||
*/
|
||||
this.trigger = function(type) {
|
||||
var callbacks, i, length, args;
|
||||
callbacks = listeners[type];
|
||||
if (!callbacks) {
|
||||
return;
|
||||
}
|
||||
// Slicing the arguments on every invocation of this method
|
||||
// can add a significant amount of overhead. Avoid the
|
||||
// intermediate object creation for the common case of a
|
||||
// single callback argument
|
||||
if (arguments.length === 2) {
|
||||
length = callbacks.length;
|
||||
for (i = 0; i < length; ++i) {
|
||||
callbacks[i].call(this, arguments[1]);
|
||||
}
|
||||
} else {
|
||||
args = [];
|
||||
i = arguments.length;
|
||||
for (i = 1; i < arguments.length; ++i) {
|
||||
args.push(arguments[i]);
|
||||
}
|
||||
length = callbacks.length;
|
||||
for (i = 0; i < length; ++i) {
|
||||
callbacks[i].apply(this, args);
|
||||
}
|
||||
}
|
||||
};
|
||||
/**
|
||||
* Destroys the stream and cleans up.
|
||||
*/
|
||||
this.dispose = function() {
|
||||
listeners = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Forwards all `data` events on this stream to the destination stream. The
|
||||
* destination stream should provide a method `push` to receive the data
|
||||
* events as they arrive.
|
||||
* @param destination {stream} the stream that will receive all `data` events
|
||||
* @param autoFlush {boolean} if false, we will not call `flush` on the destination
|
||||
* when the current stream emits a 'done' event
|
||||
* @see http://nodejs.org/api/stream.html#stream_readable_pipe_destination_options
|
||||
*/
|
||||
Stream.prototype.pipe = function(destination) {
|
||||
this.on('data', function(data) {
|
||||
destination.push(data);
|
||||
});
|
||||
|
||||
this.on('done', function(flushSource) {
|
||||
destination.flush(flushSource);
|
||||
});
|
||||
|
||||
this.on('partialdone', function(flushSource) {
|
||||
destination.partialFlush(flushSource);
|
||||
});
|
||||
|
||||
this.on('endedtimeline', function(flushSource) {
|
||||
destination.endTimeline(flushSource);
|
||||
});
|
||||
|
||||
this.on('reset', function(flushSource) {
|
||||
destination.reset(flushSource);
|
||||
});
|
||||
|
||||
return destination;
|
||||
};
|
||||
|
||||
// Default stream functions that are expected to be overridden to perform
|
||||
// actual work. These are provided by the prototype as a sort of no-op
|
||||
// implementation so that we don't have to check for their existence in the
|
||||
// `pipe` function above.
|
||||
Stream.prototype.push = function(data) {
|
||||
this.trigger('data', data);
|
||||
};
|
||||
|
||||
Stream.prototype.flush = function(flushSource) {
|
||||
this.trigger('done', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.partialFlush = function(flushSource) {
|
||||
this.trigger('partialdone', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.endTimeline = function(flushSource) {
|
||||
this.trigger('endedtimeline', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.reset = function(flushSource) {
|
||||
this.trigger('reset', flushSource);
|
||||
};
|
||||
|
||||
module.exports = Stream;
|
||||
/**
|
||||
* mux.js
|
||||
*
|
||||
* Copyright (c) Brightcove
|
||||
* Licensed Apache-2.0 https://github.com/videojs/mux.js/blob/master/LICENSE
|
||||
*
|
||||
* A lightweight readable stream implemention that handles event dispatching.
|
||||
* Objects that inherit from streams should call init in their constructors.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
var Stream = function() {
|
||||
this.init = function() {
|
||||
var listeners = {};
|
||||
/**
|
||||
* Add a listener for a specified event type.
|
||||
* @param type {string} the event name
|
||||
* @param listener {function} the callback to be invoked when an event of
|
||||
* the specified type occurs
|
||||
*/
|
||||
this.on = function(type, listener) {
|
||||
if (!listeners[type]) {
|
||||
listeners[type] = [];
|
||||
}
|
||||
listeners[type] = listeners[type].concat(listener);
|
||||
};
|
||||
/**
|
||||
* Remove a listener for a specified event type.
|
||||
* @param type {string} the event name
|
||||
* @param listener {function} a function previously registered for this
|
||||
* type of event through `on`
|
||||
*/
|
||||
this.off = function(type, listener) {
|
||||
var index;
|
||||
if (!listeners[type]) {
|
||||
return false;
|
||||
}
|
||||
index = listeners[type].indexOf(listener);
|
||||
listeners[type] = listeners[type].slice();
|
||||
listeners[type].splice(index, 1);
|
||||
return index > -1;
|
||||
};
|
||||
/**
|
||||
* Trigger an event of the specified type on this stream. Any additional
|
||||
* arguments to this function are passed as parameters to event listeners.
|
||||
* @param type {string} the event name
|
||||
*/
|
||||
this.trigger = function(type) {
|
||||
var callbacks, i, length, args;
|
||||
callbacks = listeners[type];
|
||||
if (!callbacks) {
|
||||
return;
|
||||
}
|
||||
// Slicing the arguments on every invocation of this method
|
||||
// can add a significant amount of overhead. Avoid the
|
||||
// intermediate object creation for the common case of a
|
||||
// single callback argument
|
||||
if (arguments.length === 2) {
|
||||
length = callbacks.length;
|
||||
for (i = 0; i < length; ++i) {
|
||||
callbacks[i].call(this, arguments[1]);
|
||||
}
|
||||
} else {
|
||||
args = [];
|
||||
i = arguments.length;
|
||||
for (i = 1; i < arguments.length; ++i) {
|
||||
args.push(arguments[i]);
|
||||
}
|
||||
length = callbacks.length;
|
||||
for (i = 0; i < length; ++i) {
|
||||
callbacks[i].apply(this, args);
|
||||
}
|
||||
}
|
||||
};
|
||||
/**
|
||||
* Destroys the stream and cleans up.
|
||||
*/
|
||||
this.dispose = function() {
|
||||
listeners = {};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Forwards all `data` events on this stream to the destination stream. The
|
||||
* destination stream should provide a method `push` to receive the data
|
||||
* events as they arrive.
|
||||
* @param destination {stream} the stream that will receive all `data` events
|
||||
* @param autoFlush {boolean} if false, we will not call `flush` on the destination
|
||||
* when the current stream emits a 'done' event
|
||||
* @see http://nodejs.org/api/stream.html#stream_readable_pipe_destination_options
|
||||
*/
|
||||
Stream.prototype.pipe = function(destination) {
|
||||
this.on('data', function(data) {
|
||||
destination.push(data);
|
||||
});
|
||||
|
||||
this.on('done', function(flushSource) {
|
||||
destination.flush(flushSource);
|
||||
});
|
||||
|
||||
this.on('partialdone', function(flushSource) {
|
||||
destination.partialFlush(flushSource);
|
||||
});
|
||||
|
||||
this.on('endedtimeline', function(flushSource) {
|
||||
destination.endTimeline(flushSource);
|
||||
});
|
||||
|
||||
this.on('reset', function(flushSource) {
|
||||
destination.reset(flushSource);
|
||||
});
|
||||
|
||||
return destination;
|
||||
};
|
||||
|
||||
// Default stream functions that are expected to be overridden to perform
|
||||
// actual work. These are provided by the prototype as a sort of no-op
|
||||
// implementation so that we don't have to check for their existence in the
|
||||
// `pipe` function above.
|
||||
Stream.prototype.push = function(data) {
|
||||
this.trigger('data', data);
|
||||
};
|
||||
|
||||
Stream.prototype.flush = function(flushSource) {
|
||||
this.trigger('done', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.partialFlush = function(flushSource) {
|
||||
this.trigger('partialdone', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.endTimeline = function(flushSource) {
|
||||
this.trigger('endedtimeline', flushSource);
|
||||
};
|
||||
|
||||
Stream.prototype.reset = function(flushSource) {
|
||||
this.trigger('reset', flushSource);
|
||||
};
|
||||
|
||||
module.exports = Stream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue