-
Notifications
You must be signed in to change notification settings - Fork 42
DSP options for convenience
qaac supports the following DSP options.
- Lowpass filter (--lowpass)
- Sample rate conversion (--rate)
- Normalizing (-N)
- Gain adjustment (--gain)
- Channel reordering (--chanmap)
- Matrix mixer (--matrix-preset, --matrix-file)
- Delay (--delay)
- Bits per sample conversion (--bits-per-sample)
--rate, --lowpass, --matrix-preset, --matrix-file require libsoxrate.
Note that -N, --gain, --matrix-preset, --matrix-file, --rate, --lowpass will convert internal sample format to float. When you want to force output bit depth of WAV or ALAC, use -b. In case of ALAC, output will be automatically re-quantized when these DSP was applied.
Besides, channels are internally/automatically reordered. At first, channels are reordered to the Microsoft order (such as L C R to L R C), and before encoding to AAC/ALAC, reordered again to AAC order (such as C L R). Of course, this reordering works properly only when the input channel layout is known. If not known, qaac uses the default guess, and it's always Microsoft order. You can use --chanmap and --chanmask to let qaac know the channel layout.
DSP chain is processed in the following order. As you can see, when matrix mixer and --chanmap is processed, channels are in Microsoft WAV order. You have to take it into account when you use these options.
- Delay
- Reordering to Microsoft order
- Matrix mixer
- Channel reordering with --chanmap
- Reordering to AAC order (AAC/ALAC)
- Sample rate conversion
- Lowpass filter
- Normalizing
- Gain adjustment
- Bits per sample conversion