Class: TagLib::MP4::Tag

Inherits:
Tag
  • Object
show all
Defined in:
docs/taglib/mp4.rb

Instance Attribute Summary

Attributes inherited from Tag

#album, #artist, #comment, #genre, #title, #track, #year

Instance Method Summary collapse

Methods inherited from Tag

#empty?

Instance Method Details

#[](key) ⇒ TagLib::MP4::Item

Returns The Item associated to key (will be invalid in key does not exists).

Returns:

  • (TagLib::MP4::Item)

    The Item associated to key (will be invalid in key does not exists).

Since:

  • 1.0.0



102
103
# File 'docs/taglib/mp4.rb', line 102

def [](key)
end

#[]=(key, value) ⇒ nil

Associate the value Item to key, overwriting any previous value.

Parameters:

Returns:

  • (nil)

Since:

  • 1.0.0



111
112
# File 'docs/taglib/mp4.rb', line 111

def []=(key, value)
end

#contains(key) ⇒ Object

Returns True if the tag has an entry for key, false otherwise.

Returns:

  • True if the tag has an entry for key, false otherwise.

Since:

  • 1.0.0



124
125
# File 'docs/taglib/mp4.rb', line 124

def contains(key)
end

#item_mapTagLib::MP4::ItemMap

Returns The map containing all the items in the tag.

Returns:

Since:

  • 1.0.0



96
97
# File 'docs/taglib/mp4.rb', line 96

def item_map
end

#remove_item(key) ⇒ nil

Remove the [TagLib::MP4::Item] associated to key.

Returns:

  • (nil)

Since:

  • 1.0.0



118
119
# File 'docs/taglib/mp4.rb', line 118

def remove_item(key)
end