Class: TagLib::ID3v2::UnsynchronizedLyricsFrame
- Defined in:
- docs/taglib/id3v2.rb
Overview
Unsynchronized lyrics frame (USLT
).
Instance Attribute Summary collapse
-
#description ⇒ String
Frame description.
-
#language ⇒ String
Alpha-3 language code of text (ISO-639-2), e.g.
-
#text ⇒ String
Text.
-
#text_encoding ⇒ String
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 frame description.
460 461 462 |
# File 'docs/taglib/id3v2.rb', line 460 def description @description end |
#language ⇒ String
Returns 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 |
#text ⇒ String
Returns text.
467 468 469 |
# File 'docs/taglib/id3v2.rb', line 467 def text @text end |
#text_encoding ⇒ String
Encoding for storing the text in the tag, e.g.
TagLib::String::UTF8
. See the section String Encodings in
TagLib.
472 473 474 |
# File 'docs/taglib/id3v2.rb', line 472 def text_encoding @text_encoding end |