#!/usr/bin/env ruby

require "ogg/vorbis/tagger"

genre = ARGV.shift

ARGV.each do |file|
	Ogg::Vorbis::Tagger.open(file) do |t|
		t.comments["genre"] = genre
		t.write
	end
end
