fix(audio): misc

This commit is contained in:
Ibrahima G. Coulibaly 2025-07-08 17:43:44 +01:00
commit f3ed70258e
10 changed files with 55 additions and 52 deletions

View file

@ -36,7 +36,7 @@ export async function mergeAudioFiles(
await ffmpeg.writeFile(fileListName, fileListContent);
// Build FFmpeg arguments for merging
let args: string[] = ['-f', 'concat', '-safe', '0', '-i', fileListName];
const args: string[] = ['-f', 'concat', '-safe', '0', '-i', fileListName];
// Add format-specific arguments
if (outputFormat === 'mp3') {