Posts by tanji • 9 points
2 posts
-
0
votes0
answers45
viewsQ: Ffmpeg conflict running in different processes
I have a nodejs server that does some manipulations with audio files, using the Fluent-ffmpeg library, but when concatenating some files using the function: ffmpeg('./public/uploads/'+tmpFilename)…
-
0
votes1
answer126
viewsQ: Promises.all are on an infinite loop
I have the following code segment: generateEpisode(result,programId).then((arrayBlocks) =>{ const promises = [] arrayBlocks.map((file,index) =>{ promises.push(normalizeFile(file,index)) });…