Audio 18 band Superequalizer
Modify audio with an 18 band superequalizer, courtesy of the superequalizer filter.
# Make everything much more quiet
Show-Media -InputPath .\test.mp3 -SuperEqualizer @{(1..18)=-50}
# Make everything much more quiet
Show-Media -InputPath .\test.mp3 -SuperEqualizer @{
(7..18) = 3
} # Turn up the volume
Show-Media -InputPath .\test.mp3 -SuperEqualizer @{
1=1
2=2
3=3
4=4
5=5
6=6
} # Turn up the bass
If set, apply 18 band equalizer. The key can either by a number of a digit range. The value will be interpreted as the change in decibals for that band.
Type | Required | Position | PipelineInput |
---|---|---|---|
[IDictionary] |
true | 1 | false |
Extension/SuperEqualizer.RoughDraft.Extension.ps1 [-SuperEqualizer] <IDictionary> [<CommonParameters>]