forked from fritzy/node-azure-media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
encode.js
39 lines (37 loc) · 1.3 KB
/
encode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
var task_presets = [
'WMA High Quality Audio',
'AAC Good Quality Audio',
'VC1 Broadband 1080p',
'VC1 Broadband 720p',
'VC1 Broadband SD 16x9',
'VC1 Broadband SD 4x3',
'VC1 Smooth Streaming 1080p',
'VC1 Smooth Streaming 720p',
'VC1 Smooth Streaming SD 16x9',
'VC1 Smooth Streaming 1080p Xbox Live ADK',
'VC1 Smooth Streaming 720p Xbox Live ADK',
'H264 Broadband 1080p',
'H264 Broadband 720p',
'H264 Broadband SD 16x9',
'H264 Broadband SD 4x3',
'H264 Smooth Streaming 1080p',
'H264 Smooth Streaming 720p',
'H264 Smooth Streaming 720p for 3G or 4G',
'H264 Smooth Streaming SD 16x9',
'H264 Smooth Streaming SD 4x3',
'H264 Adaptive Bitrate MP4 Set 1080p',
'H264 Adaptive Bitrate MP4 Set 720p',
'H264 Adaptive Bitrate MP4 Set SD 16x9',
'H264 Adaptive Bitrate MP4 Set SD 4x3',
'H264 Adaptive Bitrate MP4 Set 1080p for iOS Cellular Only',
'H264 Adaptive Bitrate MP4 Set SD 16x9 for iOS Cellular Only',
'H264 Adaptive Bitrate MP4 Set SD 4x3 for iOS Cellular Only',
'H264 Smooth Streaming 720p Xbox Live ADK',
'H264 Smooth Streaming Windows Phone 7 Series',
'Thumbnails'
];
// http://msdn.microsoft.com/en-us/library/windowsazure/jj129582.aspx
function Encoding(api) {
}
(function () {
}).call(Encoding.prototype);