I guess you just need do ffmpeg.intput('filename', nostdin=None)
@metaphox Dint know that one. Shouldn't that be likeffmpeg.input('filename', nostdin=true) ?
Also i guess passing -loglevel would be resolved when issue #30 is fixed
@kishaningithub That's correct
Done. See also #30.
For anybody that needs an example (like I did):
(
ffmpeg
.input(in_filename, ss=time)
.output(out_filename, vframes=1)
.global_args('-loglevel', 'error')
.global_args('-y')
.run()
)
Most helpful comment
For anybody that needs an example (like I did):