mirror of
https://github.com/onyx-and-iris/obsws-ruby.git
synced 2025-01-18 05:20:47 +00:00
scene rotate example added
This commit is contained in:
parent
fb162ca195
commit
8752132012
9
examples/scene_rotate/Gemfile
Normal file
9
examples/scene_rotate/Gemfile
Normal file
@ -0,0 +1,9 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
# gem "rails"
|
||||
|
||||
gem "obsws", path: "../.."
|
||||
|
||||
gem "perfect_toml", "~> 0.9.0"
|
27
examples/scene_rotate/Gemfile.lock
Normal file
27
examples/scene_rotate/Gemfile.lock
Normal file
@ -0,0 +1,27 @@
|
||||
PATH
|
||||
remote: ../..
|
||||
specs:
|
||||
obsws (0.0.3)
|
||||
observer (~> 0.1.1)
|
||||
waitutil (~> 0.2.1)
|
||||
websocket-driver (~> 0.7.5)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
observer (0.1.1)
|
||||
perfect_toml (0.9.0)
|
||||
waitutil (0.2.1)
|
||||
websocket-driver (0.7.5)
|
||||
websocket-extensions (>= 0.1.0)
|
||||
websocket-extensions (0.1.5)
|
||||
|
||||
PLATFORMS
|
||||
x64-mingw-ucrt
|
||||
|
||||
DEPENDENCIES
|
||||
obsws!
|
||||
perfect_toml (~> 0.9.0)
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.22
|
22
examples/scene_rotate/main.rb
Normal file
22
examples/scene_rotate/main.rb
Normal file
@ -0,0 +1,22 @@
|
||||
require "obsws"
|
||||
require "perfect_toml"
|
||||
|
||||
OBSWS::LOGGER.info!
|
||||
|
||||
def conn_from_toml
|
||||
PerfectTOML.load_file("obs.toml", symbolize_names: true)[:connection]
|
||||
end
|
||||
|
||||
def main
|
||||
r_client = OBSWS::Requests::Client.new(**conn_from_toml)
|
||||
r_client.run do
|
||||
resp = r_client.get_scene_list
|
||||
resp.scenes.reverse.each do |s|
|
||||
puts "Switching to scene #{s[:sceneName]}"
|
||||
r_client.set_current_program_scene(s[:sceneName])
|
||||
sleep(0.5)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
main if $0 == __FILE__
|
Loading…
Reference in New Issue
Block a user