Bitmovin Player React Native SDK - v1.7.0
    Preparing search index...

    Interface IosId3Frame

    iOS representation of ID3 metadata items.

    iOS, tvOS

    interface IosId3Frame {
        duration?: number;
        extendedLanguageTag?: string;
        extraAttributes?: Record<string, unknown>;
        id?: string;
        metadataType: ID3;
        platform: "ios";
        rawValue?: IosMetadataValue;
        relativeTimeRange?: TimeRange<number>;
        value?: string;
    }
    Index

    Properties

    duration?: number

    The duration of the metadata item in seconds.

    extendedLanguageTag?: string

    The IETF BCP 47 language identifier of the metadata item.

    extraAttributes?: Record<string, unknown>

    Additional attributes attached to the metadata item.

    id?: string

    ID3 frame identifier.

    "TXXX"
    
    metadataType: ID3
    platform: "ios"

    Platform discriminator for TypeScript type narrowing.

    rawValue?: IosMetadataValue

    Full typed representation of the underlying value as reported by iOS.

    relativeTimeRange?: TimeRange<number>

    Time range of the entry relative to the beginning of the playback, in seconds.

    value?: string

    String representation of the metadata value.

    The underlying value is first interpreted as the most appropriate type (date, number, text, or binary data) and then converted to a string.

    • Dates are formatted as ISO 8601 strings (e.g. "2025-12-02T00:00:00Z").
    • Binary data is encoded as a Base64 with no data:...;base64, prefix.

    This will be undefined if the value cannot be interpreted.