Class: EasyTag::Interfaces::MP3

Inherits:
Base
  • Object
show all
Defined in:
lib/easytag/interfaces/mp3.rb

Constant Summary collapse

ATTRIB_ARGS =
EasyTag::Attributes::MP3_ATTRIB_ARGS
ATTRIB_CLASS =
EasyTag::Attributes::MP3Attribute

Instance Attribute Summary

Attributes inherited from Base

#interface

Instance Method Summary collapse

Methods inherited from Base

build_proxy_methods, #proxy_getter

Constructor Details

#initialize(file) ⇒ MP3

Returns a new instance of MP3.



11
12
13
14
15
# File 'lib/easytag/interfaces/mp3.rb', line 11

def initialize(file)
  @info = TagLib::MPEG::File.new(file)

  add_tdat_to_taglib(file)
end