blob: c0fb75790f5fcf775212d6d5b1b7f926ca416332 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<document xmlns="http://maven.apache.org/XDOC/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
<properties>
<title>How to configure Camera default resolutions </title>
<author email="dev@openmeetings.apache.org">Apache OpenMeetings Team</author>
</properties>
<body>
<section name="How to configure Camera default resolutions">
<p>When you choose the webcam you have different resolutions
available the user can choose from. </p>
<p>You can add/remove resolutions and also change the default
selection. In the <tt>webapps/openmeetings/WEB-INF/classes/org/apache/openmeetings/web/room/VideoSettings.html</tt> there is a section:</p>
<source>
<![CDATA[
<select class="cam-resolution">
<option value="1" data-width="40" data-height="30">40x30 [4:3 (~6 KByte/sec)]</option>
<option value="2" data-width="80" data-height="60">80x60 [4:3 (~12 KByte/sec)]</option>
<option value="3" data-width="120" data-height="90" selected="selected">120x90 [4:3 (~20 KByte/sec)]</option>
<option value="4" data-width="160" data-height="120">160x120 [QQVGA 4:3 (~36 KByte/sec)]</option>
<option value="5" data-width="240" data-height="180">240x180 [4:3 (~40 KByte/sec)]</option>
<option value="6" data-width="320" data-height="240">320x240 [HVGA 4:3 (~56 KByte/sec)]</option>
<option value="7" data-width="480" data-height="360">480x360 [4:3 (~60 KByte/sec)]</option>
<option value="8" data-width="640" data-height="480">640x480 [4:3 (~68 KByte/sec)]</option>
<option value="9" data-width="1024" data-height="768">1024x768 [XGA 4:3]</option>
<option value="10" data-width="256" data-height="150">256x150 [16:9]</option>
<option value="11" data-width="432" data-height="240">432x240 [WQVGA 9:5]</option>
<option value="12" data-width="480" data-height="234">480x234 [pseudo 16:9]</option>
<option value="13" data-width="512" data-height="300">512x300 [16:9]</option>
<option value="14" data-width="640" data-height="360">640x360 [nHD 16:9]</option>
<option value="15" data-width="1024" data-height="600">1024x600 [16:9]</option>
</select>
]]>
</source>
</section>
</body>
</document>