# File lib/mp3info.rb, line 377
  def audio_content
    pos = 0
    length = File.size(@filename)
    if hastag1?
      length -= TAG1_SIZE
    end
    if hastag2?
      pos = @tag2.io_position
      length -= @tag2.io_position
    end
    [pos, length]
  end