From 62fb3b4b6cebee9651e9b1fffaf9ed9081bed6fd Mon Sep 17 00:00:00 2001 From: Kerboul Date: Sun, 12 Jan 2025 15:23:38 +0000 Subject: [PATCH] =?UTF-8?q?Supprimer=20le=20commentaire=20sur=20la=20d?= =?UTF-8?q?=C3=A9duction=20du=20nom=20de=20fichier=20vid=C3=A9o=20dans=20l?= =?UTF-8?q?a=20route=20de=20cr=C3=A9ation=20de=20vid=C3=A9o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/api.js | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/api.js b/routes/api.js index 187903a..7372244 100644 --- a/routes/api.js +++ b/routes/api.js @@ -398,7 +398,6 @@ router.post('/createvideo', (req, res) => { image_count = list_ids.length; - // déduire le nom du fichier de la vidéo du nom donné par req.body.name const video_path = '/videos/' + req.body.name + '.mp4'; const query_first = 'SELECT timestamp FROM public.measurements WHERE id = $1';