Squiso är ett gratis, kraftfullt automatiseringsverktyg som låter dig anpassa din Twitch-ström med enkla skript.

How to Display the Number of Twitch Channel Followers in OBS Studio

This script example fetches the number of Twitch followers you have and writes it to a file every 15 minutes, which then can be displayed in OBS Studio using a Text Source in a Scene.

Manusexempel

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 onEveryMinute(OnEveryMinuteData data, API api) throws SquisoException { // Do this every 15 minutes if (data.is(15)) { // Get the number of followers SquisoInteger nbrOfFollowers = api.getTwitchChannelFollowers().size(); // Compose the contents of the file SquisoString contents = new SquisoString("Number of followers: " + nbrOfFollowers); // Write the file with the contents contents.writeToFile("followers.txt"); } } }