Type Alias XtreamMovieInfo

XtreamMovieInfo: {
    kinopoisk_url: string;
    tmdb_id: number;
    name: string;
    o_name: string;
    cover_big: string;
    movie_image: string;
    release_date: string | null;
    episode_run_time: number | null;
    youtube_trailer: string | null;
    director: string | null;
    actors: string | null;
    cast: string | null;
    description: string | null;
    plot: string | null;
    age: string;
    mpaa_rating: string;
    rating_count_kinopoisk: number;
    country: string;
    genre: string | null;
    backdrop_path: string[];
    duration_secs: number;
    duration: string;
    bitrate: number;
    releasedate: string | null;
    subtitles: string[];
    rating: number;
}

Xtream movie information

This type represents the technical details of a movie stream

Type declaration

  • kinopoisk_url: string

    The URL to the movie's Kinopoisk page

  • tmdb_id: number

    The ID of the movie in The Movie Database (TMDB)

  • name: string

    The title of the movie

  • o_name: string

    The original title of the movie

  • cover_big: string

    The URL for the movie's cover image

  • movie_image: string

    The URL for the movie's image

  • release_date: string | null

    The release date of the movie

  • episode_run_time: number | null

    The runtime of the movie in minutes

  • youtube_trailer: string | null

    The YouTube ID or URL for the trailer

  • director: string | null

    The director(s) of the movie

  • actors: string | null

    The actors in the movie

  • cast: string | null

    The cast of the movie

  • description: string | null

    The synopsis/description of the movie

  • plot: string | null

    The plot of the movie

  • age: string

    The age rating of the movie

  • mpaa_rating: string

    The MPAA rating of the movie

  • rating_count_kinopoisk: number

    The number of ratings on Kinopoisk

  • country: string

    The country of origin for the movie

  • genre: string | null

    The genre(s) of the movie

  • backdrop_path: string[]

    Array of backdrop image URLs

  • duration_secs: number

    The duration of the movie in seconds

  • duration: string

    The formatted duration of the movie

  • bitrate: number

    The bitrate of the movie

  • releasedate: string | null

    The release date of the movie

  • subtitles: string[]

    Array of available subtitles

  • rating: number

    The rating of the movie