<fieldset data-role="controlgroup" data-type="horizontal">
<legend><b>Video Quality</b>:</legend>
<input type="radio" name="vqual" id="vqual_qvga" value="qvga">
- <label for="vqual_qvga">QVGA 320x180</label>
+ <label for="vqual_qvga">QVGA 320x240</label>
<input type="radio" name="vqual" id="vqual_vga" value="vga">
- <label for="vqual_vga">VGA 640x360</label>
+ <label for="vqual_vga">VGA 640x480</label>
<input type="radio" name="vqual" id="vqual_hd" value="hd">
<label for="vqual_hd">HD 1280x720</label>
{
if ($("#vqual_qvga").is(':checked')) {
vid_width = 320;
- vid_height = 180;
+ vid_height = 240;
} else if ($("#vqual_vga").is(':checked')) {
vid_width = 640;
- vid_height = 360;
+ vid_height = 480;
} else if ($("#vqual_hd").is(':checked')) {
vid_width = 1280;
vid_height = 720;
"minHeight": vid_height,
"maxWidth": vid_width,
"maxHeight": vid_height,
- "minFrameRate": 30
+ "minFrameRate": 30,
},
audioParams: {
googAutoGainControl: false,