example in readme and main.rb refactored

code style badge changed to standard
This commit is contained in:
2023-07-19 15:14:28 +01:00
parent 73ae24eb4b
commit 5f08b97759
2 changed files with 16 additions and 24 deletions

11
main.rb
View File

@@ -1,17 +1,14 @@
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
).run do |client|
# Toggle the mute state of your Mic input
client.toggle_input_mute("Mic/Aux")
end
end
main if $0 == __FILE__