[mirotalk] - fix typo, update readme

This commit is contained in:
Miroslav Pejic
2024-07-29 12:54:20 +02:00
parent 9b2aae556e
commit 5740c5b33c
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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
View File
@@ -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 {
+2 -2
View File
@@ -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>