Class: TagLib::ID3v2::UnsynchronizedLyricsFrame

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

Overview

Unsynchronized lyrics frame (USLT).

Instance Attribute Summary collapse

Attributes inherited from Frame

#frame_id

Method Summary

Methods inherited from Frame

#to_string

Instance Attribute Details

#descriptionString

Returns frame description.

Returns:

  • (String)

    frame description



460
461
462
# File 'docs/taglib/id3v2.rb', line 460

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"



464
465
466
# File 'docs/taglib/id3v2.rb', line 464

def language
  @language
end

#textString

Returns text.

Returns:

  • (String)

    text



467
468
469
# File 'docs/taglib/id3v2.rb', line 467

def text
  @text
end

#text_encodingString

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

Returns:

  • (String)


472
473
474
# File 'docs/taglib/id3v2.rb', line 472

def text_encoding
  @text_encoding
end