Open n0th1ng-else opened 2 years ago
conversion maybe goes well by specifying '-f' and '-acodec'
exclude 'loglevel' from your args, write as following then you can see ffmpeg logs
const ffmpeg = new FFmpeg({/* options */});
ffmpeg.process.stderr.on("data", chunk => console.debug(chunk.toString()));
Issue:
I am trying to implement the converter into wav. It works pretty fine for mp3/ogg files. But then I wanted to use the same implementation for mp4 file (ie cut the video, convert it into wav) But the output is always empty.
How do I debug the execution and understand what goes wrong?
Steps to reproduce:
To simplify the process, I first tried the convertation with ffmpeg cli:
./node_modules/ffmpeg-static/ffmpeg -i ~/Downloads/file_97.mp4 -vn -ac 1 -ar 16000 test.wav
it works good ^^
Then in the code, I do almost the same, but do a GET request to download the file rather than read the file from the file system. the result is empty...