-
-
Notifications
You must be signed in to change notification settings - Fork 423
Ability to skip defining inputs and do it manually via extra args #65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thanks for the report. Would you provide me an example of a full command line, so I can fully understand the issue. |
Thanks for reply.. I should have posted command before. I'm solving following problem: there are several videos, some with audio, some without and I need to concat them into one larger video. To do so first I copy videos without sound stream adding to them null audio stream, command looks like this: Some parts are kind of magic for me now, so maybe there are better ways. At least Changing order to something like |
Perhaps #75 would solve this? |
Closed thanks to #339. |
Right now it's required to provide at least one input. I've got situation when:
-f lavfi -i aevalsrc=0
extra_args
because 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 throughaddExtraArgs
.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.The text was updated successfully, but these errors were encountered: