This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import obsws_python as obs | |
def on_record_state_changed(data): | |
"""The state of the record output has changed.""" | |
print(f"Current record state: {data.output_state}") | |
if data.output_state == "OBS_WEBSOCKET_OUTPUT_STARTED": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# MIT License | |
# | |
# Copyright (c) 2025 Onyx and Iris | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import logging | |
from collections import namedtuple | |
import voicemeeterlib | |
from pyslobs import ScenesService, config_from_ini_else_stdin, connection | |
class Observer: | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Include VMR.ahk | |
vm := new VMR().login() | |
vol := 0.5 | |
vm.strip[6].AppGain := Format("(""Spotify"", {:.1f})", vol) | |
^a:: | |
vol -= 0.1 | |
vm.strip[6].AppGain := Format("(""Spotify"", {:.1f})", vol) | |
return |
NewerOlder