[mirotalk] - fix typo, update readme
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
<br />
|
||||
|
||||
<p align="center">Free WebRTC - P2P - Simple, Secure, Fast Real-Time Video Conferences with support for up to 4k resolution and 60fps. It's compatible with all major browsers and platforms.</p>
|
||||
<p align="center">Free WebRTC - P2P - Simple, Secure, Fast Real-Time Video Conferences with support for up to 8k resolution and 60fps. It's compatible with all major browsers and platforms.</p>
|
||||
|
||||
<hr />
|
||||
|
||||
|
||||
+4
-4
@@ -507,7 +507,7 @@ const userLimits = {
|
||||
};
|
||||
|
||||
const isRulesActive = true; // Presenter can do anything, guest is slightly moderate, if false no Rules for the room.
|
||||
const forceCamMaxResolutionAndFps = false; // This force the webCam to max resolution as default, up to 4k and 60fps (very high bandwidth are required) if false, you can set it from settings
|
||||
const forceCamMaxResolutionAndFps = false; // This force the webCam to max resolution as default, up to 8k and 60fps (very high bandwidth are required) if false, you can set it from settings
|
||||
const useAvatarSvg = true; // if false the cam-Off avatar = images.avatar
|
||||
|
||||
/**
|
||||
@@ -5509,10 +5509,10 @@ async function getVideoConstraints(videoQuality) {
|
||||
switch (videoQuality) {
|
||||
case 'default':
|
||||
if (forceCamMaxResolutionAndFps) {
|
||||
// This will make the browser use the maximum resolution available as default, `up to 4K and 60fps`.
|
||||
// This will make the browser use the maximum resolution available as default, `up to 8K and 60fps`.
|
||||
constraints = {
|
||||
width: { ideal: 3840 },
|
||||
height: { ideal: 2160 },
|
||||
width: { ideal: 7680 },
|
||||
height: { ideal: 4320 },
|
||||
frameRate: { ideal: 60 },
|
||||
}; // video cam constraints default
|
||||
} else {
|
||||
|
||||
@@ -187,7 +187,7 @@
|
||||
<h4 class="mt-0 mb-8">Screen Sharing</h4>
|
||||
<p class="m-0 text-sm">
|
||||
Share your screen, application window, present your documents, slides
|
||||
and more. Up to 4k resolution and speed up to 60fps.
|
||||
and more. Up to 8k resolution and speed up to 60fps.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -208,7 +208,7 @@
|
||||
<h4 class="mt-0 mb-8">WebCam Streaming</h4>
|
||||
<p class="m-0 text-sm">
|
||||
Having the webcam on, allows participants to make a deeper connection
|
||||
with you. Up to 4k resolution and speed up to 60fps.
|
||||
with you. Up to 8k resolution and speed up to 60fps.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user