ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
Ability to skip defining inputs and do it manually via extra args
trafficstars
Right now it's required to provide at least one input. I've got situation when:
- input definition is complex:
-f lavfi -i aevalsrc=0 - it has to be before
extra_argsbecause they refer to it (-map,-shortest)
There was no way to do it besides extending FFmpegBuilder and just copying this method commenting out inputs check - and this way it worked well just with all args defined through addExtraArgs.
Maybe I'm missing something in ffmpeg usage - I've tried several args order in command line and it complained about -i going after other args.