# File lib/mp3info.rb, line 463 def to_s s = "MPEG #{@mpeg_version} Layer #{@layer} #{@vbr ? "VBR" : "CBR"} #{@bitrate} Kbps #{@channel_mode} #{@samplerate} Hz length #{@length} sec. error protection #{@error_protection} " s << "tag1: "+@tag1.inspect+"\n" if @hastag1 s << "tag2: "+@tag2.inspect+"\n" if @hastag2 s end