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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<includes>
<include name="CodecFlaggingConditions">
<control type="image">
<description>Video rez Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.VideoResolution,flagging/video/,.png]</texture>
</control>
<control type="image">
<description>Xvid Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/xvid.png</texture>
<visible>substring(ListItem.VideoCodec,xvid)</visible>
</control>
<control type="image">
<description>Divx Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/divx.png</texture>
<visible>substring(ListItem.VideoCodec,divx) | substring(ListItem.VideoCodec,div3) |substring(ListItem.VideoCodec,div4) | substring(ListItem.VideoCodec,div5)</visible>
</control>
<control type="image">
<description>h264 Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/h264.png</texture>
<visible>substring(ListItem.VideoCodec,h264)</visible>
</control>
<control type="image">
<description>avc1 Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/avc1.png</texture>
<visible>substring(ListItem.VideoCodec,avc1)</visible>
</control>
<control type="image">
<description>wvc1 Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/wvc1.png</texture>
<visible>substring(ListItem.VideoCodec,wvc1)</visible>
</control>
<control type="image">
<description>mpeg1video Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/video/mpeg1video.png</texture>
<visible>substring(ListItem.VideoCodec,mpeg1video)</visible>
</control>
<control type="image">
<description>mp3 Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/mp3.png</texture>
<visible>substring(ListItem.AudioCodec,mp3)</visible>
</control>
<control type="image">
<description>dts Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/dts.png</texture>
<visible>substring(ListItem.AudioCodec,dca)</visible>
</control>
<control type="image">
<description>ac3 Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/ac3.png</texture>
<visible>substring(ListItem.AudioCodec,ac3) + !substring(ListItem.AudioChannels,6)</visible>
</control>
<control type="image">
<description>aac Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/aac.png</texture>
<visible>substring(ListItem.AudioCodec,aac)</visible>
</control>
<control type="image">
<description>Dolby Digital Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/dolbydigital.png</texture>
<visible>substring(ListItem.AudioCodec,ac3) + substring(ListItem.AudioChannels,6)</visible>
</control>
<control type="image">
<description>WMA Pro Codec Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>flagging/audio/wmapro.png</texture>
<visible>substring(ListItem.AudioCodec,wmapro)</visible>
</control>
<control type="image">
<description>Audio Channels Image</description>
<width>45</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.AudioChannels,flagging/audio/,.png]</texture>
</control>
<control type="image">
<description>Aspectratio Image</description>
<width>90</width>
<height>33</height>
<aspectratio>keep</aspectratio>
<texture>$INFO[ListItem.VideoAspect,flagging/aspectratio/,.png]</texture>
</control>
</include>
</includes>
|