#Removes Cue Sheets from .ape files (all it finds in its directory!) #NEED TO EDIT THIS!!! #Settings #--------------------- foobar_location = "\"" + "C:/Programme/foobar2000/foobar2000.exe" + "\"" #--------------------- #Remember, when trying to fix an error, to always reload info from files #(right click) because else Foobar's Database (->display) won't refelct the changes! threads = [] Dir["*.ape"].each{|ape| puts "Processing #{ape}" threads << Thread.new() { #put new cuesheet system("#{foobar_location} /tag:CUESHEET=;ALBUM=;ARTIST=;\"ALBUM ARTIST\"= \"#{ape}\"") } }