Open a source's filter list with a keyboard shortcut. For example, press Q to jump straight to the delay and other effects on your microphone.
- In OBS, go to Tools → Scripts.
- Click + and add
scripts/open_filters_hotkey.lua. - Right-click the source you want (e.g. your mic) → Filters.
- Click + under Audio/Video Filters and add Open Filters Hotkey.
- Open File → Settings → Hotkeys and search for Open Filters.
- Bind a key (e.g. Q) to the entry for that source.
- Press the hotkey anytime to open that source's filters window.
The compiled plugin provides the same behavior with better integration. Filter names appear as Open Filters Hotkey in the filter list.
Every push to master triggers a GitHub Actions build. Download the latest native plugin from either:
- Nightly release — Windows
.zip(and Linux/macOS when those builds succeed) - Actions → latest workflow run → Artifacts — platform-specific packages
Install on Windows:
- Download
obs-filters-hotkey-*-windows-x64.zipfrom the nightly release. - Extract and copy
obs-filters-hotkey.dllto%ProgramFiles%\obs-studio\obs-plugins\64bit\ - Copy the
obs-filters-hotkeyfolder to%ProgramFiles%\obs-studio\data\obs-plugins\obs-filters-hotkey\ - Restart OBS.
Requires CMake 3.28+ and Visual Studio 2022.
cmake --preset windows-x64
cmake --build build_x64 --config RelWithDebInfoThe built plugin is copied into the project's build_x64/rundir/RelWithDebInfo/obs-plugins/ folder. Copy obs-filters-hotkey.dll and the obs-filters-hotkey data folder into your OBS install:
%ProgramFiles%\obs-studio\obs-plugins\64bit\%ProgramFiles%\obs-studio\data\obs-plugins\obs-filters-hotkey\
cmake --preset macos # or ubuntu-x86_64
cmake --build build_macos --config RelWithDebInfoSee the OBS plugin template wiki for full setup details.
- Add the Open Filters Hotkey filter to any audio or video source.
- Assign a hotkey in Settings → Hotkeys (search for "Open Filters").
- Press the hotkey to open that source's filter dialog.
The filter is a pass-through — it does not modify audio or video. You can add one instance per source; each gets its own hotkey binding.
OBS has no public API to open a specific filter's settings panel, but VST 2.x filters expose an Open Plug-In Interface button that can be triggered programmatically.
- Add Open Filters Hotkey to your source (e.g. mic).
- In the filter settings, set Open target to VST plugin interface.
- If you have multiple VST filters on the same source, enter the filter's display name under Filter name.
- Bind your hotkey in Settings → Hotkeys.
Pressing the hotkey opens the VST GUI directly — no need to navigate the filters window first. If no matching VST filter is found, it falls back to opening the filters window.
Note: The VST must already be loaded (a plugin selected in the VST filter dropdown). This works with OBS's built-in VST 2.x Plug-in filter only, not VST3 hosts like atkAudio.
| Source | Hotkey | Action |
|---|---|---|
| Mic/Aux | Q | Opens mic filters (Delay, etc.) |
| Webcam | F | Opens webcam filters |
GPL v2 — same as OBS Studio.