ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Support setting input arguments (such as format and bitrate)
trafficstars
Format and AudioSampleRate needed in FFmpegBuilder.
ffmpeg -f s16le -ar 16000 -i input.pcm output.wav
It wont work with ffmpeg -i input.pcm -f s16le -ar 16000 output.wav
I added format and AudioSampleRate to get it to work but I don't think this is exactly how you have envisioned FFmpegBuilder and FFmpegOutputBuilder working. I don't mind fixing it and providing a pull request but just wanted to get an understanding of your vision.