Squiso는 간단한 스크립트를 사용하여 Twitch 스트림을 사용자 정의할 수 있는 무료의 강력한 자동화 도구입니다.

Obs Studio에서 BRB 장면에서 마이크를 자동으로 음소거하는 방법

이 스크립트 예제는 OBS Studio에서 장면을 변경할 때를 수신하고 특정 장면 이름에 따라 마이크를 음소거하거나 음소거를 해제합니다.

스크립트 예제

import com.squiso.*; import com.squiso.exception.*; import com.squiso.scripting.*; import com.squiso.scripting.data.*; import com.squiso.keyboard.*; import com.squiso.twitch.*; import com.squiso.datatypes.*; import com.squiso.utils.*; // Important - Please do not change the row below - otherwise you will get a compilation error! public class Script_Example extends SquisoScript { // The name of the microphone we should mute and unmute SquisoString inputName = new SquisoString("Mic/Aux"); @Override public void onOBSSceneChanged(OnOBSSceneChangedData data, API api) throws SquisoException { // If the new scene is "BRB" if (data.getSceneName().equals("BRB")) { // Mute the microphone api.setOBSInputMuted(inputName, true); } // If the new scene is "Gaming" if (data.getSceneName().equals("Gaming")) { // Unmute the microphone api.setOBSInputMuted(inputName, false); } } }