class AudioStream::AudioOutput

Public Class Methods

device(soundinfo:) click to toggle source
# File lib/audio_stream/audio_output.rb, line 12
def self.device(soundinfo:)
  AudioOutputDevice.default_device(soundinfo: soundinfo)
end
file(fname, soundinfo:) click to toggle source
# File lib/audio_stream/audio_output.rb, line 8
def self.file(fname, soundinfo:)
  AudioOutputFile.new(fname, soundinfo: soundinfo)
end
new() click to toggle source
Calls superclass method AudioStream::AudioBus::new
# File lib/audio_stream/audio_output.rb, line 4
def initialize
  super()
end