mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-15 12:28:33 +05:30
fix(audio): misc
This commit is contained in:
parent
7962bba04f
commit
f3ed70258e
10 changed files with 55 additions and 52 deletions
|
|
@ -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') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue