Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created February 15, 2010 22:56
Show Gist options
  • Save rogeriopvl/305074 to your computer and use it in GitHub Desktop.
Save rogeriopvl/305074 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'tinyscrobbler'
begin
ls = Tinyscrobbler::Client.new(username, password)
rescue Exception => e
puts 'Error: unable to start last fm scrobbler.'
end
track_list = [
{'artistname' => 'Khold', 'track' => 'Døde Fuglers Sang',
'time' => '', 'source' => 'P', 'rating' => '',
'secs' => '247', 'album' => 'Khold', 'tracknumber' => '9', 'mbtrackid' => ''},
{'artistname' => 'Emperor', 'track' => 'Depraved',
'time' => '', 'source' => 'P', 'rating' => '',
'secs' => '257', 'album' => 'Prometheus - The Discipline of Fire and Demise', 'tracknumber' => '2', 'mbtrackid' => ''}
]
track_list.each do |track|
track['time'] = Time.now.to_i.to_s
ls.now_playing(track)
sleep track['secs'].to_i/2
ls.played(track)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment