Class: TagLib::MP4::Tag
Instance Attribute Summary
Attributes inherited from Tag
#album, #artist, #comment, #genre, #title, #track, #year
Instance Method Summary collapse
-
#[](key) ⇒ TagLib::MP4::Item
The Item associated to
key(will be invalid inkeydoes not exists). -
#[]=(key, value) ⇒ nil
Associate the
valueItem tokey, overwriting any previous value. -
#contains(key) ⇒ Object
True if the tag has an entry for
key, false otherwise. -
#item_map ⇒ TagLib::MP4::ItemMap
The map containing all the items in the tag.
-
#remove_item(key) ⇒ nil
Remove the [TagLib::MP4::Item] associated to
key.
Methods inherited from Tag
Instance Method Details
#[](key) ⇒ TagLib::MP4::Item
Returns The Item associated to key (will be invalid in key does not exists).
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.
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.
124 125 |
# File 'docs/taglib/mp4.rb', line 124 def contains(key) end |
#item_map ⇒ TagLib::MP4::ItemMap
Returns The map containing all the items in the tag.
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.
118 119 |
# File 'docs/taglib/mp4.rb', line 118 def remove_item(key) end |