mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2024-11-15 18:50:47 +00:00
example in readme and main.rb refactored
code style badge changed to standard
This commit is contained in:
parent
73ae24eb4b
commit
5f08b97759
15
README.md
15
README.md
@ -1,6 +1,6 @@
|
|||||||
[![Gem Version](https://badge.fury.io/rb/obsws.svg)](https://badge.fury.io/rb/obsws)
|
[![Gem Version](https://badge.fury.io/rb/obsws.svg)](https://badge.fury.io/rb/obsws)
|
||||||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/onyx-and-iris/obsws-ruby/blob/dev/LICENSE)
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/onyx-and-iris/obsws-ruby/blob/dev/LICENSE)
|
||||||
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/plugin-ruby)
|
[![Ruby Code Style](https://img.shields.io/badge/code_style-standard-violet.svg)](https://github.com/standardrb/standard)
|
||||||
|
|
||||||
# A Ruby wrapper around OBS Studio WebSocket v5.0
|
# A Ruby wrapper around OBS Studio WebSocket v5.0
|
||||||
|
|
||||||
@ -34,16 +34,11 @@ pass `host`, `port` and `password` as keyword arguments.
|
|||||||
require "obsws"
|
require "obsws"
|
||||||
|
|
||||||
def main
|
def main
|
||||||
r_client =
|
OBSWS::Requests::Client
|
||||||
OBSWS::Requests::Client.new(
|
.new(host: "localhost", port: 4455, password: "strongpassword")
|
||||||
host: "localhost",
|
.run do |client|
|
||||||
port: 4455,
|
|
||||||
password: "strongpassword"
|
|
||||||
)
|
|
||||||
|
|
||||||
r_client.run do
|
|
||||||
# Toggle the mute state of your Mic input
|
# Toggle the mute state of your Mic input
|
||||||
r_client.toggle_input_mute("Mic/Aux")
|
client.toggle_input_mute("Mic/Aux")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
7
main.rb
7
main.rb
@ -1,16 +1,13 @@
|
|||||||
require_relative "lib/obsws"
|
require_relative "lib/obsws"
|
||||||
|
|
||||||
def main
|
def main
|
||||||
r_client =
|
|
||||||
OBSWS::Requests::Client.new(
|
OBSWS::Requests::Client.new(
|
||||||
host: "localhost",
|
host: "localhost",
|
||||||
port: 4455,
|
port: 4455,
|
||||||
password: "strongpassword"
|
password: "strongpassword"
|
||||||
)
|
).run do |client|
|
||||||
|
|
||||||
r_client.run do
|
|
||||||
# Toggle the mute state of your Mic input
|
# Toggle the mute state of your Mic input
|
||||||
r_client.toggle_input_mute("Mic/Aux")
|
client.toggle_input_mute("Mic/Aux")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user