Method: ID3Tag::Tag#v1_frames

Defined in:
lib/id3tag/tag.rb

#v1_framesObject



79
80
81
82
83
84
85
# File 'lib/id3tag/tag.rb', line 79

def v1_frames
  if should_and_could_read_v1_frames?
    ID3V1FrameParser.new(audio_file.v1_tag_body).frames
  else
    []
  end
end