[mirotalk] - fix

This commit is contained in:
Miroslav Pejic
2025-10-25 00:30:48 +02:00
parent 61afafb842
commit 33987061ed
6 changed files with 9 additions and 11 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ dependencies: {
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.82
* @version 1.5.83
*
*/
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "mirotalk",
"version": "1.5.82",
"version": "1.5.83",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "mirotalk",
"version": "1.5.82",
"version": "1.5.83",
"license": "AGPL-3.0",
"dependencies": {
"@mattermost/client": "10.12.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "mirotalk",
"version": "1.5.82",
"version": "1.5.83",
"description": "A free WebRTC browser-based video call",
"main": "server.js",
"scripts": {
+1 -1
View File
@@ -75,7 +75,7 @@ let brand = {
},
about: {
imageUrl: '../images/mirotalk-logo.gif',
title: 'WebRTC P2P v1.5.82',
title: 'WebRTC P2P v1.5.83',
html: `
<button
id="support-button"
+2 -6
View File
@@ -15,7 +15,7 @@
* @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.82
* @version 1.5.83
*
*/
@@ -3123,11 +3123,7 @@ async function setupLocalAudioMedia() {
await loadLocalMedia(stream, 'audio');
if (useAudio) {
localAudioMediaStream = stream;
await getMicrophoneVolumeIndicator(stream);
console.log('10. Access granted to audio device');
if (lsSettings.mic_noise_suppression) {
await enableNoiseSuppression();
}
}
}
} catch (err) {
@@ -11488,7 +11484,7 @@ function showAbout() {
Swal.fire({
background: swBg,
position: 'center',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.5.82',
title: brand.about?.title && brand.about.title.trim() !== '' ? brand.about.title : 'WebRTC P2P v1.5.83',
imageUrl: brand.about?.imageUrl && brand.about.imageUrl.trim() !== '' ? brand.about.imageUrl : images.about,
customClass: { image: 'img-about' },
html: `
+2
View File
@@ -40,6 +40,8 @@ async function getMicrophoneVolumeIndicator(stream) {
// Listen for messages from the processor
workletNode.port.onmessage = (event) => {
if (!myAudioStatus) return;
const data = event.data;
if (data.type === 'micVolume') {