-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathWebM.xml
51 lines (51 loc) · 1.9 KB
/
WebM.xml
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
<?xml version="1.0" encoding="utf-8"?>
<Client name="Chrome with WebM">
<TranscodeTargets>
<VideoProfile container="webm" codec="libvpx" audioCodec="libvorbis">
<Setting name="VideoEncodeFlags" value="-deadline realtime -flags -global_header" />
</VideoProfile>
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg" />
</TranscodeTargets>
<DirectPlayProfiles>
<VideoProfile container="mp4" codec="h264,mpeg4" audioCodec="ac3,mp2,mp3,aac" />
<VideoProfile container="avi" codec="mpeg1video,mpeg2video" audioCodec="mp2,mp3" />
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg" />
</DirectPlayProfiles>
<CodecProfiles>
<VideoCodec name="h264">
<Limitations>
<UpperBound name="video.width" value="1920" />
<UpperBound name="video.height" value="1080" />
<UpperBound name="video.frameRate" value="30" />
<UpperBound name="video.bitrate" value="20000" />
<UpperBound name="video.level" value="41" />
</Limitations>
</VideoCodec>
<VideoCodec name="mpeg2video">
<Limitations>
<UpperBound name="video.width" value="1920" />
<UpperBound name="video.height" value="1080" />
<UpperBound name="video.frameRate" value="30" />
<UpperBound name="video.bitrate" value="20000" />
</Limitations>
</VideoCodec>
<VideoAudioCodec name="ac3">
<Limitations>
<UpperBound name="audio.channels" value="6" />
<UpperBound name="audio.bitrate" value="384" />
</Limitations>
</VideoAudioCodec>
<VideoAudioCodec name="aac">
<Limitations>
<UpperBound name="audio.channels" value="2" />
</Limitations>
</VideoAudioCodec>
<VideoAudioCodec name="libvorbis">
<Limitations>
<UpperBound name="audio.channels" value="2" />
</Limitations>
</VideoAudioCodec>
</CodecProfiles>
</Client>