class Id3::V2::CommentFrame
- Id3::V2::CommentFrame
- Id3::V2::Frame
- Reference
- Object
Overview
SPEC(2.3, 2.4):
This frame is intended for any kind of full text information that does not fit in any other frame. It consists of a frame header followed by encoding, language and content descriptors and is ended with the actual comment as a text string. Newline characters are allowed in the comment text string. There may be more than one comment frame in each tag, but only one with the same language and content descriptor.
Included Modules
Defined in:
id3/v2/frames/comment_frame.crConstructors
Class Method Summary
Instance Method Summary
-
#==(other : self)
Returns
true
if this reference is the same as other. - #content : String
- #description : String
- #encoding : Encoding
-
#hash(hasher)
See
Object#hash(hasher)
- #language : String
Instance methods inherited from module Id3::V2::FrameWithContent
content : String
content
Instance methods inherited from class Id3::V2::Frame
==(other : self)
==,
body : Bytes
body,
compression_size : Int32 | Nil
compression_size,
encryption : UInt8 | Nil
encryption,
extra_flag_bytes : Int32
extra_flag_bytes,
flags : NewFlags | OldFlags | Nil
flags,
group : UInt8 | Nil
group,
hash(hasher)
hash,
id : String
id,
pretty_print(pp : PrettyPrint)
pretty_print,
size : Int32
size
Constructor methods inherited from class Id3::V2::Frame
new(id : String, version : Version, size : Int32, flags : Id3::V2::Frame::NewFlags | Id3::V2::Frame::OldFlags | Nil, raw_body)
new
Class methods inherited from class Id3::V2::Frame
from_id(id : String)
from_id,
read(r : Reader, version : Version)
read,
read_all(r : Reader, header : Header)
read_all,
valid_id?(id : String)
valid_id?
Constructor Detail
Class Method Detail
Instance Method Detail
def ==(other : self)
#
Description copied from class Reference
Returns true
if this reference is the same as other. Invokes same?
.