Class: TagLib::ID3v2::PrivateFrame
Overview
Private frame (PRIV
).
Instance Attribute Summary collapse
-
#data ⇒ binary String
Binary data string.
Be sure to use a binary string when setting this attribute. In Ruby 1.9, this means reading from a file with
"b"
mode to get a string with encodingBINARY
/ASCII-8BIT
. -
#owner ⇒ String
Owner identifier.
Attributes inherited from Frame
Method Summary
Methods inherited from Frame
Instance Attribute Details
#data ⇒ binary String
Binary data string.
Be sure to use a binary string when setting this attribute. In
Ruby 1.9, this means reading from a file with "b"
mode to get a
string with encoding BINARY
/ ASCII-8BIT
.
314 315 316 |
# File 'docs/taglib/id3v2.rb', line 314 def data @data end |
#owner ⇒ String
Returns owner identifier.
317 318 319 |
# File 'docs/taglib/id3v2.rb', line 317 def owner @owner end |