[mirotalksfu] - fix typo, update readme

هذا الالتزام موجود في:
Miroslav Pejic
2025-04-24 18:07:06 +02:00
الأصل 65595fd95c
التزام f0b372993e
2 ملفات معدلة مع 7 إضافات و7 حذوفات

عرض الملف

@@ -66,7 +66,7 @@
- Choose your audio input, output, and video source.
- Supports video quality up to 4K.
- Supports advance Video/Document Picture-in-Picture (PiP) offering a more streamlined and flexible viewing experience.
- Record your screen, audio, and video locally or on your Server.
- Record your screen, audio, and video locally, on your server, or in an S3 bucket for easy access and management!
- Snapshot video frames and save them as PNG images.
- Chat with an Emoji Picker for expressing feelings, private messages, Markdown support, and conversation saving.
- ChatGPT (powered by OpenAI) for answering questions, providing information, and connecting users to relevant resources.

عرض الملف

@@ -861,7 +861,7 @@ function startServer() {
});
// ####################################################
// UTILITY FUNCTIONS
// RECORDING UTILITY
// ####################################################
function isValidRequest(req, fileName, roomId, checkContentType = true) {
@@ -887,10 +887,6 @@ function startServer() {
throw new Error('Invalid file name format');
}
// ####################################################
// RECORDING HANDLERS
// ####################################################
function deleteFile(filePath) {
if (!fs.existsSync(filePath)) return false;
@@ -902,6 +898,10 @@ function startServer() {
}
}
// ####################################################
// RECORDING HANDLERS
// ####################################################
async function uploadToS3(filePath, fileName, roomId, bucket, s3Client) {
if (!fs.existsSync(filePath)) return false;
@@ -952,7 +952,7 @@ function startServer() {
}
// ####################################################
// ROUTE HANDLER
// RECORDING ROUTE HANDLER
// ####################################################
app.post('/recSync', async (req, res) => {