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

    Interface AndroidApicFrame

    Encapsulates an attached picture.

    Android

    interface AndroidApicFrame {
        description?: string;
        frameType: "apic";
        id: string;
        metadataType: ID3;
        mimeType: string;
        pictureData: string;
        pictureType: number;
        platform: "android";
    }

    Hierarchy

    • AndroidId3FrameBase
      • AndroidApicFrame
    Index

    Properties

    description?: string
    frameType: "apic"
    id: string

    ID3 frame identifier.

    "TXXX"
    
    metadataType: ID3
    mimeType: string

    MIME type of the embedded image as stored in the APIC frame.

    "image/jpeg"
    
    pictureData: string

    Raw image data encoded as Base64 data with no data:...;base64, prefix.

    pictureType: number

    Picture type as defined by the ID3 specification.

    3 // front cover
    
    platform: "android"

    Platform discriminator for TypeScript type narrowing.