From e61f1e977354a9f7f87752e4087ae4ca0fca1d7d Mon Sep 17 00:00:00 2001 From: Kerboul Date: Wed, 12 Feb 2025 11:24:22 +0100 Subject: [PATCH] =?UTF-8?q?Remplacer=20l'appel=20=C3=A0=20createVideoWithL?= =?UTF-8?q?ist=20par=20videoManager.createVideoWithList=20dans=20la=20rout?= =?UTF-8?q?e=20de=20rendu=20vid=C3=A9o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/videoRoutes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/videoRoutes.js b/routes/videoRoutes.js index 714e50d..3e58e8d 100644 --- a/routes/videoRoutes.js +++ b/routes/videoRoutes.js @@ -323,7 +323,7 @@ router.post('/videos/render/:video_id', (req, res) => { res.status(500).json({ error: 'Error getting path list' }); }); - const videoFile = createVideoWithList(project_id, pathList); + const videoFile = videoManager.createVideoWithList(project_id, pathList); console.log('Video file:', videoFile); try {