mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2026-04-18 05:23:32 +00:00
initial commit
This commit is contained in:
17
main.rb
Normal file
17
main.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
require_relative "lib/obsws"
|
||||
|
||||
def main
|
||||
r_client =
|
||||
OBSWS::Requests::Client.new(
|
||||
host: "localhost",
|
||||
port: 4455,
|
||||
password: "strongpassword"
|
||||
)
|
||||
|
||||
r_client.run do
|
||||
# Toggle the mute state of your Mic input
|
||||
r_client.toggle_input_mute("Mic/Aux")
|
||||
end
|
||||
end
|
||||
|
||||
main if $0 == __FILE__
|
||||
Reference in New Issue
Block a user