Class: Id3Taginator::Frames::Text::OriginalArtistsFrame
- Inherits:
-
Id3v2Frame
- Object
- Id3v2Frame
- Id3Taginator::Frames::Text::OriginalArtistsFrame
- Includes:
- HasId
- Defined in:
- lib/id3taginator/frames/text/tope_original_artists_frame.rb
Constant Summary
Constants inherited from Id3v2Frame
Id3v2Frame::HEADER_SIZE_V_2, Id3v2Frame::HEADER_SIZE_V_3_4
Constants included from Extensions::Encodable
Extensions::Encodable::ISO8859_1, Extensions::Encodable::UNICODE_ZERO, Extensions::Encodable::UTF_16, Extensions::Encodable::UTF_16BE, Extensions::Encodable::UTF_8, Extensions::Encodable::ZERO
Instance Attribute Summary collapse
-
#original_artists ⇒ Object
Returns the value of attribute original_artists.
Attributes inherited from Id3v2Frame
Class Method Summary collapse
-
.build_frame(original_artists, options = nil, id3_version: 3) ⇒ Id3v2Frame
builds the original artists frame.
Instance Method Summary collapse
Methods included from HasId
#frame_info, included, #supported?
Methods inherited from Id3v2Frame
build_id3_flags, build_v2_frame, build_v3_frame, build_v4_frame, #compression?, #encryption?, #file_alter_preservation?, #frame_size, #group_identity?, #initialize, #re_calc_payload_size, #read_only?, #tag_alter_preservation?, #to_bytes
Methods included from Extensions::ArgumentCheck
#argument_between_num, #argument_boolean, #argument_exactly_chars, #argument_less_than_chars, #argument_more_than_chars, #argument_not_empty, #argument_not_nil, #argument_sym, included
Methods included from Extensions::Encodable
#decode, #decode_using_encoding_byte, #default_encoding_destination_byte, #encode, #encode_and_add_encoding_byte, #encode_string, #find_encoding, #find_encoding_byte, included, #merge, #pad_left, #pad_right, #read_stream_until, #remove_trailing_zeros, #zero_byte
Constructor Details
This class inherits a constructor from Id3Taginator::Frames::Id3v2Frame
Instance Attribute Details
#original_artists ⇒ Object
Returns the value of attribute original_artists.
11 12 13 |
# File 'lib/id3taginator/frames/text/tope_original_artists_frame.rb', line 11 def original_artists @original_artists end |
Class Method Details
.build_frame(original_artists, options = nil, id3_version: 3) ⇒ Id3v2Frame
builds the original artists frame
20 21 22 23 24 25 26 27 28 |
# File 'lib/id3taginator/frames/text/tope_original_artists_frame.rb', line 20 def self.build_frame(original_artists, = nil, id3_version: 3) supported?('TOPE', id3_version, ) argument_not_empty(original_artists, 'original_artists') frame = new(frame_id(id3_version, ), 0, build_id3_flags(id3_version), '') frame.original_artists = original_artists.is_a?(Array) ? original_artists : [original_artists] frame end |
Instance Method Details
#content_to_bytes ⇒ Object
35 36 37 38 39 |
# File 'lib/id3taginator/frames/text/tope_original_artists_frame.rb', line 35 def content_to_bytes @original_artists ||= ['[unset]'] content = @original_artists.join('/') encode_and_add_encoding_byte(content) end |
#process_content(content) ⇒ Object
30 31 32 33 |
# File 'lib/id3taginator/frames/text/tope_original_artists_frame.rb', line 30 def process_content(content) artists_str = decode_using_encoding_byte(content) @original_artists = artists_str.split('/').map(&:strip) end |