diff --git a/routes/videoRoutes.js b/routes/videoRoutes.js index eaebea1..c785206 100644 --- a/routes/videoRoutes.js +++ b/routes/videoRoutes.js @@ -271,6 +271,7 @@ router.get('/videos/file/:video_id', (req, res) => { return res.status(400).json({ error: 'Video not yet produced' }); } const videoPath = video.video_path; + console.log('Video path:', videoPath); fs.access(videoPath, fs.constants.F_OK, (err) => { if (err) { console.error('Video not found:', err);