Standard escape codes are prefixed with Escape:
- Ctrl-Key: ^[
- Octal: \033
- Unicode: \u001b
- Hexadecimal: \x1B
- Decimal: 27
| # ~/.config/mpv/input.conf | |
| - af toggle "lavfi=[pan=1c|c0=0.5*c0+0.5*c1]" ; show-text "Audio mix set to Mono" | |
| = af toggle "lavfi=[alimiter=10:1:1:5:8000]" ; show-text "Audio limiter enabled" | |
| Ctrl+= af toggle "acompressor=ratio=4,loudnorm" ; show-text "dynamic range compression enabled" | |
| Ctrl+0 af toggle "pan=stereo|FL=FC+0.30*FL+0.30*FLC+0.30*BL+0.30*SL+0.60*LFE|FR=FC+0.30*FR+0.30*FRC+0.30*BR+0.30*SR+0.60*LFE" ; show-text "Audio night-mode enabled" |