Sha256: 389e9d0cc676696dcd158c1293dcfb975ae63998d8b94740b7f5acffa912812b
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
require 'open3' class Mpg321 attr_reader :volume def initialize @volume = 50 @music_input, @stdout, @stderr, _thread = Open3.popen3("mpg321 -R mpg321_ruby") handle_stderr handle_stdout send_volume end def pause @music_input.puts "P" end def stop @music_input.puts "S" end def play song_list @song_list = song_list if song_list.class == Array @list = true play_song @song_list.shift else @list = false play_song song_list end end def volume_up volume @volume += volume @volume = [@volume, 100].min send_volume end def volume_down volume @volume -= volume @volume = [@volume, 0].max send_volume end def volume= volume if volume < 0 @volume = 0 elsif volume > 100 @volume = 100 else @volume = volume end send_volume end private def play_song song @music_input.puts "L #{song}" end def send_volume @music_input.puts "G #{@volume}" end def handle_stderr Thread.new { loop do @stderr.readline end } end def handle_stdout Thread.new do loop do line = @stdout.readline #Not sure how to test this yet if @list && line.match(/@P 3/) play @song_list end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mpg321-0.2.0 | lib/mpg321.rb |