-
-
Notifications
You must be signed in to change notification settings - Fork 412
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
order of ExtraArgs #91
Comments
For this, I need to refactor the project to support a FFmpegInputBuilder, so we can attach arguments to particular input streams. Right now, arguments are only attached to output streams. |
@bramp are you working on this? I see that it's affecting more people, so I could resume working on that builder. |
@igracia I am not working on this, I was hoping you would wrap it up :) |
Ok, I'll allocate some time to finish the implementation.
|
If this issue is still relevant, you can use my command line ffmpeg wrapper - Jaffree |
@Omar-Riaz sorry, never got back to this. I don't think I will resume my work anytime soon, so please do proceed with that. |
Closed thanks to #339 |
Hi there,
I'am working on a project where I have to decode, encode and join several raw audio files.
For example:
file1.pcma
file2.pcma
with a command like this:
For this it's important to have args in the right order.
I tried to get something like this with ffmpeg-cli-wrapper, because it's a nice peace of software and covers all the event and threading stuff. I tried it with the following command:
what it has produced was:
As you can see the order is not right. The format argument has only appliend once and the other two extraargs doesn't belong to the right input because of the order.
The text was updated successfully, but these errors were encountered: