Το Squiso είναι ένα δωρεάν, ισχυρό εργαλείο αυτοματισμού που σας επιτρέπει να προσαρμόσετε τη ροή σας στο Twitch χρησιμοποιώντας απλά σενάρια.
Πώς να κάνετε σίγαση του μικροφώνου OBS Studio για 10 δευτερόλεπτα με πόντους καναλιού Twitch
Αυτό το παράδειγμα σεναρίου ακούει μια ανταμοιβή πόντων καναλιού Twitch και στη συνέχεια λέει στο OBS Studio να κάνει σίγαση του μικροφώνου σας για 10 δευτερόλεπτα.
Παράδειγμα σεναρίου
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 {
@Override
public void onTwitchChannelPointRedeem(OnTwitchChannelPointRedeemData data, API api) throws SquisoException {
// If the reward is "Mute my mic"
if (data.getRewardName().equals("Mute my mic")) {
// Compose a TTS message
SquisoString ttsMessageMuting = new SquisoString(data.getUserName() + " just muted the microphone for 10 seconds!");
// Play the TTS - all voices can be found here: https://www.squiso.com/voices/
api.speak("jkzmt8kn", ttsMessageMuting);
// Specify which OBS input we should mute
SquisoString inputName = new SquisoString("Mic/Aux");
// Mute the input
api.setOBSInputMuted(inputName, true);
// Specify the 10 seconds wait time (10 seconds is 10*1000=10000 milliseconds)
SquisoInteger waitDuration = new SquisoInteger(10 * 1000);
// Do this 10 seconds later
api.doLater(waitDuration, () -> {
// Unmute the input
api.setOBSInputMuted(inputName, false);
// Compose a new TS message
SquisoString ttsMessageUnmuted = new SquisoString("Hurray - The microphone enabled again!");
// Play the TTS - all voices can be found here: https://www.squiso.com/voices/
api.speak("jkzmt8kn", ttsMessageUnmuted);
});
}
}
}