ffmpeg-cli-wrapper
ffmpeg-cli-wrapper copied to clipboard
How to create custom inputs arguments.
trafficstars
The question How to create custom inputs arguments.
Example ffmpeg command
ffmpeg -ss 00:00:00 -i -t 10 input-1.mp4 -stream_loop -1 input-2.mp4 -filter_complex "".....
What you have tried I've tried implementing this code
addExtraArgs("-ss", "00:00:00") .addInput("input.mp4") .addExtraArgs("-t", 10) .addExtraArgs("-stream_loop", "-1") .addInput("input-2.mp4) .....
Currently not possible, I'm working on adding this feature in #318
Closed thanks to #339