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
122
123
124
125
126
127
128
129
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id='org.gnome.Cheese' path='/org/gnome/cheese/'>
<key type='b' name='countdown'>
<summary>Use a countdown</summary>
<description>Set to true to show a countdown before taking a photo</description>
<default>true</default>
</key>
<key type='i' name='countdown-duration'>
<summary>Countdown length</summary>
<description>The duration of the countdown before taking a photo, in seconds</description>
<default>3</default>
<range min='1' max='10'/>
</key>
<key type='b' name='flash'>
<summary>Fire flash before taking a picture</summary>
<description>Set to true to fire a flash when taking a picture</description>
<default>true</default>
</key>
<key type='s' name='camera'>
<summary>Camera device string indicator</summary>
<description>The path to the device node which points to the camera, for example /dev/video0</description>
<default>''</default>
</key>
<key type='s' name='selected-effect'>
<summary>Last selected effect</summary>
<description>Name of the installed effect that was selected last</description>
<default>'identity'</default>
</key>
<key type='i' name='photo-x-resolution'>
<summary>Photo width</summary>
<description>The width of the image captured from the camera, in pixels</description>
<default>0</default>
<range min='0' max='65535'/>
</key>
<key type='i' name='photo-y-resolution'>
<summary>Photo height</summary>
<description>The height of the image captured from the camera, in pixels</description>
<default>0</default>
<range min='0' max='65535'/>
</key>
<key type='i' name='video-x-resolution'>
<summary>Video width</summary>
<description>The width of the video captured from the camera, in pixels</description>
<default>0</default>
<range min='0' max='65535'/>
</key>
<key type='i' name='video-y-resolution'>
<summary>Video height</summary>
<description>The height of the video captured from the camera, in pixels</description>
<default>0</default>
<range min='0' max='65535'/>
</key>
<key type='d' name='brightness'>
<summary>Picture brightness</summary>
<description>Adjusts the brightness of the picture coming from the camera</description>
<default>0</default>
<range min='-1' max='1'/>
</key>
<key type='d' name='contrast'>
<summary>Picture contrast</summary>
<description>Adjusts the contrast of the picture coming from the camera</description>
<default>1.0</default>
<range min='0' max='2'/>
</key>
<key type='d' name='saturation'>
<summary>Picture saturation</summary>
<description>Adjusts the saturation of the picture coming from the camera</description>
<default>1</default>
<range min='0' max='2'/>
</key>
<key type='d' name='hue'>
<summary>Picture hue</summary>
<description>Adjusts the hue (color tint) of the picture coming from the camera</description>
<default>0</default>
<range min='-1' max='1'/>
</key>
<key type='s' name='video-path'>
<summary>Video Path</summary>
<description>Defines the path where the videos are stored. If empty, "XDG_VIDEO/Webcam" will be used.</description>
<default>''</default>
</key>
<key type='s' name='photo-path'>
<summary>Photo Path</summary>
<description>Defines the path where the photos are stored. If empty, "XDG_PHOTO/Webcam" will be used.</description>
<default>''</default>
</key>
<key type='b' name='wide-mode'>
<summary>Whether to start in wide mode</summary>
<description>If set to true, Cheese will start up in wide mode, with the image collection placed on the right-hand side. Useful with small screens.</description>
<default>false</default>
</key>
<key type='b' name='fullscreen'>
<summary>Whether to start in fullscreen</summary>
<description>If set to true, Cheese will start up in fullscreen mode.</description>
<default>false</default>
</key>
<key type='i' name='burst-delay'>
<summary>Time between photos in burst mode</summary>
<description>The length of time, in milliseconds, to delay between taking each photo in a burst sequence of photos. If the burst delay is less than the countdown duration, the countdown duration will be used instead.</description>
<default>1000</default>
<range min='500' max='10000'/>
</key>
<key type='i' name='burst-repeat'>
<summary>Number of photos in burst mode</summary>
<description>The number of photos to take in a single burst.</description>
<default>4</default>
<range min='1' max='100000'/>
</key>
</schema>
</schemalist>
|