Class: TagLib::ID3v2::PrivateFrame

Inherits:
Frame
  • Object
show all
Defined in:
docs/taglib/id3v2.rb

Overview

Private frame (PRIV).

Instance Attribute Summary collapse

Attributes inherited from Frame

#frame_id

Method Summary

Methods inherited from Frame

#to_string

Instance Attribute Details

#databinary 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.

Returns:

  • (binary String)


216
217
218
# File 'docs/taglib/id3v2.rb', line 216

def data
  @data
end

#ownerString

Returns owner identifier.

Returns:

  • (String)

    owner identifier



219
220
221
# File 'docs/taglib/id3v2.rb', line 219

def owner
  @owner
end