Class: ID3Tag::Frames::V1::CommentsFrame
- Inherits:
-
TextFrame
- Object
- TextFrame
- ID3Tag::Frames::V1::CommentsFrame
show all
- Defined in:
- lib/id3tag/frames/v1/comments_frame.rb
Instance Attribute Summary
Attributes inherited from TextFrame
#id
Instance Method Summary
collapse
Methods inherited from TextFrame
#initialize
Instance Method Details
#content ⇒ Object
17
18
19
|
# File 'lib/id3tag/frames/v1/comments_frame.rb', line 17
def content
@content.encode(destination_encoding, source_encoding)
end
|
#desciption ⇒ Object
9
10
11
|
# File 'lib/id3tag/frames/v1/comments_frame.rb', line 9
def desciption
'unknown'
end
|
#language ⇒ Object
5
6
7
|
# File 'lib/id3tag/frames/v1/comments_frame.rb', line 5
def language
'unknown'
end
|
#text ⇒ Object
13
14
15
|
# File 'lib/id3tag/frames/v1/comments_frame.rb', line 13
def text
content
end
|