/** * Ce fichier est conservé pour la rétrocompatibilité mais redirige vers le nouveau service vidéo. * Il sera progressivement supprimé lorsque toutes les références auront été mises à jour. */ const VideoService = require('../services/videoService'); // Fonction de pont pour maintenir la compatibilité avec l'ancien code async function createVideoWithList(projectId, pathList, duration, videoId, res_width, res_height) { return await VideoService.createVideoFromImages(projectId, pathList, duration, videoId, res_width, res_height); } module.exports = { createVideoWithList };