diff --git a/Dockerfile b/Dockerfile index 9a7fc233..b05610b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ RUN apt-get update \ build-essential \ python3 \ python3-pip \ + ffmpeg \ && rm -rf /var/lib/apt/lists/* # Copy package.json and install npm dependencies diff --git a/app/src/Room.js b/app/src/Room.js index fdc8f31d..2fb76ada 100644 --- a/app/src/Room.js +++ b/app/src/Room.js @@ -107,7 +107,7 @@ module.exports = class Room { try { // Create dir if not exists if (!fs.existsSync(folderPath)) { - log.debug('[getRTMP] Dir not exist going to create', folderPath); + log.debug('[getRTMP] Dir not exists going to create', folderPath); fs.mkdirSync(folderPath, { recursive: true }); } const files = fs.readdirSync(folderPath); diff --git a/app/src/Server.js b/app/src/Server.js index aba4f272..f7004ecf 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -44,7 +44,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.72 + * @version 1.4.73 * */ diff --git a/package.json b/package.json index 45b02875..e0dae3c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalksfu", - "version": "1.4.72", + "version": "1.4.73", "description": "WebRTC SFU browser-based video calls", "main": "Server.js", "scripts": { diff --git a/public/js/Room.js b/public/js/Room.js index 0c9fc010..d021fd5e 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -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 CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.4.72 + * @version 1.4.73 * */ @@ -4032,7 +4032,7 @@ function showAbout() { imageUrl: image.about, customClass: { image: 'img-about' }, position: 'center', - title: 'WebRTC SFU 1.4.72', + title: 'WebRTC SFU 1.4.73', html: `
diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 7067fd27..089f8d9c 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -9,7 +9,7 @@ * @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.72 + * @version 1.4.73 * */