Remplacer l'appel à createVideoWithList par videoManager.createVideoWithList dans la route de rendu vidéo

This commit is contained in:
2025-02-12 11:24:22 +01:00
parent a63e79e26e
commit e61f1e9773

View File

@@ -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 {