-
Notifications
You must be signed in to change notification settings - Fork 17
/
iOS.xml
44 lines (44 loc) · 1.78 KB
/
iOS.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
<?xml version="1.0" encoding="utf-8"?>
<Client name="iOS">
<TranscodeTargets>
<VideoProfile container="mp4" codec="h264" audioCodec="aac" context="all">
<!-- Inspired by Handbrake's Universal profile -->
<Setting name="VideoEncodeFlags" value="-x264opts cabac=0" />
<Setting name="SubtitleSize" value="100" />
</VideoProfile>
<VideoProfile protocol="hls" container="mpegts" codec="h264" audioCodec="aac,mp3" context="streaming">
<!-- Inspired by Handbrake's Universal profile -->
<Setting name="VideoEncodeFlags" value="-x264opts cabac=0" />
<Setting name="SubtitleSize" value="100" />
</VideoProfile>
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg" />
</TranscodeTargets>
<DirectPlayProfiles>
<VideoProfile container="mp4" codec="h264" audioCodec="aac" subtitleFormat="ttxt" />
<MusicProfile container="mp3" codec="mp3" />
<PhotoProfile container="jpeg" />
</DirectPlayProfiles>
<CodecProfiles>
<VideoCodec name="h264">
<Limitations>
<UpperBound name="video.width" value="1280" />
<UpperBound name="video.height" value="720" />
<UpperBound name="video.bitDepth" value="8" isRequired="false" />
<NotMatch name="video.anamorphic" value="1" isRequired="false" />
</Limitations>
</VideoCodec>
<VideoAudioCodec name="aac">
<Limitations>
<UpperBound name="audio.channels" value="2" />
</Limitations>
</VideoAudioCodec>
<VideoAudioCodec name="mp3">
<Limitations>
<LowerBound name="audio.samplingRate" value="32000" />
<UpperBound name="audio.samplingRate" value="48000" />
<Match name="audio.samplingRate" regex="32000|44100|48000" />
</Limitations>
</VideoAudioCodec>
</CodecProfiles>
</Client>