codec-utils.js
2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**
* @file codec-utils.js
*/
/**
* Check if a codec string refers to an audio codec.
*
* @param {String} codec codec string to check
* @return {Boolean} if this is an audio codec
* @private
*/
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
var isAudioCodec = function isAudioCodec(codec) {
return (/mp4a\.\d+.\d+/i.test(codec)
);
};
/**
* Check if a codec string refers to a video codec.
*
* @param {String} codec codec string to check
* @return {Boolean} if this is a video codec
* @private
*/
var isVideoCodec = function isVideoCodec(codec) {
return (/avc1\.[\da-f]+/i.test(codec)
);
};
/**
* Parse a content type header into a type and parameters
* object
*
* @param {String} type the content type header
* @return {Object} the parsed content-type
* @private
*/
var parseContentType = function parseContentType(type) {
var object = { type: '', parameters: {} };
var parameters = type.trim().split(';');
// first parameter should always be content-type
object.type = parameters.shift().trim();
parameters.forEach(function (parameter) {
var pair = parameter.trim().split('=');
if (pair.length > 1) {
var _name = pair[0].replace(/"/g, '').trim();
var value = pair[1].replace(/"/g, '').trim();
object.parameters[_name] = value;
}
});
return object;
};
/**
* Replace the old apple-style `avc1.<dd>.<dd>` codec string with the standard
* `avc1.<hhhhhh>`
*
* @param {Array} codecs an array of codec strings to fix
* @return {Array} the translated codec array
* @private
*/
var translateLegacyCodecs = function translateLegacyCodecs(codecs) {
return codecs.map(function (codec) {
return codec.replace(/avc1\.(\d+)\.(\d+)/i, function (orig, profile, avcLevel) {
var profileHex = ('00' + Number(profile).toString(16)).slice(-2);
var avcLevelHex = ('00' + Number(avcLevel).toString(16)).slice(-2);
return 'avc1.' + profileHex + '00' + avcLevelHex;
});
});
};
exports['default'] = {
isAudioCodec: isAudioCodec,
parseContentType: parseContentType,
isVideoCodec: isVideoCodec,
translateLegacyCodecs: translateLegacyCodecs
};
module.exports = exports['default'];