BMPId3Metadata
Objective-C
@interface BMPId3Metadata : BMPMetadata
Swift
class Id3Metadata : Metadata
Represents ID3 metadata found in the stream.
-
Indicates the start time of the metadata in seconds
Declaration
Objective-C
@property (nonatomic, readonly) NSTimeInterval startTime;Swift
var startTime: TimeInterval { get } -
Initializes an instance of BMPId3Metadata with a collection of metadata entries.
Declaration
Objective-C
- (nonnull instancetype)initWithEntries: (nonnull NSArray<id<BMPMetadataEntry>> *)entries startTime:(NSTimeInterval)startTime;Swift
init(entries: [MetadataEntry], startTime: TimeInterval)Parameters
entriesAn NSArray of BMPMetadataEntry.
startTimeThe start time of the ID3 Metadata.
Return Value
An instance of BMPId3Metadata.
BMPId3Metadata Class Reference