-
It looks like I'm able to customise some arguments to the sox command by passing fake input filenames, but how can I pass arguments, e.g. E.g. replicate this command
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To pass customized arguments you should use the |
Beta Was this translation helpful? Give feedback.
To pass customized arguments you should use the
CustomArgs
property of aSox
instance. However, what you want is to use a still unimplemented effect (remix
), so in this case the property you should use isCustomEffects
, setting it to "remix 1".The difference between
CustomArgs
andCustomEffects
properties is that the content of the first one is placed before any input argument, and the content of the second one is placed after all the output arguments (where effects are passed).