Class: TagLib::ID3v2::CommentsFrame
Overview
Comments frame (COMM
) for full text information that doesn't fit in
any other frame.
Instance Attribute Summary collapse
-
#description ⇒ String
Content description, which together with language should be unique per tag.
-
#language ⇒ String
Alpha-3 language code of text (ISO-639-2), e.g.
-
#text ⇒ String
The actual comment text.
-
#text_encoding ⇒ TagLib::String constant
Encoding for storing the text in the tag, e.g.
TagLib::String::UTF8
. See the section String Encodings in TagLib.
Attributes inherited from Frame
Method Summary
Methods inherited from Frame
Instance Attribute Details
#description ⇒ String
Returns content description, which together with language should be unique per tag.
256 257 258 |
# File 'docs/taglib/id3v2.rb', line 256 def description @description end |
#language ⇒ String
Returns alpha-3 language code of text (ISO-639-2), e.g. "eng".
260 261 262 |
# File 'docs/taglib/id3v2.rb', line 260 def language @language end |
#text ⇒ String
Returns the actual comment text.
263 264 265 |
# File 'docs/taglib/id3v2.rb', line 263 def text @text end |
#text_encoding ⇒ TagLib::String constant
Encoding for storing the text in the tag, e.g.
TagLib::String::UTF8
. See the section String Encodings in
TagLib.
268 269 270 |
# File 'docs/taglib/id3v2.rb', line 268 def text_encoding @text_encoding end |