ID3FrameRecordingHourMinute

public class ID3FrameRecordingHourMinute : ID3Frame, CustomDebugStringConvertible

A class used to represent an ID3 recording hour minute frame to be used in the ID3 tag. Valid only for ID3 tag version 2.3 and 2.2.

  • Recording hour of the song.

    Declaration

    Swift

    public let hour: Int?
  • Recording seconds of the song.

    Declaration

    Swift

    public let minute: Int?
  • ID3FrameRecordingHourMinute description, useful for debug.

    Declaration

    Swift

    public var debugDescription: String { get }
  • Init an ID3 recording hour minute frame.

    Declaration

    Swift

    public init(hour: Int?, minute: Int?)

    Parameters

    hour

    the recording hour of the song.

    minute

    the recording minute of the song.