-
Notifications
You must be signed in to change notification settings - Fork 17
/
cloudsync.xml
55 lines (55 loc) · 2.12 KB
/
cloudsync.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
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<Client name="cloudSync">
<!-- Author: Plex, Inc. -->
<!-- TODO(schuyler): Flesh this out. -->
<TranscodeTargets>
<VideoProfile container="mp4" codec="h264" audioCodec="aac" context="static">
<Setting name="VideoEncodeFlags" value="-x264opts cabac=0" />
</VideoProfile>
<!--
<VideoProfile protocol="hls" container="mpegts" codec="h264" audioCodec="aac" context="static">
<Setting name="VideoEncodeFlags" value="-x264opts cabac=0" />
</VideoProfile>
-->
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg" />
</TranscodeTargets>
<DirectPlayProfiles>
<VideoProfile container="mp4" codec="h264" audioCodec="aac" />
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg,gif,bmp,png" />
</DirectPlayProfiles>
<ContainerProfiles>
<VideoContainer name="mp4">
<Limitations>
<Match name="part.optimizedForStreaming" value="1" />
</Limitations>
</VideoContainer>
</ContainerProfiles>
<CodecProfiles>
<VideoCodec name="h264">
<Limitations>
<UpperBound name="video.width" value="1920" />
<UpperBound name="video.height" value="1080" />
<NotMatch name="video.anamorphic" value="1" isRequired="false" />
<NotMatch name="video.hasScalingMatrix" value="1" isRequired="false" />
<UpperBound name="video.bitDepth" value="8" isRequired="false" />
<UpperBound name="video.frameRate" value="30" isRequired="false" />
<UpperBound name="video.level" value="41" isRequired="false" />
<UpperBound name="video.refFrames" value="5" isRequired="false" />
</Limitations>
</VideoCodec>
<VideoAudioCodec name="aac">
<Limitations>
<UpperBound name="audio.channels" value="2" />
</Limitations>
</VideoAudioCodec>
<MusicCodec name="mp3">
<Limitations>
<UpperBound name="audio.bitrate" value="320" />
<UpperBound name="audio.channels" value="2" />
<Match name="audio.samplingRate" regex="32000|44100|48000" />
</Limitations>
</MusicCodec>
</CodecProfiles>
</Client>