Page 1 of 1

quality at 75%

Posted: Fri Mar 13, 2020 2:01 am
by n9rla
Is there a way to have the default quality at 75% and not 30%?

Re: quality at 75%

Posted: Sun Mar 29, 2020 1:52 pm
by malun
Yes, but you will have to edit the file template_js.html by hand to achieve this.

The location of the file depends on windows version.

In newer Windows versions, the location will be:
C:\Users\username\.yawcam\stream\template_js.html
and in windows 2000 or windows xp:
C:\Documents and Settings\username\.yawcam\stream\template_js.html

where username is the name of the account you are using.

Look for the lines:

Code: Select all

var fps = 30;
var quality = 30;
var timeout = 33;
Change the quality to 75:

Code: Select all

var fps = 30;
var quality = 75;
var timeout = 33;
Related posts:
https://yawcam.com/forum/viewtopic.php? ... ity#p13330
https://yawcam.com/forum/viewtopic.php?t=1298

/malun