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



348
349
350
# File 'docs/taglib/id3v2.rb', line 348

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"



352
353
354
# File 'docs/taglib/id3v2.rb', line 352

def language
  @language
end

#textString

Returns text.

Returns:

  • (String)

    text



355
356
357
# File 'docs/taglib/id3v2.rb', line 355

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)


360
361
362
# File 'docs/taglib/id3v2.rb', line 360

def text_encoding
  @text_encoding
end