Class: TagLib::ID3v2::CommentsFrame

Inherits:
Frame
  • Object
show all
Defined in:
docs/taglib/id3v2.rb

Overview

Comments frame (COMM) for full text information that doesn't fit in any other frame.

Instance Attribute Summary collapse

Attributes inherited from Frame

#frame_id

Method Summary

Methods inherited from Frame

#to_string

Instance Attribute Details

#descriptionString

Returns content description, which together with language should be unique per tag.

Returns:

  • (String)

    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

#languageString

Returns alpha-3 language code of text (ISO-639-2), e.g. "eng".

Returns:

  • (String)

    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

#textString

Returns the actual comment text.

Returns:

  • (String)

    the actual comment text



263
264
265
# File 'docs/taglib/id3v2.rb', line 263

def text
  @text
end

#text_encodingTagLib::String constant

Encoding for storing the text in the tag, e.g. TagLib::String::UTF8. See the section String Encodings in TagLib.

Returns:

  • (TagLib::String constant)


268
269
270
# File 'docs/taglib/id3v2.rb', line 268

def text_encoding
  @text_encoding
end