move speaker EQ into its own variable

This commit is contained in:
Connor Olding 2019-09-04 12:14:21 +02:00
parent d07adaf621
commit 1f7e213661
1 changed files with 2 additions and 7 deletions

View File

@ -12,6 +12,7 @@ _M_KILL="$_M_PRE_EMPH,$_M_COMPRESS,$_M_POST_EMPH"
_M_MULTI="volume=10,mcompand=0.256\,2.56 9 -90/-90\,-44/-44\,0/-26.4\,20/0 80 0 -44 0 | 0.128\,1.28 9 -90/-90\,-36/-36\,0/-18\,20/0 160 0 -36 0 | 0.064\,0.64 9 -90/-90\,-37/-37\,0/-18.5\,20/0 320 0 -37 0 | 0.032\,0.32 9 -90/-90\,-38/-38\,0/-19\,20/0 640 0 -38 0 | 0.016\,0.16 9 -90/-90\,-40/-40\,0/-20\,20/0 1280 0 -40 0 | 0.008\,0.08 9 -90/-90\,-41/-41\,0/-20.5\,20/0 2560 0 -41 0 | 0.004\,0.04 9 -90/-90\,-44/-44\,0/-22\,20/0 5120 0 -44 0 | 0.002\,0.02 9 -90/-90\,-52/-52\,0/-26\,20/0 10240 0 -52 0 | 0.001\,0.01 9 -90/-90\,-60/-60\,0/-36\,20/0 20480 0 -60 0"
_M_MULTI2="volume=10,mcompand=0.25600\,5.12000 9.0 -90/-90\,-46.0/-46.0\,0/-18.9\,20/0 62.9 0.0 -46.0 0.0 | 0.12800\,2.56000 9.0 -90/-90\,-34.0/-34.0\,0/-9.7\,20/0 141.1 0.0 -34.0 0.0 | 0.06400\,1.28000 9.0 -90/-90\,-37.0/-37.0\,0/-10.6\,20/0 316.8 0.0 -37.0 0.0 | 0.03200\,0.64000 9.0 -90/-90\,-39.0/-39.0\,0/-11.1\,20/0 711.2 0.0 -39.0 0.0 | 0.01600\,0.32000 9.0 -90/-90\,-41.0/-41.0\,0/-11.7\,20/0 1596.0 0.0 -41.0 0.0 | 0.00800\,0.16000 9.0 -90/-90\,-46.0/-46.0\,0/-13.1\,20/0 3584.0 0.0 -46.0 0.0 | 0.00400\,0.08000 9.0 -90/-90\,-49.0/-49.0\,0/-14.0\,20/0 8046.0 0.0 -49.0 0.0 | 0.00200\,0.04000 9.0 -90/-90\,-58.0/-58.0\,0/-23.9\,20/0 18062.0 0.0 -58.0 0.0"
_M_INSANE="$_M_PRE_EMPH,acompressor=threshold=0.001:ratio=2:attack=1000:release=9000:makeup=3:knee=6:mix=0.5,acompressor=threshold=0.002:ratio=2:attack=320:release=2880:makeup=3:knee=6:mix=0.5,acompressor=threshold=0.004:ratio=2:attack=100:release=900:makeup=3:knee=6:mix=0.5,acompressor=threshold=0.008:ratio=2:attack=32:release=288:makeup=3:knee=6:mix=0.5,acompressor=threshold=0.016:ratio=2:attack=10:release=90:makeup=3:knee=6:mix=0.5,$_M_POST_EMPH,alimiter"
_M_NEO="equalizer=700:o:1.3:-5,equalizer=1200:o:1.3:-3,equalizer=1090:o:0.5:-5,equalizer=970:o:1.2:-10,equalizer=4100:o:0.3:-6"
getladspa() {
REPLY=volume
@ -34,13 +35,7 @@ if [[ "$_nn" == spectre ]]; then
fi
if [[ "$_nn" == neobanshee ]]; then
speakers() {
_M_PROCESS="highpass=311,$_M_KILL,\
equalizer=700:o:1.3:-5,\
equalizer=1200:o:1.3:-3,\
equalizer=1090:o:0.5:-5,\
equalizer=970:o:1.2:-10,\
equalizer=4100:o:0.3:-6,\
alimiter=level_in=2"
_M_PROCESS="highpass=311,$_M_KILL,$_M_NEO,alimiter=level_in=2"
}
speakers
fi