Type Alias XtreamEpisodeInfo

XtreamEpisodeInfo: {
    air_date?: string;
    release_date: string | null;
    plot: string | null;
    rating: number;
    movie_image: string;
    cover_big: string;
    duration_secs: number;
    duration: string;
    tmdb_id: number;
    video?: XtreamVideoInfo;
    audio?: XtreamAudioInfo;
    bitrate: number;
    season: number;
}

Xtream episode information

This type represents the information about an episode in a show

Type declaration

  • Optionalair_date?: string

    The air date of the episode

  • release_date: string | null

    The release date of the episode

  • plot: string | null

    The plot of the episdoe

  • rating: number

    The rating of the episode

  • movie_image: string

    The image of the episode

  • cover_big: string

    The big cover of the episode

  • duration_secs: number

    The duration of the episode in seconds

  • duration: string

    The formatted duration of the episode

  • tmdb_id: number

    The id of the episode in The Movie Database

  • Optionalvideo?: XtreamVideoInfo

    The video information of the episode

  • Optionalaudio?: XtreamAudioInfo

    The audio information of the episode

  • bitrate: number

    The bitrate of the episode

  • season: number

    The season number of the episode