[mirotalksfu] - #194 Improvements

هذا الالتزام موجود في:
Miroslav Pejic
2025-02-22 23:15:08 +01:00
الأصل 2ac6fc26c0
التزام 802aea403a
6 ملفات معدلة مع 21 إضافات و14 حذوفات

عرض الملف

@@ -58,7 +58,7 @@ dev dependencies: {
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.7.56 * @version 1.7.57
* *
*/ */

عرض الملف

@@ -1,6 +1,6 @@
{ {
"name": "mirotalksfu", "name": "mirotalksfu",
"version": "1.7.56", "version": "1.7.57",
"description": "WebRTC SFU browser-based video calls", "description": "WebRTC SFU browser-based video calls",
"main": "Server.js", "main": "Server.js",
"scripts": { "scripts": {
@@ -79,7 +79,7 @@
"mediasoup-client": "3.8.2", "mediasoup-client": "3.8.2",
"ngrok": "^5.0.0-beta.2", "ngrok": "^5.0.0-beta.2",
"nodemailer": "^6.10.0", "nodemailer": "^6.10.0",
"openai": "^4.85.3", "openai": "^4.85.4",
"qs": "6.14.0", "qs": "6.14.0",
"sanitize-filename": "^1.6.3", "sanitize-filename": "^1.6.3",
"socket.io": "4.8.1", "socket.io": "4.8.1",

عرض الملف

@@ -64,7 +64,7 @@ let BRAND = {
}, },
about: { about: {
imageUrl: '../images/mirotalk-logo.gif', imageUrl: '../images/mirotalk-logo.gif',
title: '<strong>WebRTC SFU v1.7.56</strong>', title: '<strong>WebRTC SFU v1.7.57</strong>',
html: ` html: `
<button <button
id="support-button" id="support-button"

عرض الملف

@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.7.56 * @version 1.7.57
* *
*/ */
@@ -5270,7 +5270,7 @@ function showAbout() {
position: 'center', position: 'center',
imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about, imageUrl: BRAND.about?.imageUrl && BRAND.about.imageUrl.trim() !== '' ? BRAND.about.imageUrl : image.about,
customClass: { image: 'img-about' }, customClass: { image: 'img-about' },
title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.7.56', title: BRAND.about?.title && BRAND.about.title.trim() !== '' ? BRAND.about.title : 'WebRTC SFU v1.7.57',
html: ` html: `
<br /> <br />
<div id="about"> <div id="about">

عرض الملف

@@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.7.56 * @version 1.7.57
* *
*/ */

عرض الملف

@@ -86,8 +86,16 @@ class VirtualBackground {
console.error('❌ Frame processing error:', error); console.error('❌ Frame processing error:', error);
} finally { } finally {
// Close frames after processing to release resources // Close frames after processing to release resources
videoFrame?.close(); this.closeFrames(videoFrame, imageBitmap);
imageBitmap?.close(); }
}
closeFrames(videoFrame, imageBitmap) {
if (videoFrame && !videoFrame.closed) {
videoFrame.close();
}
if (imageBitmap && !imageBitmap.closed) {
imageBitmap.close();
} }
} }
@@ -103,7 +111,7 @@ class VirtualBackground {
transform: async (videoFrame, controller) => { transform: async (videoFrame, controller) => {
if (!this.segmentation || !this.initialized) { if (!this.segmentation || !this.initialized) {
console.warn('⚠️ Segmentation is not initialized, skipping frame.'); console.warn('⚠️ Segmentation is not initialized, skipping frame.');
videoFrame?.close(); this.closeFrames(videoFrame);
return; return;
} }
@@ -113,7 +121,7 @@ class VirtualBackground {
if (!imageBitmap) { if (!imageBitmap) {
console.warn('⚠️ Failed to create imageBitmap, skipping frame.'); console.warn('⚠️ Failed to create imageBitmap, skipping frame.');
videoFrame?.close(); this.closeFrames(videoFrame);
return; return;
} }
@@ -150,7 +158,7 @@ class VirtualBackground {
console.error('❌ Frame transformation error:', error); console.error('❌ Frame transformation error:', error);
} finally { } finally {
// Close the video frame after processing // Close the video frame after processing
videoFrame?.close(); this.closeFrames(videoFrame);
} }
}, },
flush: () => this.cleanPendingFrames(), // Clean up any pending frames when the stream ends flush: () => this.cleanPendingFrames(), // Clean up any pending frames when the stream ends
@@ -174,8 +182,7 @@ class VirtualBackground {
// Close all pending frames to release resources // Close all pending frames to release resources
while (this.pendingFrames.length) { while (this.pendingFrames.length) {
const { videoFrame, imageBitmap } = this.pendingFrames.pop(); const { videoFrame, imageBitmap } = this.pendingFrames.pop();
videoFrame?.close(); this.closeFrames(videoFrame, imageBitmap);
imageBitmap?.close();
} }
} }