videosphere
    Preparing search index...

    Metadata read from YouTube for a linked live broadcast and its underlying video.

    interface YouTubeLiveBroadcastPullMetadata {
        title: string;
        description: string;
        scheduledStartTime?: string;
        privacyStatus: "public" | "unlisted" | "private";
        lifeCycleStatus: string;
        madeForKids?: boolean;
        categoryId?: string;
        tags: string[];
        defaultAudioLanguage?: string;
        license?: "youtube" | "creativeCommon";
        embeddable?: boolean;
        thumbnailUrl?: string;
    }
    Index

    Properties

    title: string

    Broadcast title.

    description: string

    Broadcast description.

    scheduledStartTime?: string

    ISO 8601 scheduled start when set on YouTube.

    privacyStatus: "public" | "unlisted" | "private"

    Broadcast privacy mapped to VideoSphere visibility.

    lifeCycleStatus: string

    Raw liveBroadcasts.status.lifeCycleStatus.

    madeForKids?: boolean

    When set, from status.selfDeclaredMadeForKids.

    categoryId?: string

    Underlying video category id.

    tags: string[]

    Underlying video tags.

    defaultAudioLanguage?: string

    Underlying video stream language.

    license?: "youtube" | "creativeCommon"

    Underlying video license when recognized.

    embeddable?: boolean

    Underlying video embeddable flag when present.

    thumbnailUrl?: string

    Best available YouTube thumbnail URL for the underlying video.