Description
Toggles media using media keys when voice audio is detected
Import File
- voicedetect.sakurascripts.sb (2.6 KB)
Can be found on GitHub - sakuraspartner/VoiceDetectionScripts: Integrate OBS with Streamer Bot to detect sound and pause / resume content too.
Installation
In Streamer.bot click the Import
button in the top menu. Drag the .sb file into the Import String
field.
Configuration
OBS Configuration
Add the relevant OBS scene and sources to your OBS.
Step 1: Set Up the Scene and Source
Create a Scene:
In OBS, navigate to the Scenes section and click the “+” button to create a new scene. You can name it something like “VoiceDetectionScene”.
Add a Source:
In the Sources panel, add a new source (in this case, named “VoiceDetectedSource”). This could be a microphone, audio input, or any other media source you want to monitor for voice detection.
Ensure the source is visible and unlocked (as seen in the second image).
Source-Specific Filters:
In the VoiceDetectedSource filters panel. Add an effect filter (e.g., “IS_ACTIVE”). It can be anything, it will not be used as an effect, it will only be used to trigger.
Step 2: Apply Filters to the Source
Voice Detection Filters:
Open the filters for the Mic/Aux or your audio input by right-clicking on the source in the Sources panel and selecting Filters.
In the Audio Filters tab:
Move Transitions are a plugin, that can be downloaded here: Choose file… | OBS Forums
Add an Audio Move filter (called in my example “Voice Detected (Filter Enabler)”).
- Meter Type: Set to “Magnitude.”
- Easing: Adjust to your preference (90.00 is used in the screenshot).
- Action: Select “Filter Enable.”
- Source: Choose your VoiceDetectedSource (the source you added earlier).
- Filter: Select the filter (e.g., “IS_ACTIVE” as in the screenshot).
- Threshold Action: Set to “Enable Over and Disable Under.”
- Threshold: Adjust based on how sensitive you want the voice detection to be (0.58 is set in the example).
This filter will enable or disable based on the volume or activity level of the voice input.
Copy this filter and create a second Audio Move filter to control the visibility of the same source (in my example “Voice Detected (Filter Enabler)”).
Streamer Bot Configuration
Two actions are important for customization:
- VoiceSource: This will trigger when the enabled state of a source filter is changed (this is the reason for two filters in the audio). It will get the state of the source (you can change the name of the scene and source here if you like) and use the visibility of the source to determine what to do next.
- ToggleDetection: You can define a hotkey (or other trigger) to determine whether the system should be running. When pressed, it will also set the current state of your media playback to ON. This means, you should be watching the content you want to react to, before you press the hotkey. This will allow the detection to work correctly. Otherwise you might end up only playing content when you are talking.
Testing Phase Log
Version 1
- Added the code