[mirotalksfu] - add cloud, update dep

هذا الالتزام موجود في:
Miroslav Pejic
2024-06-06 14:43:16 +02:00
الأصل 13cfb516f4
التزام 7b7a35e1d8
10 ملفات معدلة مع 165 إضافات و24 حذوفات

عرض الملف

@@ -27,7 +27,10 @@ module.exports = class Room {
this._roomPassword = null;
this._hostOnlyRecording = false;
// ##########################
this._recSyncServerRecording = config?.server?.recording?.enabled || false;
this.recording = {
recSyncServerRecording: config?.server?.recording?.enabled || false,
recSyncServerEndpoint: config?.server?.recording?.endpoint || '',
};
// ##########################
this._moderator = {
audio_start_muted: false,
@@ -57,7 +60,7 @@ module.exports = class Room {
return {
id: this.id,
broadcasting: this._isBroadcasting,
recSyncServerRecording: this._recSyncServerRecording,
recording: this.recording,
config: {
isLocked: this._isLocked,
isLobbyEnabled: this._isLobbyEnabled,

عرض الملف

@@ -42,7 +42,7 @@ dependencies: {
* @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
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.45
* @version 1.4.46
*
*/

عرض الملف

@@ -55,8 +55,9 @@ module.exports = {
Note: if you use Docker: Create the "app/rec" directory, configure it as a volume in docker-compose.yml,
ensure proper permissions, and start the Docker container.
*/
enabled: true,
endpoint: '', // Change the URL if you want to save the recording to a different server or cloud service (http://localhost:8080), otherwise leave it as is (empty).
dir: 'rec',
enabled: false,
},
},
middleware: {