diff --git a/README.md b/README.md index 42aca42..6b3b1a0 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,14 @@ Alternate Text -Sync plex watchlists in realtime with Sonarr and Radarr. **Requires Plex Pass** - -**Requires Sonarr v4** +Sync plex watchlists in realtime with Sonarr and Radarr. + +### Requirements + * Plex Pass Subscription for main user + * Sonarr v4 or higher + * Radarr v3 or higher + * Friends must change privacy settings so that the main user can see their watchlists + * Docker or Java ## Why? diff --git a/src/main/scala/WatchlistSync.scala b/src/main/scala/WatchlistSync.scala index 5ac2742..7d66b67 100644 --- a/src/main/scala/WatchlistSync.scala +++ b/src/main/scala/WatchlistSync.scala @@ -1,3 +1,4 @@ +import cats.data.EitherT import cats.effect.IO import cats.implicits._ import configuration.Configuration @@ -17,32 +18,43 @@ object WatchlistSync logger.debug("Starting watchlist sync") - for { - watchlistDatas <- config.plexWatchlistUrls.map(fetchWatchlistFromRss(client)).sequence + val result = for { + watchlistDatas <- EitherT[IO, Throwable, List[Set[Item]]](config.plexWatchlistUrls.map(fetchWatchlistFromRss(client)).sequence.map(Right(_))) watchlistData = watchlistDatas.flatten.toSet movies <- fetchMovies(client)(config.radarrApiKey, config.radarrBaseUrl, config.radarrBypassIgnored) series <- fetchSeries(client)(config.sonarrApiKey, config.sonarrBaseUrl, config.sonarrBypassIgnored) allIds = movies ++ series _ <- missingIds(client)(config)(allIds, watchlistData) } yield () + + result.value.map { + case Left(err) => + logger.warn(s"An error occured while attempting to sync: $err") + case Right(_) => + logger.debug("Watchlist sync complete") + } } - private def missingIds(client: HttpClient)(config: Configuration)(existingItems: Set[Item], watchlist: Set[Item]): IO[Set[Unit]] = - watchlist.map { watchlistedItem => - (existingItems.exists(_.matches(watchlistedItem)), watchlistedItem.category) match { + private def missingIds(client: HttpClient)(config: Configuration)(existingItems: Set[Item], watchlist: Set[Item]): EitherT[IO, Throwable, Set[Unit]] = { + for { + watchlistedItem <- watchlist + maybeExistingItem = existingItems.exists(_.matches(watchlistedItem)) + category = watchlistedItem.category + task = EitherT.fromEither[IO]((maybeExistingItem, category) match { case (true, c) => logger.debug(s"$c \"${watchlistedItem.title}\" already exists in Sonarr/Radarr") - IO.unit + Right(IO.unit) case (false, "show") => logger.debug(s"Found show \"${watchlistedItem.title}\" which does not exist yet in Sonarr") - addToSonarr(client)(config)(watchlistedItem) + Right(addToSonarr(client)(config)(watchlistedItem)) case (false, "movie") => logger.debug(s"Found movie \"${watchlistedItem.title}\" which does not exist yet in Radarr") - addToRadarr(client)(config)(watchlistedItem) + Right(addToRadarr(client)(config)(watchlistedItem)) case (false, c) => logger.warn(s"Found $c \"${watchlistedItem.title}\", but I don't recognize the category") - IO.unit - } - }.toList.sequence.map(_.toSet) + Left(new Throwable(s"Unknown category $c")) + }) + } yield task.flatMap(EitherT.liftF[IO, Throwable, Unit]) + }.toList.sequence.map(_.toSet) } diff --git a/src/main/scala/radarr/RadarrUtils.scala b/src/main/scala/radarr/RadarrUtils.scala index 0b3ea1c..c192428 100644 --- a/src/main/scala/radarr/RadarrUtils.scala +++ b/src/main/scala/radarr/RadarrUtils.scala @@ -1,9 +1,10 @@ package radarr +import cats.data.EitherT import cats.effect.IO import configuration.Configuration import http.HttpClient -import io.circe.Json +import io.circe.{Decoder, Json} import io.circe.generic.auto._ import io.circe.syntax.EncoderOps import model.Item @@ -14,49 +15,35 @@ trait RadarrUtils extends RadarrConversions { private val logger = LoggerFactory.getLogger(getClass) - protected def fetchMovies(client: HttpClient)(apiKey: String, baseUrl: Uri, bypass: Boolean): IO[Set[Item]] = + protected def fetchMovies(client: HttpClient)(apiKey: String, baseUrl: Uri, bypass: Boolean): EitherT[IO, Throwable, Set[Item]] = for { - movies <- getToArr(client)(baseUrl, apiKey, "movie").map { - case Right(res) => - res.as[List[RadarrMovie]].getOrElse { - logger.warn("Unable to fetch movies from Radarr - decoding failure. Returning empty list instead") - List.empty - } - case Left(err) => - logger.warn(s"Received error while trying to fetch movies from Radarr: $err") - List.empty - } + movies <- getToArr[List[RadarrMovie]](client)(baseUrl, apiKey, "movie") exclusions <- if (bypass) { - IO.pure(List.empty) + EitherT.pure[IO, Throwable](List.empty[RadarrMovieExclusion]) } else { - getToArr(client)(baseUrl, apiKey, "exclusions").map { - case Right(res) => - res.as[List[RadarrMovieExclusion]].getOrElse { - logger.warn("Unable to fetch movie exclusions from Radarr - decoding failure. Returning empty list instead") - List.empty - } - case Left(err) => - logger.warn(s"Received error while trying to fetch movie exclusions from Radarr: $err") - List.empty - } + getToArr[List[RadarrMovieExclusion]](client)(baseUrl, apiKey, "exclusions") } } yield (movies.map(toItem) ++ exclusions.map(toItem)).toSet protected def addToRadarr(client: HttpClient)(config: Configuration)(item: Item): IO[Unit] = { - val movie = RadarrPost(item.title, item.getTmdbId.getOrElse(0L), config.radarrQualityProfileId, config.radarrRootFolder) - postToArr(client)(config.radarrBaseUrl, config.radarrApiKey, "movie")(movie.asJson).map { - case Right(_) => - logger.info(s"Successfully added movie ${item.title} to Radarr") - case Left(err) => - logger.error(s"Failed to add movie ${item.title}: $err") - } + postToArr[Unit](client)(config.radarrBaseUrl, config.radarrApiKey, "movie")(movie.asJson).getOrElse( + logger.warn(s"Unable to send ${item.title} to Radarr") + ) } - private def getToArr(client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String): IO[Either[Throwable, Json]] = - client.httpRequest(Method.GET, baseUrl / "api" / "v3" / endpoint, Some(apiKey)) + private def getToArr[T: Decoder](client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String): EitherT[IO, Throwable, T] = + for { + response <- EitherT(client.httpRequest(Method.GET, baseUrl / "api" / "v3" / endpoint, Some(apiKey))) + maybeDecoded <- EitherT.pure[IO, Throwable](response.as[T]) + decoded <- EitherT.fromOption[IO](maybeDecoded.toOption, new Throwable("Unable to decode response from Radarr")) + } yield decoded - private def postToArr(client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String)(payload: Json): IO[Either[Throwable, Json]] = - client.httpRequest(Method.POST, baseUrl / "api" / "v3" / endpoint, Some(apiKey), Some(payload)) + private def postToArr[T: Decoder](client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String)(payload: Json): EitherT[IO, Throwable, T] = + for { + response <- EitherT(client.httpRequest(Method.POST, baseUrl / "api" / "v3" / endpoint, Some(apiKey), Some(payload))) + maybeDecoded <- EitherT.pure[IO, Throwable](response.as[T]) + decoded <- EitherT.fromOption[IO](maybeDecoded.toOption, new Throwable("Unable to decode response from Radarr")) + } yield decoded } diff --git a/src/main/scala/sonarr/SonarrUtils.scala b/src/main/scala/sonarr/SonarrUtils.scala index 60e2fbf..b9de812 100644 --- a/src/main/scala/sonarr/SonarrUtils.scala +++ b/src/main/scala/sonarr/SonarrUtils.scala @@ -1,9 +1,10 @@ package sonarr +import cats.data.EitherT import cats.effect.IO import configuration.Configuration import http.HttpClient -import io.circe.Json +import io.circe.{Decoder, Json} import io.circe.generic.auto._ import io.circe.syntax.EncoderOps import model.Item @@ -14,31 +15,13 @@ trait SonarrUtils extends SonarrConversions { private val logger = LoggerFactory.getLogger(getClass) - protected def fetchSeries(client: HttpClient)(apiKey: String, baseUrl: Uri, bypass: Boolean): IO[Set[Item]] = + protected def fetchSeries(client: HttpClient)(apiKey: String, baseUrl: Uri, bypass: Boolean): EitherT[IO, Throwable, Set[Item]] = for { - shows <- getToArr(client)(baseUrl, apiKey, "series").map { - case Right(res) => - res.as[List[SonarrSeries]].getOrElse { - logger.warn("Unable to fetch series from Sonarr - decoding failure. Returning empty list instead") - List.empty - } - case Left(err) => - logger.warn(s"Received error while trying to fetch movies from Radarr: $err") - List.empty - } + shows <- getToArr[List[SonarrSeries]](client)(baseUrl, apiKey, "series") exclusions <- if (bypass) { - IO.pure(List.empty) + EitherT.pure[IO, Throwable](List.empty[SonarrSeries]) } else { - getToArr(client)(baseUrl, apiKey, "importlistexclusion").map { - case Right(res) => - res.as[List[SonarrSeries]].getOrElse { - logger.warn("Unable to fetch show exclusions from Sonarr - decoding failure. Returning empty list instead") - List.empty - } - case Left(err) => - logger.warn(s"Received error while trying to fetch show exclusions from Sonarr: $err") - List.empty - } + getToArr[List[SonarrSeries]](client)(baseUrl, apiKey, "importlistexclusion") } } yield (shows.map(toItem) ++ exclusions.map(toItem)).toSet @@ -47,17 +30,22 @@ trait SonarrUtils extends SonarrConversions { val addOptions = SonarrAddOptions(config.sonarrSeasonMonitoring) val show = SonarrPost(item.title, item.getTvdbId.getOrElse(0L), config.sonarrQualityProfileId, config.radarrRootFolder, addOptions) - postToArr(client)(config.sonarrBaseUrl, config.sonarrApiKey, "series")(show.asJson).map { - case Right(_) => - logger.info(s"Successfully added show ${item.title} to Sonarr") - case Left(err) => - logger.info(s"Failed to add show ${item.title}: $err") - } + postToArr[Unit](client)(config.sonarrBaseUrl, config.sonarrApiKey, "series")(show.asJson).getOrElse( + logger.warn(s"Unable to send ${item.title} to Sonarr") + ) } - private def getToArr(client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String): IO[Either[Throwable, Json]] = - client.httpRequest(Method.GET, baseUrl / "api" / "v3" / endpoint, Some(apiKey)) + private def getToArr[T: Decoder](client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String): EitherT[IO, Throwable, T] = + for { + response <- EitherT(client.httpRequest(Method.GET, baseUrl / "api" / "v3" / endpoint, Some(apiKey))) + maybeDecoded <- EitherT.pure[IO, Throwable](response.as[T]) + decoded <- EitherT.fromOption[IO](maybeDecoded.toOption, new Throwable("Unable to decode response from Sonarr")) + } yield decoded - private def postToArr(client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String)(payload: Json): IO[Either[Throwable, Json]] = - client.httpRequest(Method.POST, baseUrl / "api" / "v3" / endpoint, Some(apiKey), Some(payload)) + private def postToArr[T: Decoder](client: HttpClient)(baseUrl: Uri, apiKey: String, endpoint: String)(payload: Json): EitherT[IO, Throwable, T] = + for { + response <- EitherT(client.httpRequest(Method.POST, baseUrl / "api" / "v3" / endpoint, Some(apiKey), Some(payload))) + maybeDecoded <- EitherT.pure[IO, Throwable](response.as[T]) + decoded <- EitherT.fromOption[IO](maybeDecoded.toOption, new Throwable("Unable to decode response from Sonarr")) + } yield decoded } diff --git a/src/test/resources/radarr-missingmovie.json b/src/test/resources/radarr-missingmovie.json new file mode 100644 index 0000000..bd4b590 --- /dev/null +++ b/src/test/resources/radarr-missingmovie.json @@ -0,0 +1,27949 @@ +[ + { + "title": "Incredible But True", + "originalTitle": "Incroyable mais vrai", + "originalLanguage": { + "id": 2, + "name": "French" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 13, + "title": "Neticami, bet patiesi", + "id": 63 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 13, + "title": "믿거나 말거나, 진짜야", + "id": 64 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 13, + "title": "Incroyable mais vrai", + "id": 65 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "incredible but true", + "sizeOnDisk": 1167361186, + "status": "released", + "overview": "Alain and Marie moved to the suburb house of their dreams. But the real estate agent warned them: what is in the basement may well change their lives forever.", + "inCinemas": "2022-06-15T00:00:00Z", + "physicalRelease": "2022-10-18T00:00:00Z", + "digitalRelease": "2022-10-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/3/poster.jpg?lastWrite=638321699852744049", + "remoteUrl": "https://image.tmdb.org/t/p/original/yBLlwTXweDzBKgEbYz5ZVTRQaZX.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/3/fanart.jpg?lastWrite=638321699852894057", + "remoteUrl": "https://image.tmdb.org/t/p/original/1bBq4sVRqqdVIlg1rTF76rgOYU0.jpg" + } + ], + "website": "", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "X4R78LAd8Iw", + "studio": "Diaphana Films", + "path": "/data/Incredible But True (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Incredible But True (2022)", + "runtime": 74, + "cleanTitle": "incrediblebuttrue", + "imdbId": "tt13145534", + "tmdbId": 735697, + "titleSlug": "735697", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-06T06:19:44Z", + "ratings": { + "imdb": { + "votes": 3613, + "value": 6.4, + "type": "user" + }, + "tmdb": { + "votes": 281, + "value": 6, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 76, + "type": "user" + } + }, + "movieFile": { + "movieId": 3, + "relativePath": "Incredible But True (2022) Bluray-1080p.mkv", + "path": "/data/Incredible But True (2022)/Incredible But True (2022) Bluray-1080p.mkv", + "size": 1167361186, + "dateAdded": "2023-10-06T06:35:54Z", + "sceneName": "Incredible.But.True.2022.1080p.BluRay.EAC3.x264-ZQ", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "fre/fre", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "1:13:15", + "scanType": "Progressive", + "subtitles": "eng/fre" + }, + "originalFilePath": "Incredible.But.True.2022.1080p.BluRay.EAC3.x264-ZQ/Incredible.But.True.2022.1080p.BluRay.EAC3.x264-ZQ.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + } + ], + "releaseGroup": "ZQ", + "edition": "", + "id": 5 + }, + "popularity": 9.707, + "id": 3 + }, + { + "title": "Passages", + "originalTitle": "Passages", + "originalLanguage": { + "id": 2, + "name": "French" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Пасажі", + "id": 52 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Kärlek & avund", + "id": 53 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Przejścia", + "id": 54 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Пассажи", + "id": 55 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Pasajes", + "id": 1409 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Passagens", + "id": 1410 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "Hetkessä", + "id": 1411 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 15, + "title": "パッセージ", + "id": 1412 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "passages", + "sizeOnDisk": 6770845277, + "status": "released", + "overview": "A gay couple's marriage is thrown into crisis when one of them impulsively begins a passionate affair with a young woman.", + "inCinemas": "2023-06-28T00:00:00Z", + "digitalRelease": "2023-10-06T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/5/poster.jpg?lastWrite=638330244493409979", + "remoteUrl": "https://image.tmdb.org/t/p/original/nuGSKCkU9h8MB5D3esgmM0UPArr.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/5/fanart.jpg?lastWrite=638321699850873947", + "remoteUrl": "https://image.tmdb.org/t/p/original/2178xLOOzDzyAPMI7qpDU5W3Hya.jpg" + } + ], + "website": "https://mubi.com/films/passages-2022", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "BEry0hQ5J-8", + "studio": "SBS Productions", + "path": "/data/Passages (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Passages (2023)", + "runtime": 92, + "cleanTitle": "passages", + "imdbId": "tt16252698", + "tmdbId": 898673, + "titleSlug": "898673", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-06T06:19:44Z", + "ratings": { + "imdb": { + "votes": 4661, + "value": 6.9, + "type": "user" + }, + "tmdb": { + "votes": 50, + "value": 6.67, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + } + }, + "movieFile": { + "movieId": 5, + "relativePath": "Passages (2023) WEBDL-1080p.mkv", + "path": "/data/Passages (2023)/Passages (2023) WEBDL-1080p.mkv", + "size": 6770845277, + "dateAdded": "2023-10-06T06:22:54Z", + "sceneName": "Passages.2023.1080p.WEB-DL.DDP2.0.H264-AOC", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 383578, + "audioChannels": 2, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h264", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1792x1080", + "runTime": "1:31:56", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Passages.2023.1080p.WEB-DL.DDP2.0.H264-AOC/Passages.2023.1080p.WEB-DL.DDP2.0.H264-AOC.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AOC", + "edition": "", + "id": 3 + }, + "popularity": 22.741, + "id": 5 + }, + { + "title": "You Hurt My Feelings", + "originalTitle": "You Hurt My Feelings", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 16, + "title": "Beth & Don", + "id": 56 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "you hurt my feelings", + "sizeOnDisk": 2930028875, + "status": "released", + "overview": "A novelist's longstanding marriage is suddenly upended when she overhears her husband giving his honest reaction to her latest book.", + "inCinemas": "2023-05-26T00:00:00Z", + "digitalRelease": "2023-06-20T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/6/poster.jpg?lastWrite=638321699851103959", + "remoteUrl": "https://image.tmdb.org/t/p/original/do9UvkcDJeYbhYVoQPS00yOCYdc.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/6/fanart.jpg?lastWrite=638321699851293970", + "remoteUrl": "https://image.tmdb.org/t/p/original/19W9NsT9k8HZYyD86uXamWtffka.jpg" + } + ], + "website": "https://a24films.com/films/you-hurt-my-feelings", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "20GWk5cWPBs", + "studio": "Likely Story", + "path": "/data/You Hurt My Feelings (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/You Hurt My Feelings (2023)", + "runtime": 93, + "cleanTitle": "youhurtmyfeelings", + "imdbId": "tt15771916", + "tmdbId": 890215, + "titleSlug": "890215", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-06T06:19:44Z", + "ratings": { + "imdb": { + "votes": 7594, + "value": 6.6, + "type": "user" + }, + "tmdb": { + "votes": 64, + "value": 6.602, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 82, + "type": "user" + } + }, + "movieFile": { + "movieId": 6, + "relativePath": "You Hurt My Feelings (2023) Remux-1080p.mkv", + "path": "/data/You Hurt My Feelings (2023)/You Hurt My Feelings (2023) Remux-1080p.mkv", + "size": 2930028875, + "dateAdded": "2023-10-06T06:28:54Z", + "sceneName": "You.Hurt.My.Feelings.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:32:48", + "scanType": "Progressive", + "subtitles": "eng/spa" + }, + "originalFilePath": "You.Hurt.My.Feelings.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR/You.Hurt.My.Feelings.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 4 + }, + "popularity": 13.18, + "id": 6 + }, + { + "title": "Babette's Feast", + "originalTitle": "Babettes gæstebud", + "originalLanguage": { + "id": 6, + "name": "Danish" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 17, + "title": "芭贝特的盛宴", + "id": 66 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 17, + "title": "芭比的盛宴", + "id": 67 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 17, + "title": "バべットの晚餐会", + "id": 68 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 17, + "title": "바베트의 만찬", + "id": 69 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 17, + "title": "Babettes gjestebud", + "id": 70 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "babette s feast", + "sizeOnDisk": 1255784017, + "status": "released", + "overview": "A French housekeeper with a mysterious past brings quiet revolution in the form of one exquisite meal to a circle of starkly pious villagers in late 19th century Denmark.", + "inCinemas": "1987-08-11T00:00:00Z", + "physicalRelease": "1989-01-01T00:00:00Z", + "digitalRelease": "2003-04-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/7/poster.jpg?lastWrite=638321744689293173", + "remoteUrl": "https://image.tmdb.org/t/p/original/3ibptSbnAHd0SUBnOKapNZQBpCl.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/7/fanart.jpg?lastWrite=638321744689553187", + "remoteUrl": "https://image.tmdb.org/t/p/original/iFl8eN4vWcMNNozmJk8E7cLgeT9.jpg" + } + ], + "website": "", + "year": 1987, + "hasFile": true, + "youTubeTrailerId": "H5w9skKcdnA", + "studio": "Rungstedlundfonden", + "path": "/data/Babette's Feast (1987)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Babette's Feast (1987)", + "runtime": 102, + "cleanTitle": "babettesfeast", + "imdbId": "tt0092603", + "tmdbId": 11832, + "titleSlug": "11832", + "rootFolderPath": "/data/", + "certification": "G", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 21275, + "value": 7.8, + "type": "user" + }, + "tmdb": { + "votes": 345, + "value": 7.209, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 78, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 97, + "type": "user" + } + }, + "movieFile": { + "movieId": 7, + "relativePath": "Babette's Feast (1987) Bluray-1080p.mkv", + "path": "/data/Babette's Feast (1987)/Babette's Feast (1987) Bluray-1080p.mkv", + "size": 1255784017, + "dateAdded": "2023-10-07T08:02:32Z", + "sceneName": "Babettes.Feast.1987.1080p.BluRay.x264-MOOVEE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 2, + "audioCodec": "AC3", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:43:09", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Babettes.Feast.1987.1080p.BluRay.x264-MOOVEE/Babettes.Feast.1987.1080p.BluRay.x264-MOOVEE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 6, + "name": "Danish" + } + ], + "releaseGroup": "MOOVEE", + "edition": "", + "id": 17 + }, + "popularity": 11.955, + "id": 7 + }, + { + "title": "Barbie", + "originalTitle": "Barbie", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "Barbie: The Movie", + "id": 74 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "Բարբի", + "id": 75 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "芭比", + "id": 76 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "باربی", + "id": 77 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "ბარბი", + "id": 78 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "बार्बी", + "id": 79 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "باربي", + "id": 80 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "ບາຣ໌ບີ້", + "id": 81 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 18, + "title": "Barbie: La Pelicula", + "id": 82 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "barbie", + "sizeOnDisk": 28383772253, + "status": "released", + "overview": "Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However, when they get a chance to go to the real world, they soon discover the joys and perils of living among humans.", + "inCinemas": "2023-07-19T00:00:00Z", + "physicalRelease": "2023-10-17T00:00:00Z", + "digitalRelease": "2023-09-12T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/8/poster.jpg?lastWrite=638321744689833202", + "remoteUrl": "https://image.tmdb.org/t/p/original/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/8/fanart.jpg?lastWrite=638321744689983211", + "remoteUrl": "https://image.tmdb.org/t/p/original/ctMserH8g2SeOAnCw5gFjdQF8mo.jpg" + } + ], + "website": "https://www.barbie-themovie.com", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Y1IgAEejvqM", + "studio": "LuckyChap Entertainment", + "path": "/data/Barbie (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Barbie (2023)", + "runtime": 114, + "cleanTitle": "barbie", + "imdbId": "tt1517268", + "tmdbId": 346698, + "titleSlug": "346698", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Adventure", + "Fantasy" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 360773, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 5551, + "value": 7.229, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 80, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 88, + "type": "user" + } + }, + "movieFile": { + "movieId": 8, + "relativePath": "Barbie (2023) Bluray-2160p.mkv", + "path": "/data/Barbie (2023)/Barbie (2023) Bluray-2160p.mkv", + "size": 28383772253, + "dateAdded": "2023-10-17T03:41:16Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 19, + "name": "Bluray-2160p", + "source": "bluray", + "resolution": 2160, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 23.976, + "videoDynamicRange": "HDR", + "videoDynamicRangeType": "HDR10", + "resolution": "3840x1920", + "runTime": "1:54:03", + "scanType": "Progressive", + "subtitles": "eng/ita/fre/spa/dan/fin/nor/swe" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 145 + }, + "popularity": 799.046, + "id": 8 + }, + { + "title": "Creed", + "originalTitle": "Creed", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Creed: Corazón de campeón", + "id": 83 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Creed - The Legacy of Rocky", + "id": 84 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Крід", + "id": 85 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Creed: The Rocky Legacy", + "id": 86 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Rocky 7 - Creed - Nascido para Lutar", + "id": 87 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Creed - L'héritage de Rocky Balboa", + "id": 88 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Rocky VII", + "id": 89 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Creed La leyenda de Rocky", + "id": 90 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Tay Đấm Huyền Thoại", + "id": 91 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 19, + "title": "Крид: Наследие Рокки", + "id": 92 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "creed", + "sizeOnDisk": 5928277662, + "status": "released", + "overview": "The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.", + "inCinemas": "2015-11-25T00:00:00Z", + "physicalRelease": "2016-03-01T00:00:00Z", + "digitalRelease": "2016-07-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/9/poster.jpg?lastWrite=638328515947084291", + "remoteUrl": "https://image.tmdb.org/t/p/original/8OkGJkcgdW24F7BgIv39uEqspNy.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/9/fanart.jpg?lastWrite=638321744690813256", + "remoteUrl": "https://image.tmdb.org/t/p/original/lBX2EklMBEK5I0OIJWVJFr3DtmS.jpg" + } + ], + "website": "https://www.mgm.com/movies/creed", + "year": 2015, + "hasFile": true, + "youTubeTrailerId": "JQ9OhBYjTds", + "studio": "Metro-Goldwyn-Mayer", + "path": "/data/Creed (2015)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Creed (2015)", + "runtime": 133, + "cleanTitle": "creed", + "imdbId": "tt3076658", + "tmdbId": 312221, + "titleSlug": "312221", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Drama" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 303696, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 6969, + "value": 7.414, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 82, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 95, + "type": "user" + } + }, + "movieFile": { + "movieId": 9, + "relativePath": "Creed (2015) Remux-1080p.mkv", + "path": "/data/Creed (2015)/Creed (2015) Remux-1080p.mkv", + "size": 5928277662, + "dateAdded": "2023-10-06T09:30:33Z", + "sceneName": "Creed.2015.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:13:10", + "scanType": "Progressive", + "subtitles": "eng/fre/spa/por" + }, + "originalFilePath": "Creed.2015.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR/Creed.2015.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 15 + }, + "collection": { + "title": "Creed Collection", + "tmdbId": 553717, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 49.403, + "id": 9 + }, + { + "title": "A Simple Favor", + "originalTitle": "A Simple Favor", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 20, + "title": "A Simple Favour", + "id": 71 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 20, + "title": "Nur ein kleiner Gefallen", + "id": 72 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 20, + "title": "Simple Favor, A", + "id": 73 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "simple favor", + "sizeOnDisk": 4999174752, + "status": "released", + "overview": "Stephanie, a dedicated mother and popular vlogger, befriends Emily, a mysterious upper-class woman whose son Nicky attends the same school as Miles, Stephanie's son. When Emily asks her to pick Nicky up from school and then disappears, Stephanie undertakes an investigation that will dive deep into Emily's cloudy past.", + "inCinemas": "2018-08-29T00:00:00Z", + "physicalRelease": "2018-12-18T00:00:00Z", + "digitalRelease": "2018-12-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/10/poster.jpg?lastWrite=638321744691353286", + "remoteUrl": "https://image.tmdb.org/t/p/original/5EJWZQ8dh99hfgXP9zAD5Ak5Hrn.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/10/fanart.jpg?lastWrite=638321744691703305", + "remoteUrl": "https://image.tmdb.org/t/p/original/nb1s8r6MhDcPyMjx3sjw9rFsEP5.jpg" + } + ], + "website": "https://asimplefavor.movie/", + "year": 2018, + "hasFile": true, + "youTubeTrailerId": "rAqMlh0b2HU", + "studio": "Feigco Entertainment", + "path": "/data/A Simple Favor (2018)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/A Simple Favor (2018)", + "runtime": 117, + "cleanTitle": "asimplefavor", + "imdbId": "tt7040874", + "tmdbId": 484247, + "titleSlug": "484247", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Thriller", + "Mystery" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 158119, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 3883, + "value": 6.63, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 84, + "type": "user" + } + }, + "movieFile": { + "movieId": 10, + "relativePath": "A Simple Favor (2018) Remux-1080p.mkv", + "path": "/data/A Simple Favor (2018)/A Simple Favor (2018) Remux-1080p.mkv", + "size": 4999174752, + "dateAdded": "2023-10-06T08:13:56Z", + "sceneName": "A.Simple.Favor.2018.1080p.BluRay.REMUX.AVC.TrueHD.7.1-EPSiLON", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng/eng/eng/eng/eng", + "audioStreamCount": 5, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:56:50", + "scanType": "Progressive", + "subtitles": "eng/fre/spa" + }, + "originalFilePath": "A.Simple.Favor.2018.1080p.BluRay.REMUX.AVC.TrueHD.7.1-EPSiLON/A.Simple.Favor.2018.1080p.BluRay.REMUX.AVC.TrueHD.7.1-EPSiLON.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "EPSiLON", + "edition": "", + "id": 9 + }, + "collection": { + "title": "A Simple Favor Collection", + "tmdbId": 975201, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 19.766, + "id": 10 + }, + { + "title": "Judy", + "originalTitle": "Judy", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 21, + "title": "Judy - Muito Além do Arco-Íris", + "id": 96 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 21, + "title": "주디", + "id": 97 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "judy", + "sizeOnDisk": 2543084040, + "status": "released", + "overview": "Thirty years after starring in \"The Wizard of Oz,\" beloved actress and singer Judy Garland arrives in London to perform sold-out shows at the Talk of the Town nightclub. While there, she reminisces with friends and fans and begins a whirlwind romance with musician Mickey Deans, her soon-to-be fifth husband.", + "inCinemas": "2019-09-27T00:00:00Z", + "physicalRelease": "2020-02-03T00:00:00Z", + "digitalRelease": "2019-12-24T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/11/poster.jpg?lastWrite=638321744691913316", + "remoteUrl": "https://image.tmdb.org/t/p/original/iqJhHjD6k6T07waELjMKDpQJUP.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/11/fanart.jpg?lastWrite=638321744692113327", + "remoteUrl": "https://image.tmdb.org/t/p/original/hJXxDoCwchAuJ4K3gwtno2chgr8.jpg" + } + ], + "website": "", + "year": 2019, + "hasFile": true, + "youTubeTrailerId": "iCfGxxLXJYc", + "studio": "BBC Film", + "path": "/data/Judy (2019)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Judy (2019)", + "runtime": 118, + "cleanTitle": "judy", + "imdbId": "tt7549996", + "tmdbId": 491283, + "titleSlug": "491283", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "History", + "Music" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 53632, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 1095, + "value": 6.7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 66, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 82, + "type": "user" + } + }, + "movieFile": { + "movieId": 11, + "relativePath": "Judy (2019) Remux-1080p.mkv", + "path": "/data/Judy (2019)/Judy (2019) Remux-1080p.mkv", + "size": 2543084040, + "dateAdded": "2023-10-06T08:02:56Z", + "sceneName": "Judy.2019.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N-Rakuv01", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:58:18", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Judy.2019.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N-Rakuv01/Judy.2019.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 8 + }, + "popularity": 16.526, + "id": 11 + }, + { + "title": "Battle of the Sexes", + "originalTitle": "Battle of the Sexes", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 22, + "title": "胜负反手拍", + "id": 93 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 22, + "title": "KP18: Lyčių kova", + "id": 94 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 22, + "title": "La bataille des sexes", + "id": 95 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "battle sexes", + "sizeOnDisk": 6445132384, + "status": "released", + "overview": "The true story of the 1973 tennis match between World number one Billie Jean King and ex-champ and serial hustler Bobby Riggs.", + "inCinemas": "2017-09-28T00:00:00Z", + "physicalRelease": "2018-01-02T00:00:00Z", + "digitalRelease": "2018-01-18T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/12/poster.jpg?lastWrite=638328515941213964", + "remoteUrl": "https://image.tmdb.org/t/p/original/fWy0A3VojTCb0S2MKtEJjpquubF.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/12/fanart.jpg?lastWrite=638328515941463977", + "remoteUrl": "https://image.tmdb.org/t/p/original/wCHJuJwEfOrrykgDas8T4m79Bzs.jpg" + } + ], + "website": "http://www.battleofthesexesmovie.co.uk/", + "year": 2017, + "hasFile": true, + "youTubeTrailerId": "rXc4tuOdYhw", + "studio": "Fox Searchlight Pictures", + "path": "/data/Battle of the Sexes (2017)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Battle of the Sexes (2017)", + "runtime": 121, + "cleanTitle": "battlesexes", + "imdbId": "tt4622512", + "tmdbId": 369192, + "titleSlug": "369192", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Drama", + "History" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 58488, + "value": 6.7, + "type": "user" + }, + "tmdb": { + "votes": 1738, + "value": 6.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 73, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 84, + "type": "user" + } + }, + "movieFile": { + "movieId": 12, + "relativePath": "Battle of the Sexes (2017) Remux-1080p.mkv", + "path": "/data/Battle of the Sexes (2017)/Battle of the Sexes (2017) Remux-1080p.mkv", + "size": 6445132384, + "dateAdded": "2023-10-06T07:54:56Z", + "sceneName": "Battle.of.the.Sexes.2017.NORDiC.REMUX.1080p.BluRay.AVC.DTS-HD.MA.5.1-CDB", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:01:39", + "scanType": "Progressive", + "subtitles": "dan/swe/nor/fin" + }, + "originalFilePath": "Battle.of.the.Sexes.2017.NORDiC.REMUX.1080p.BluRay.AVC.DTS-HD.MA.5.1-CDB/Battle.of.the.Sexes.2017.NORDiC.REMUX.1080p.BluRay.AVC.DTS-HD.MA.5.1-CDB.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "CDB", + "edition": "", + "id": 6 + }, + "popularity": 15.226, + "id": 12 + }, + { + "title": "Fair Play", + "originalTitle": "Fair Play", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "fair play", + "sizeOnDisk": 1051069531, + "status": "released", + "overview": "Followed by three families on their journey to better balance their home life style. They are fighting problems that affect millions of couples and families across the country and even the globe.", + "inCinemas": "2022-07-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/13/poster.jpg?lastWrite=638321744691243280", + "remoteUrl": "https://image.tmdb.org/t/p/original/67rpPopC6ubdPTxdQI7oQlkF2hj.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/13/fanart.jpg?lastWrite=638321744691493293", + "remoteUrl": "https://image.tmdb.org/t/p/original/exAz8zQ5d4I0engLFrK0jQSJwqP.jpg" + } + ], + "website": "https://www.fairplaylife.com/documentary", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "RX95jSQqV-Y", + "studio": "Hello Sunshine", + "path": "/data/Fair Play (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fair Play (2022)", + "runtime": 95, + "cleanTitle": "fairplay", + "imdbId": "tt15857800", + "tmdbId": 993604, + "titleSlug": "993604", + "rootFolderPath": "/data/", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 94, + "value": 6.6, + "type": "user" + }, + "tmdb": { + "votes": 3, + "value": 7, + "type": "user" + } + }, + "movieFile": { + "movieId": 13, + "relativePath": "Fair Play (2022) WEBRip-1080p.mkv", + "path": "/data/Fair Play (2022)/Fair Play (2022) WEBRip-1080p.mkv", + "size": 1051069531, + "dateAdded": "2023-10-06T07:56:38Z", + "sceneName": "Fair.Play.2022.1080p.WEBRip.x264.AAC-AOC", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:35:31", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Fair.Play.2022.1080p.WEBRip.x264.AAC-AOC/Fair.Play.2022.1080p.WEBRip.x264.AAC-AOC.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AOC", + "edition": "", + "id": 7 + }, + "popularity": 1.676, + "id": 13 + }, + { + "title": "Waitress", + "originalTitle": "Waitress", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 24, + "title": "Pincérlány - Édesen is csípős", + "id": 98 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 24, + "title": "La camarera", + "id": 99 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 24, + "title": "Garçonete", + "id": 100 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 24, + "title": "Serveuses demandées", + "id": 101 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 24, + "title": "Jennas Kuchen - Für Liebe gibt es kein Rezept", + "id": 102 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "waitress", + "sizeOnDisk": 1311743182, + "status": "released", + "overview": "Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.", + "inCinemas": "2007-05-25T00:00:00Z", + "digitalRelease": "2021-02-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/14/poster.jpg?lastWrite=638324194586989946", + "remoteUrl": "https://image.tmdb.org/t/p/original/sWKzEAxXNClhcHW4iAxYsEG8r0X.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/14/fanart.jpg?lastWrite=638324194591550193", + "remoteUrl": "https://image.tmdb.org/t/p/original/cmdaPEbxLhty4cvxXhJx8KFe5Bh.jpg" + } + ], + "website": "", + "year": 2007, + "hasFile": true, + "youTubeTrailerId": "hvus7pXX2Ew", + "studio": "Night and Day Pictures", + "path": "/data/Waitress (2007)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Waitress (2007)", + "runtime": 108, + "cleanTitle": "waitress", + "imdbId": "tt0473308", + "tmdbId": 10758, + "titleSlug": "10758", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 48133, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 483, + "value": 6.768, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 75, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 89, + "type": "user" + } + }, + "movieFile": { + "movieId": 14, + "relativePath": "Waitress (2007) WEBDL-1080p.mkv", + "path": "/data/Waitress (2007)/Waitress (2007) WEBDL-1080p.mkv", + "size": 1311743182, + "dateAdded": "2023-10-06T08:16:57Z", + "sceneName": "Waitress.2007.1080p.AMZN.WEB-DL.DDP5.1.H.264-SiGMA", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:48:00", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Waitress.2007.1080p.AMZN.WEB-DL.DDP5.1.H.264-SiGMA/Waitress.2007.1080p.AMZN.WEB-DL.DDP5.1.H.264-SiGMA.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SiGMA", + "edition": "", + "id": 10 + }, + "popularity": 7.223, + "id": 14 + }, + { + "title": "Indiana Jones and the Dial of Destiny", + "originalTitle": "Indiana Jones and the Dial of Destiny", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Индиана Джонс 5", + "id": 103 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "インディ・ジョーンズ5", + "id": 104 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones e O Chamado do Destino", + "id": 105 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones y el llamado del destino", + "id": 106 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "인디아나 존스 5", + "id": 107 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones e la ruota del destino", + "id": 108 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "ინდიანა ჯონსი და ბედისწერის ციფერბლატი", + "id": 109 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones i el dial del destí", + "id": 110 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones 5", + "id": 111 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones y el dial del destino", + "id": 112 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones und das Rad des Schicksals", + "id": 113 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "İndiana Cons və taleyin saatı", + "id": 114 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Индиана Джоунс и реликвата на съдбата", + "id": 115 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones et le cadran du destin", + "id": 116 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "夺宝奇兵5:命运转盘", + "id": 117 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones i artefakt sudbine", + "id": 118 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones a disk osudu", + "id": 119 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones a nástroj osudu", + "id": 120 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones ja saatuse seier", + "id": 121 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones et le Cadran de la destinée", + "id": 122 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Ο Indiana Jones και ο Δίσκος του Πεπρωμένου", + "id": 123 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "奪寶奇兵:命運輪盤", + "id": 124 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones és a sors tárcsája", + "id": 125 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones Ve'Khougat Ha'Goral", + "id": 126 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "インディ・ジョーンズと運命のダイヤル", + "id": 127 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Индиана Джонс и колесо судьбы", + "id": 128 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Džounsas ir lemties artefaktas", + "id": 129 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones i artefakt przeznaczenia", + "id": 130 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones e o Marcador do Destino", + "id": 131 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones și cadranul destinului", + "id": 132 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Индиана Джонс и часы судьбы", + "id": 133 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Индијана Џоунс и артефакт судбине", + "id": 134 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "印第安納瓊斯:命運輪盤", + "id": 135 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones ve Kader Kadranı", + "id": 136 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Індіана Джонс і реліквія долі", + "id": 137 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones và Vòng Quay Định Mệnh", + "id": 138 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones 5 Artefakt przeznaczenia", + "id": 139 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones 5 - und das Rad des Schicksals", + "id": 140 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 25, + "title": "Indiana Jones 5 - Et le Cadran de la destinée", + "id": 1406 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "indiana jones dial destiny", + "sizeOnDisk": 3526547731, + "status": "released", + "overview": "Finding himself in a new era, and approaching retirement, Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival, Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.", + "inCinemas": "2023-06-28T00:00:00Z", + "physicalRelease": "2023-12-05T00:00:00Z", + "digitalRelease": "2023-08-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/15/poster.jpg?lastWrite=638321744695643520", + "remoteUrl": "https://image.tmdb.org/t/p/original/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/15/fanart.jpg?lastWrite=638321744696093545", + "remoteUrl": "https://image.tmdb.org/t/p/original/35z8hWuzfFUZQaYog8E9LsXW3iI.jpg" + } + ], + "website": "https://movies.disney.com/indiana-jones-and-the-dial-of-destiny", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "eQfMbSe7F2g", + "studio": "Lucasfilm Ltd.", + "path": "/data/Indiana Jones and the Dial of Destiny (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Indiana Jones and the Dial of Destiny (2023)", + "runtime": 155, + "cleanTitle": "indianajonesdialdestiny", + "imdbId": "tt1462764", + "tmdbId": 335977, + "titleSlug": "335977", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Adventure", + "Action" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 134887, + "value": 6.7, + "type": "user" + }, + "tmdb": { + "votes": 1930, + "value": 6.682, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 58, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 69, + "type": "user" + } + }, + "movieFile": { + "movieId": 15, + "relativePath": "Indiana Jones and the Dial of Destiny (2023) WEBDL-1080p.mkv", + "path": "/data/Indiana Jones and the Dial of Destiny (2023)/Indiana Jones and the Dial of Destiny (2023) WEBDL-1080p.mkv", + "size": 3526547731, + "dateAdded": "2023-10-06T08:21:57Z", + "sceneName": "Indiana.Jones.and.the.Dial.of.Destiny.2023.MULTi.1080p.WEB-DL.H264-GOM13", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "fre/fre/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:36:54", + "scanType": "Progressive", + "subtitles": "fre/fre/fre/fre/eng" + }, + "originalFilePath": "Indiana.Jones.and.the.Dial.of.Destiny.2023.MULTi.1080p.WEB-DL.H264-GOM13/Indiana.Jones.and.the.Dial.of.Destiny.2023.MULTi.1080p.WEB-DL.H264-GOM13.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "GOM13", + "edition": "", + "id": 11 + }, + "collection": { + "title": "Indiana Jones Collection", + "tmdbId": 84, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 469.309, + "id": 15 + }, + { + "title": "Avatar: The Way of Water", + "originalTitle": "Avatar: The Way of Water", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар 2", + "id": 155 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Įsikūnijimas 2", + "id": 156 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar 2", + "id": 157 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "アバター:ウェイ・オブ・ウォーター", + "id": 158 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "أفاتار: طريق المياه", + "id": 159 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "ଅବତାର ୨", + "id": 160 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар: Путь воды", + "id": 161 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: El sentit de l'aigua", + "id": 162 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar 2 - The Way of Water", + "id": 163 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar 2 - O Caminho da Água", + "id": 164 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Istota Wody", + "id": 165 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Cesta vody", + "id": 166 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Dòng Chảy Của Nước", + "id": 167 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар: Су жолы", + "id": 168 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar 2 - La Voie de l'eau", + "id": 169 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар: Природата на водата", + "id": 170 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar : la voie de l'eau", + "id": 171 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "ავატარი: წყლის გზა", + "id": 172 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "अवतार: द वे ऑफ वोटर", + "id": 173 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: A víz útja", + "id": 174 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: La via dell'acqua", + "id": 175 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "ಅವತಾರ್: ದಿ ವೇ ಆ ವಾಟರ್", + "id": 176 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "അവതാർ: ദി വേ ഓഫ് വാട്ടർ", + "id": 177 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "அவதார்: தி வே ஆப் வாட்டர்", + "id": 178 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "అవతార్: ది వే ఆఫ్ వాటర్", + "id": 179 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "阿凡达:水之道", + "id": 180 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: O Caminho da Água", + "id": 181 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Calea apei", + "id": 182 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: El sentido del agua", + "id": 183 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: El camino del agua", + "id": 184 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "อวตาร: วิถีแห่งสายน้ำ", + "id": 185 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Suyun Yolu", + "id": 186 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар: Шлях води", + "id": 187 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "阿凡達:水之道", + "id": 188 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Put vode", + "id": 189 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Аватар: Пут воде", + "id": 190 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatar: Vee olemus", + "id": 191 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "אווטאר: דרכם של המים", + "id": 192 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "아바타: 물의 길", + "id": 193 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Avatars: Ūdensceļš", + "id": 194 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Įsikūnijimas. Vandens kelias", + "id": 195 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "Ավատար․ Ջրի ուղին", + "id": 196 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 26, + "title": "ອະວະຕາຣ : ວິຖີແຫ່ງສາຍນ້ຳ", + "id": 197 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "avatar way water", + "sizeOnDisk": 72983162350, + "status": "released", + "overview": "Set more than a decade after the events of the first film, learn the story of the Sully family (Jake, Neytiri, and their kids), the trouble that follows them, the lengths they go to keep each other safe, the battles they fight to stay alive, and the tragedies they endure.", + "inCinemas": "2022-12-14T00:00:00Z", + "physicalRelease": "2023-06-20T00:00:00Z", + "digitalRelease": "2023-03-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/16/poster.jpg?lastWrite=638321744697613628", + "remoteUrl": "https://image.tmdb.org/t/p/original/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/16/fanart.jpg?lastWrite=638321744697913645", + "remoteUrl": "https://image.tmdb.org/t/p/original/8rpDcsfLJypbO6vREc0547VKqEv.jpg" + } + ], + "website": "https://www.avatar.com/movies/avatar-the-way-of-water", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "o5F8MOz_IDw", + "studio": "20th Century Studios", + "path": "/data/Avatar The Way of Water (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Avatar The Way of Water (2022)", + "runtime": 192, + "cleanTitle": "avatarwaywater", + "imdbId": "tt1630029", + "tmdbId": 76600, + "titleSlug": "76600", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Science Fiction", + "Adventure", + "Action" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 463074, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 9965, + "value": 7.65, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 76, + "type": "user" + } + }, + "movieFile": { + "movieId": 16, + "relativePath": "Avatar The Way of Water (2022) Remux-1080p.mkv", + "path": "/data/Avatar The Way of Water (2022)/Avatar The Way of Water (2022) Remux-1080p.mkv", + "size": 72983162350, + "dateAdded": "2023-10-06T08:58:28Z", + "sceneName": "Avatar.The.Way.of.Water.2022.3D.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "3:12:37", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/eng/ara/bul/hrv/chi/chi/chi/cze/dan/dut/est/fin/fre/fre/ger/gre/heb/hun/ice/ita/jpn/kor/lav/lit/nor/pol/por/por/por/rum/slo/slv/spa/spa/swe/tur/ukr" + }, + "originalFilePath": "Avatar.The.Way.of.Water.2022.3D.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR/Avatar.The.Way.of.Water.2022.3D.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 12 + }, + "collection": { + "title": "Avatar Collection", + "tmdbId": 87096, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 257.398, + "id": 16 + }, + { + "title": "Knives Out", + "originalTitle": "Knives Out", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Ножи наголо", + "id": 198 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "ナイブズ・アウト/名探偵と刃の館の秘密", + "id": 199 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Morning Bell", + "id": 200 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Knives Out - Ein Mord zum Dessert", + "id": 201 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Knives Out 1", + "id": 202 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "ฆาตกรรมหรรษา ใครฆ่าคุณปู่", + "id": 203 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Нож у леђа", + "id": 204 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "나이브스 아웃", + "id": 205 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Puñales por la espalda", + "id": 206 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Uz nažiem", + "id": 207 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Bıçaklar Çekildi", + "id": 208 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Достать ножи", + "id": 209 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "ナイブズ・アウト 名探偵と刃の館の秘密:2019", + "id": 210 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Kẻ Đâm Lén", + "id": 211 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 27, + "title": "Bıçaqlar Çəkildi", + "id": 1449 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "knives out", + "sizeOnDisk": 29536375581, + "status": "released", + "overview": "When renowned crime novelist Harlan Thrombey is found dead at his estate just after his 85th birthday, the inquisitive and debonair Detective Benoit Blanc is mysteriously enlisted to investigate. From Harlan's dysfunctional family to his devoted staff, Blanc sifts through a web of red herrings and self-serving lies to uncover the truth behind Harlan's untimely death.", + "inCinemas": "2019-11-27T00:00:00Z", + "physicalRelease": "2020-01-08T00:00:00Z", + "digitalRelease": "2020-02-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/17/poster.jpg?lastWrite=638321744698993704", + "remoteUrl": "https://image.tmdb.org/t/p/original/pThyQovXQrw2m0s9x82twj48Jq4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/17/fanart.jpg?lastWrite=638338022735656983", + "remoteUrl": "https://image.tmdb.org/t/p/original/4HWAQu28e2yaWrtupFPGFkdNU7V.jpg" + } + ], + "website": "https://www.lionsgate.com/movies/knives-out", + "year": 2019, + "hasFile": true, + "youTubeTrailerId": "qOg3AoRc4nI", + "studio": "Lionsgate", + "path": "/data/Knives Out (2019)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Knives Out (2019)", + "runtime": 131, + "cleanTitle": "knivesout", + "imdbId": "tt8946378", + "tmdbId": 546554, + "titleSlug": "546554", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Crime", + "Mystery" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 743807, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 11228, + "value": 7.845, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 82, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 97, + "type": "user" + } + }, + "movieFile": { + "movieId": 17, + "relativePath": "Knives Out (2019) Remux-1080p.mkv", + "path": "/data/Knives Out (2019)/Knives Out (2019) Remux-1080p.mkv", + "size": 29536375581, + "dateAdded": "2023-10-06T09:09:29Z", + "sceneName": "Knives.Out.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT-AsRequested", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:10:13", + "scanType": "Progressive", + "subtitles": "dut/eng" + }, + "originalFilePath": "Knives.Out.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT-AsRequested/Knives.Out.2019.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT-AsRequested.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FGT", + "edition": "", + "id": 13 + }, + "collection": { + "title": "Knives Out Collection", + "tmdbId": 722971, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 52.391, + "id": 17 + }, + { + "title": "The Unbearable Weight of Massive Talent", + "originalTitle": "The Unbearable Weight of Massive Talent", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "ข้านี่แหละ นิค “ฟักกลิ้ง” เคจ", + "id": 141 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "O Peso Insuportável de Um Enorme Talento", + "id": 142 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "Massive Talent", + "id": 143 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "喪盡癲才", + "id": 144 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "Spoža talanta nepanesamais smagums", + "id": 145 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "엄청난 재능의 견딜 수 없는 무게", + "id": 146 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "El Peso del Talento", + "id": 147 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "天才不能承受之重", + "id": 148 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "O Insuportável Peso de um Grande Talento", + "id": 149 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "참을 수 없는 무게의 미친 능력", + "id": 150 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "El insoportable peso de un talento descomunal", + "id": 151 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "Un Talent en Or Massif", + "id": 152 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "Üüratu talendi talumatu taak", + "id": 153 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 28, + "title": "ジ・アンベアラブル・ウェイト・オブ・マッシブ・タレント", + "id": 154 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "unbearable weight massive talent", + "sizeOnDisk": 9581580380, + "status": "released", + "overview": "Creatively unfulfilled and facing financial ruin, Nick Cage must accept a $1 million offer to attend the birthday of a dangerous superfan. Things take a wildly unexpected turn when Cage is recruited by a CIA operative and forced to live up to his own legend, channeling his most iconic and beloved on-screen characters in order to save himself and his loved ones.", + "inCinemas": "2022-04-20T00:00:00Z", + "physicalRelease": "2022-06-21T00:00:00Z", + "digitalRelease": "2022-06-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/18/poster.jpg?lastWrite=638321744697113601", + "remoteUrl": "https://image.tmdb.org/t/p/original/aqhLeieyTpTUKPOfZ3jzo2La0Mq.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/18/fanart.jpg?lastWrite=638321744697673632", + "remoteUrl": "https://image.tmdb.org/t/p/original/M7Kiquud2bjrhQvZXeIrvW0J4a.jpg" + } + ], + "website": "https://www.nickcage.movie", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "CKTRbKch2K4", + "studio": "Saturn Films", + "path": "/data/The Unbearable Weight of Massive Talent (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Unbearable Weight of Massive Talent (2022)", + "runtime": 107, + "cleanTitle": "theunbearableweightmassivetalent", + "imdbId": "tt11291274", + "tmdbId": 648579, + "titleSlug": "648579", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Action", + "Comedy", + "Crime" + ], + "tags": [], + "added": "2023-10-06T07:34:27Z", + "ratings": { + "imdb": { + "votes": 135746, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 1517, + "value": 6.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 68, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 87, + "type": "user" + } + }, + "movieFile": { + "movieId": 18, + "relativePath": "The Unbearable Weight of Massive Talent (2022) Remux-1080p.mkv", + "path": "/data/The Unbearable Weight of Massive Talent (2022)/The Unbearable Weight of Massive Talent (2022) Remux-1080p.mkv", + "size": 9581580380, + "dateAdded": "2023-10-07T03:37:05Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng/eng/spa/fre/eng", + "audioStreamCount": 7, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:46:51", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/eng/spa/spa/fre/fre/eng" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 2, + "name": "French" + } + ], + "edition": "", + "id": 16 + }, + "popularity": 32.828, + "id": 18 + }, + { + "title": "Colossal", + "originalTitle": "Colossal", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "Колоссальный", + "id": 242 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "Ella es un monstruo", + "id": 243 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "콜로설", + "id": 244 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "Colossal - Un monstruo incontrolable", + "id": 245 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "Colossal – Das Monster und ich", + "id": 246 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "シンクロナイズドモンスター", + "id": 247 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 42, + "title": "美女變怪獸", + "id": 248 + } + ], + "secondaryYear": 2016, + "secondaryYearSourceId": 0, + "sortTitle": "colossal", + "sizeOnDisk": 1308400025, + "status": "released", + "overview": "A woman discovers that severe catastrophic events are somehow connected to the mental breakdown from which she's suffering.", + "inCinemas": "2017-04-06T00:00:00Z", + "physicalRelease": "2017-07-31T00:00:00Z", + "digitalRelease": "2017-07-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/19/poster.jpg?lastWrite=638322834046931292", + "remoteUrl": "https://image.tmdb.org/t/p/original/4VOyofBd1pexblxtDZYtYIk7NI4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/19/fanart.jpg?lastWrite=638322834047581327", + "remoteUrl": "https://image.tmdb.org/t/p/original/aQUsuDDHofPco5YgXxEdObyisCs.jpg" + } + ], + "website": "http://sheiscolossal.com", + "year": 2017, + "hasFile": true, + "youTubeTrailerId": "LRqCFSrHPWA", + "studio": "Toy Fight Productions", + "path": "/data/Colossal (2017)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Colossal (2017)", + "runtime": 109, + "cleanTitle": "colossal", + "imdbId": "tt4680182", + "tmdbId": 339967, + "titleSlug": "339967", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Fantasy", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 67663, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 1889, + "value": 6.296, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 70, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 82, + "type": "user" + } + }, + "movieFile": { + "movieId": 19, + "relativePath": "Colossal (2017) Bluray-1080p.mkv", + "path": "/data/Colossal (2017)/Colossal (2017) Bluray-1080p.mkv", + "size": 1308400025, + "dateAdded": "2023-10-18T03:41:57Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:49:23", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 148 + }, + "popularity": 17.929, + "id": 19 + }, + { + "title": "The Angry Black Girl and Her Monster", + "originalTitle": "The Angry Black Girl and Her Monster", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "angry black girl her monster", + "sizeOnDisk": 1957880968, + "status": "released", + "overview": "Vicaria is a brilliant teenager who believes death is a disease that can be cured. After the brutal and sudden murder of her brother, she embarks on a dangerous journey to bring him back to life.", + "inCinemas": "2023-06-09T00:00:00Z", + "digitalRelease": "2023-06-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/20/poster.jpg?lastWrite=638322834046321258", + "remoteUrl": "https://image.tmdb.org/t/p/original/4c3rU9R5oYexKFWaAHAc195B0RN.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/20/fanart.jpg?lastWrite=638322834046591273", + "remoteUrl": "https://image.tmdb.org/t/p/original/ajIgkZtZ2mme1vYbrfKSV2ddOuq.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "yh7HWG7qn4E", + "studio": "Crypt TV", + "path": "/data/The Angry Black Girl and Her Monster (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Angry Black Girl and Her Monster (2023)", + "runtime": 91, + "cleanTitle": "theangryblackgirlhermonster", + "imdbId": "tt19896150", + "tmdbId": 1083858, + "titleSlug": "1083858", + "rootFolderPath": "/data/", + "genres": [ + "Horror" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 961, + "value": 5, + "type": "user" + }, + "tmdb": { + "votes": 28, + "value": 7.054, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 61, + "type": "user" + } + }, + "movieFile": { + "movieId": 20, + "relativePath": "The Angry Black Girl and Her Monster (2023) Remux-1080p.mkv", + "path": "/data/The Angry Black Girl and Her Monster (2023)/The Angry Black Girl and Her Monster (2023) Remux-1080p.mkv", + "size": 1957880968, + "dateAdded": "2023-10-07T19:28:07Z", + "sceneName": "The.Angry.Black.Girl.and.Her.Monster.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:32:03", + "scanType": "Progressive", + "subtitles": "eng/fre/spa" + }, + "originalFilePath": "The.Angry.Black.Girl.and.Her.Monster.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR/The.Angry.Black.Girl.and.Her.Monster.2023.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 19 + }, + "popularity": 36.145, + "id": 20 + }, + { + "title": "Oculus", + "originalTitle": "Oculus", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 44, + "title": "奥核之眼", + "id": 212 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 44, + "title": "鬼遮眼", + "id": 213 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 44, + "title": "The Mirror", + "id": 214 + } + ], + "secondaryYear": 2014, + "secondaryYearSourceId": 0, + "sortTitle": "oculus", + "sizeOnDisk": 3783875095, + "status": "released", + "overview": "A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.", + "inCinemas": "2014-04-03T00:00:00Z", + "physicalRelease": "2014-10-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/21/poster.jpg?lastWrite=638322834044971185", + "remoteUrl": "https://image.tmdb.org/t/p/original/3J25Xmt3zN9OpsTD5dLNwz7IirD.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/21/fanart.jpg?lastWrite=638322834045111192", + "remoteUrl": "https://image.tmdb.org/t/p/original/aT2nfNXuHBdKgkkZ2yNsyS3k9jo.jpg" + } + ], + "website": "", + "year": 2013, + "hasFile": true, + "youTubeTrailerId": "gA1dCfn8PBA", + "studio": "MICA Entertainment", + "path": "/data/Oculus (2013)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Oculus (2013)", + "runtime": 104, + "cleanTitle": "oculus", + "imdbId": "tt2388715", + "tmdbId": 157547, + "titleSlug": "157547", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Horror" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 135670, + "value": 6.5, + "type": "user" + }, + "tmdb": { + "votes": 2715, + "value": 6.441, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 61, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 21, + "relativePath": "Oculus (2013) Remux-1080p.mkv", + "path": "/data/Oculus (2013)/Oculus (2013) Remux-1080p.mkv", + "size": 3783875095, + "dateAdded": "2023-10-07T19:21:36Z", + "sceneName": "Oculus.2013.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:44:03", + "scanType": "Progressive", + "subtitles": "eng/spa" + }, + "originalFilePath": "Oculus.2013.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N/Oculus.2013.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 18 + }, + "popularity": 33.041, + "id": 21 + }, + { + "title": "As Above, So Below", + "originalTitle": "As Above, So Below", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "O Reflexo do Medo", + "id": 215 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Derin Kabus", + "id": 216 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Pod zemou", + "id": 217 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "แดนหลอนสยองใต้โลก", + "id": 218 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "地下に潜む怪人", + "id": 219 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Assim na Terra Como no Inferno", + "id": 220 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Así en la Tierra como en el Infierno", + "id": 221 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Katakombalar", + "id": 222 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Както горе, така и долу", + "id": 223 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Là-haut comme ici-bas", + "id": 224 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "U mraku katakombe", + "id": 225 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Pod zemí", + "id": 226 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Catacombes", + "id": 227 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Katakomben", + "id": 228 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Όπως ψηλά, έτσι και χαμηλά", + "id": 229 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Úgy fent, mint lent", + "id": 230 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Amok le'ma'ala", + "id": 231 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Necropolis - La città dei morti", + "id": 232 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Parīze: Mirušo pilsēta", + "id": 233 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Kaip danguje, taip ir po zeme", + "id": 234 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Jako w piekle, tak i na Ziemi", + "id": 235 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Precum in iad, asa si pe pamant", + "id": 236 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Париж: Город мертвых", + "id": 237 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Kako gore, tako dole", + "id": 238 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "忐忑", + "id": 239 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Париж. Місто мертвих", + "id": 240 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 45, + "title": "Hầm Mộ Ma Quái", + "id": 241 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "as above so below", + "sizeOnDisk": 4091529735, + "status": "released", + "overview": "When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.", + "inCinemas": "2014-08-14T00:00:00Z", + "physicalRelease": "2014-12-20T00:00:00Z", + "digitalRelease": "2014-12-20T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/22/poster.jpg?lastWrite=638329380017270676", + "remoteUrl": "https://image.tmdb.org/t/p/original/oJZSajKLJkoTOzSZQN2ZwRnPwHZ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/22/fanart.jpg?lastWrite=638329380017500688", + "remoteUrl": "https://image.tmdb.org/t/p/original/w2IVckABEbAZOhuuLcQRHdyI6uk.jpg" + } + ], + "website": "http://www.asabovesobelowmovie.com/", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "lVGDpcNmZxs", + "studio": "Brothers Dowdle Productions", + "path": "/data/As Above, So Below (2014)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/As Above, So Below (2014)", + "runtime": 93, + "cleanTitle": "asabovesobelow", + "imdbId": "tt2870612", + "tmdbId": 256274, + "titleSlug": "256274", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Horror", + "Thriller" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 105638, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 3118, + "value": 6.7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 39, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 28, + "type": "user" + } + }, + "movieFile": { + "movieId": 22, + "relativePath": "As Above, So Below (2014) Remux-1080p.mkv", + "path": "/data/As Above, So Below (2014)/As Above, So Below (2014) Remux-1080p.mkv", + "size": 4091529735, + "dateAdded": "2023-10-07T20:52:28Z", + "sceneName": "As.Above.So.Below.2014.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:33:08", + "scanType": "Progressive", + "subtitles": "eng/fre/spa/fre/ger/spa/ita/por/swe/dan/fin/dut/nor/ara/ice/fre/spa" + }, + "originalFilePath": "As.Above.So.Below.2014.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR/As.Above.So.Below.2014.BluRay.1080p.DTS-HD.MA.7.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 23 + }, + "popularity": 36.073, + "id": 22 + }, + { + "title": "The Super Mario Bros. Movie", + "originalTitle": "The Super Mario Bros. Movie", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Movie", + "id": 249 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros.", + "id": 250 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "슈퍼 마리오 브라더스", + "id": 251 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. Filmen", + "id": 252 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супербратья Марио", + "id": 253 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "فيلم سوبر ماريو بروس", + "id": 254 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros.: La película", + "id": 255 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Սուպեր Մարիո եղբայրները կինոյում", + "id": 256 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "เดอะ ซูเปอร์ มาริโอ้ บราเธอร์ส มูฟวี่", + "id": 257 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "超级马里奥兄弟大电影", + "id": 258 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Anh Em Super Mario", + "id": 259 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "ザ・スーパーマリオブラザーズ・ムービー", + "id": 260 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario brāļi: Filma", + "id": 261 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Broliai Super Mario. Filmas", + "id": 262 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "超級瑪利歐兄弟電影版", + "id": 263 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "سوپر ماریو: قارچ خور!", + "id": 264 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "برادران قارچ خور", + "id": 265 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "برادران سوپر ماریو", + "id": 266 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "فیلم سینمایی برادران سوپر ماریو", + "id": 267 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "قارچ خور: برادران سوپر ماریو", + "id": 268 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "سوپر ماریو", + "id": 269 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супербратья Марио в кино", + "id": 270 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Братья Супер Марио в кино", + "id": 271 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "超級玛利歐兄弟大電影", + "id": 272 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros.: La pel·lícula", + "id": 273 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "超级马力欧兄弟大电影", + "id": 274 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "超級瑪利歐兄弟大電影", + "id": 275 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супер Марио Bros.: Филмът", + "id": 276 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. Film", + "id": 277 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. le film", + "id": 278 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "სუპერ მარიო ძმკბის ფილმი", + "id": 279 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Der Super Mario Bros. Film", + "id": 280 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. Η Ταινία", + "id": 281 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "האחים סופר מריו - הסרט", + "id": 282 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "द सुपर मारियो ब्रदर्स मूवी", + "id": 283 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. bíómyndin", + "id": 284 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. - Il film", + "id": 285 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. O Filme", + "id": 286 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario braća film", + "id": 287 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супер Марио браћа филм", + "id": 288 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. vo filme", + "id": 289 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Bros. ve filmu", + "id": 290 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Brata Super Mario film", + "id": 291 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Süper Mario Kardeşler Filmi", + "id": 292 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Брати Супер Маріо в кіно", + "id": 293 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Super Mario Qardaşları", + "id": 294 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супер Марио Браќа Филм", + "id": 295 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супер Марио ах Дүүс", + "id": 296 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "ស៊ូប៉ាម៉ារីអូប្រូថអឺស: ភាពយន្", + "id": 297 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "ຊູເປີມາຣິໂອ ໂບຣສ ເດິມູວີ", + "id": 298 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 46, + "title": "Супер Марио кинода", + "id": 299 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "super mario bros movie", + "sizeOnDisk": 25829904305, + "status": "released", + "overview": "While working underground to fix a water main, Brooklyn plumbers—and brothers—Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated, Mario embarks on an epic quest to find Luigi.", + "inCinemas": "2023-04-05T00:00:00Z", + "physicalRelease": "2023-06-13T00:00:00Z", + "digitalRelease": "2023-05-16T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/23/poster.jpg?lastWrite=638322834046651277", + "remoteUrl": "https://image.tmdb.org/t/p/original/qNBAXBIQlnOThrVvA6mA2B5ggV6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/23/fanart.jpg?lastWrite=638322834047551326", + "remoteUrl": "https://image.tmdb.org/t/p/original/9n2tJBplPbgR2ca05hS5CKXwP2c.jpg" + } + ], + "website": "https://www.thesupermariobros.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "RjNcTBXTk4I", + "studio": "Universal Pictures", + "path": "/data/The Super Mario Bros. Movie (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Super Mario Bros. Movie (2023)", + "runtime": 93, + "cleanTitle": "thesupermariobrosmovie", + "imdbId": "tt6718170", + "tmdbId": 502356, + "titleSlug": "502356", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Animation", + "Family", + "Adventure" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 198184, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 6949, + "value": 7.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 46, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 59, + "type": "user" + } + }, + "movieFile": { + "movieId": 23, + "relativePath": "The Super Mario Bros. Movie (2023) Remux-1080p.mkv", + "path": "/data/The Super Mario Bros. Movie (2023)/The Super Mario Bros. Movie (2023) Remux-1080p.mkv", + "size": 25829904305, + "dateAdded": "2023-10-07T20:06:15Z", + "sceneName": "The.Super.Mario.Bros.Movie.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:32:24", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "The.Super.Mario.Bros.Movie.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N/The.Super.Mario.Bros.Movie.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 20 + }, + "popularity": 573.486, + "id": 23 + }, + { + "title": "The Godfather Part III", + "originalTitle": "The Godfather Part III", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "El Padrino III", + "id": 496 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Le Parrain, 3e partie", + "id": 497 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "The Godfather Part 3", + "id": 498 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Gudfadern 3", + "id": 499 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "El Padrino Parte III", + "id": 500 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "The Godfather 3", + "id": 501 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "教父 III", + "id": 502 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Крёстный отец 3", + "id": 503 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "O Poderoso Chefão 3", + "id": 504 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Le Parrain - 3ème partie", + "id": 505 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "대부 3 - 재편집판", + "id": 506 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Baba 3", + "id": 507 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "A keresztapa III.", + "id": 508 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "El padrí: 3a part", + "id": 509 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Der Pate III - The Godfather", + "id": 510 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "O Poderoso Chefão de Mario Puzo ̶ Desfecho: A Morte de Michael Corleone", + "id": 511 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Le parrain, Coda : La mort de Michael Corleone", + "id": 512 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "教父终章:迈克·柯里昂之死", + "id": 513 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "教父3", + "id": 514 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "El Padrino. Epilogo: La muerte de Michael Corleone", + "id": 515 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Der Pate, Epilog: Der Tod von Michael Corleone", + "id": 516 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Le Parrain de Mario Puzo, épilogue : La mort de Michael Corleone", + "id": 517 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Il Padrino, epilogo: La morte di Michael Corleone", + "id": 518 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Il Padrino Coda - La morte di Michael Corleone", + "id": 519 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "El padrino de Mario Puzo, Epílogo: La muerte de Michael Corleone", + "id": 520 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "The Godfather Coda: The Death of Michael Corleone", + "id": 521 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Mario Puzo's The Godfather, Coda: The Death of Michael Corleone", + "id": 522 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Ojciec chrzestny III", + "id": 523 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "ゴッドファーザー パート スリー", + "id": 524 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "ゴッドファーザー PART 3", + "id": 525 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "ゴッドファーザー マイケル・コルレオーネの最期", + "id": 526 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "ゴッドファーザー 最終章 : マイケル・コルレオーネの最期", + "id": 527 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Der Pate 3", + "id": 528 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "ゴッドファーザー PART 3:1990", + "id": 529 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Mario Puzo's The Godfather: The Death of Michael Corleone", + "id": 530 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 47, + "title": "Xaç Atası 3", + "id": 1435 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "godfather part iii", + "sizeOnDisk": 5946252099, + "status": "released", + "overview": "In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.", + "inCinemas": "1990-12-25T00:00:00Z", + "physicalRelease": "2000-12-07T00:00:00Z", + "digitalRelease": "2002-08-17T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/24/poster.jpg?lastWrite=638324194576579381", + "remoteUrl": "https://image.tmdb.org/t/p/original/lm3pQ2QoQ16pextRsmnUbG2onES.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/24/fanart.jpg?lastWrite=638324194584629818", + "remoteUrl": "https://image.tmdb.org/t/p/original/zNnjHLDtV8Ti3aworltaeaLMov4.jpg" + } + ], + "website": "", + "year": 1990, + "hasFile": true, + "youTubeTrailerId": "ipLJ2_fgmgk", + "studio": "Paramount", + "path": "/data/The Godfather Part III (1990)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Godfather Part III (1990)", + "runtime": 162, + "cleanTitle": "thegodfatherpartiii", + "imdbId": "tt0099674", + "tmdbId": 242, + "titleSlug": "242", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 415044, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 5658, + "value": 7.423, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 60, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 66, + "type": "user" + } + }, + "movieFile": { + "movieId": 24, + "relativePath": "The Godfather Part III (1990) Remux-1080p.mkv", + "path": "/data/The Godfather Part III (1990)/The Godfather Part III (1990) Remux-1080p.mkv", + "size": 5946252099, + "dateAdded": "2023-10-08T13:49:52Z", + "sceneName": "The.Godfather.Part.III.The.Coppola.Restoration.1990.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:50:15", + "scanType": "Progressive", + "subtitles": "eng/eng/dan/ger/fin/fre/dut/nor/swe/tur" + }, + "originalFilePath": "The.Godfather.Part.III.The.Coppola.Restoration.1990.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested/The.Godfather.Part.III.The.Coppola.Restoration.1990.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 26 + }, + "collection": { + "title": "The Godfather Collection", + "tmdbId": 230, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 60.114, + "id": 24 + }, + { + "title": "The Godfather Part II", + "originalTitle": "The Godfather Part II", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "El Padrino II", + "id": 300 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "教父续集", + "id": 301 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Kummisetä, osa II", + "id": 302 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Le Parrain 2", + "id": 303 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "教父 II", + "id": 304 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "The Godfather Part 2", + "id": 305 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Mario Puzo's The Godfather: Part II", + "id": 306 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "The Godfather 2", + "id": 307 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "O Poderoso Chefão 2", + "id": 308 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Крёстный отец 2", + "id": 309 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "El padrino parte II", + "id": 310 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "教父 2", + "id": 311 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "El Padrino. Parte 2", + "id": 312 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "De Peetvader Deel II", + "id": 313 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Gudfadern del II", + "id": 314 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Baba 2", + "id": 315 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Le Parrain - 2ème partie", + "id": 316 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "El padrí: 2a part", + "id": 317 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "教父Ⅱ", + "id": 318 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Ojciec chrzestny II", + "id": 319 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Der Pate - Teil II", + "id": 320 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Der Pate 2", + "id": 321 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "ゴッドファーザーPART2", + "id": 322 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Der Pate II", + "id": 323 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "ゴッドファーザー PART II:1974", + "id": 324 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Ο Νονός - Μέρος 2ο", + "id": 325 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 48, + "title": "Xaç Atası 2", + "id": 1434 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "godfather part ii", + "sizeOnDisk": 7513410911, + "status": "released", + "overview": "In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.", + "inCinemas": "1974-12-20T00:00:00Z", + "physicalRelease": "2000-12-07T00:00:00Z", + "digitalRelease": "2002-08-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/25/poster.jpg?lastWrite=638322834049011406", + "remoteUrl": "https://image.tmdb.org/t/p/original/hek3koDUyRQk7FIhPXsa6mT2Zc3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/25/fanart.jpg?lastWrite=638322834050011460", + "remoteUrl": "https://image.tmdb.org/t/p/original/kGzFbGhp99zva6oZODW5atUtnqi.jpg" + } + ], + "website": "", + "year": 1974, + "hasFile": true, + "youTubeTrailerId": "rcU6DUUUd7k", + "studio": "Paramount", + "path": "/data/The Godfather Part II (1974)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Godfather Part II (1974)", + "runtime": 202, + "cleanTitle": "thegodfatherpartii", + "imdbId": "tt0071562", + "tmdbId": 240, + "titleSlug": "240", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 1329692, + "value": 9, + "type": "user" + }, + "tmdb": { + "votes": 11367, + "value": 8.591, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 90, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 96, + "type": "user" + } + }, + "movieFile": { + "movieId": 25, + "relativePath": "The Godfather Part II (1974) Remux-1080p.mkv", + "path": "/data/The Godfather Part II (1974)/The Godfather Part II (1974) Remux-1080p.mkv", + "size": 7513410911, + "dateAdded": "2023-10-07T23:52:55Z", + "sceneName": "The.Godfather.Part.II.The.Coppola.Restoration.1974.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "3:22:06", + "scanType": "Progressive", + "subtitles": "eng/eng/dan/ger/fin/fre/dut/nor/swe/tur" + }, + "originalFilePath": "The.Godfather.Part.II.The.Coppola.Restoration.1974.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested/The.Godfather.Part.II.The.Coppola.Restoration.1974.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 24 + }, + "collection": { + "title": "The Godfather Collection", + "tmdbId": 230, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 66.335, + "id": 25 + }, + { + "title": "The Godfather", + "originalTitle": "The Godfather", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "The Godfather Part 1", + "id": 326 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "The Godfather: The Coppola Restoration", + "id": 327 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Le Parrain 1", + "id": 328 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "De Peetvader", + "id": 329 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Le Parrain - 1ère partie", + "id": 330 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "El Padrino I", + "id": 331 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "教父1", + "id": 332 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Крёстный отец", + "id": 333 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "O Poderoso Chefão I", + "id": 334 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Baba", + "id": 335 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Krusttēvs", + "id": 336 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Кум", + "id": 337 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "ゴッドファーザー", + "id": 338 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Ojciec chrzestny", + "id": 339 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "پدرخوانده", + "id": 340 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 49, + "title": "Xaç Atası", + "id": 1433 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "godfather", + "sizeOnDisk": 6532875231, + "status": "released", + "overview": "Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.", + "inCinemas": "1972-03-14T00:00:00Z", + "physicalRelease": "1997-11-20T00:00:00Z", + "digitalRelease": "2016-06-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/26/poster.jpg?lastWrite=638322834049931456", + "remoteUrl": "https://image.tmdb.org/t/p/original/3bhkrj58Vtu7enYsRolD1fZdja1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/26/fanart.jpg?lastWrite=638322834050421483", + "remoteUrl": "https://image.tmdb.org/t/p/original/tmU7GeKVybMWFButWEGl2M4GeiP.jpg" + } + ], + "website": "http://www.thegodfather.com/", + "year": 1972, + "hasFile": true, + "youTubeTrailerId": "Ew9ngL1GZvs", + "studio": "Paramount", + "path": "/data/The Godfather (1972)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Godfather (1972)", + "runtime": 175, + "cleanTitle": "thegodfather", + "imdbId": "tt0068646", + "tmdbId": 238, + "titleSlug": "238", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 1958266, + "value": 9.2, + "type": "user" + }, + "tmdb": { + "votes": 18805, + "value": 8.709, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 100, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 97, + "type": "user" + } + }, + "movieFile": { + "movieId": 26, + "relativePath": "The Godfather (1972) Remux-1080p.mkv", + "path": "/data/The Godfather (1972)/The Godfather (1972) Remux-1080p.mkv", + "size": 6532875231, + "dateAdded": "2023-10-08T13:52:24Z", + "sceneName": "The.Godfather.Part.I.The.Coppola.Restoration.1972.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:57:09", + "scanType": "Progressive", + "subtitles": "eng/eng/ger/dan/fin/fre/dut/nor/swe/tur" + }, + "originalFilePath": "The.Godfather.Part.I.The.Coppola.Restoration.1972.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested/The.Godfather.Part.I.The.Coppola.Restoration.1972.BluRay.1080p.TrueHD.5.1.AVC.REMUX-FraMeSToR-AsRequested.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 27 + }, + "collection": { + "title": "The Godfather Collection", + "tmdbId": 230, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 122.863, + "id": 26 + }, + { + "title": "Top Gun", + "originalTitle": "Top Gun", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "탑건", + "id": 341 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Топ Ган", + "id": 342 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Tippkutt", + "id": 344 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Найкращий стрілець", + "id": 345 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "توب غان", + "id": 346 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Top Gun: Ases Indomáveis", + "id": 347 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "捍衛戰士", + "id": 348 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Τοπ Γκαν", + "id": 349 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "טופ גאן 1", + "id": 350 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "トップガン", + "id": 351 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "トップガン:1986", + "id": 352 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 50, + "title": "Top Gun. Ídolos del aire", + "id": 353 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "top gun", + "sizeOnDisk": 33631785326, + "status": "released", + "overview": "For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw, being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy, as well as personal demons, will threaten Pete's dreams of becoming an ace pilot.", + "inCinemas": "1986-05-16T00:00:00Z", + "physicalRelease": "1987-01-01T00:00:00Z", + "digitalRelease": "2009-04-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/27/poster.jpg?lastWrite=638322834052001569", + "remoteUrl": "https://image.tmdb.org/t/p/original/xUuHj3CgmZQ9P2cMaqQs4J0d4Zc.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/27/fanart.jpg?lastWrite=638333701847630095", + "remoteUrl": "https://image.tmdb.org/t/p/original/jILeJ60zPpIjjJHGSmIeY4eO30t.jpg" + } + ], + "website": "https://www.paramountpictures.com/movies/top-gun", + "year": 1986, + "hasFile": true, + "youTubeTrailerId": "ArOMXELHiLw", + "studio": "Paramount", + "path": "/data/Top Gun (1986)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Top Gun (1986)", + "runtime": 110, + "cleanTitle": "topgun", + "imdbId": "tt0092099", + "tmdbId": 744, + "titleSlug": "744", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Romance", + "Drama", + "Action" + ], + "tags": [], + "added": "2023-10-07T13:50:03Z", + "ratings": { + "imdb": { + "votes": 484425, + "value": 6.9, + "type": "user" + }, + "tmdb": { + "votes": 7710, + "value": 7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 50, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 58, + "type": "user" + } + }, + "movieFile": { + "movieId": 27, + "relativePath": "Top Gun (1986) Remux-1080p.mkv", + "path": "/data/Top Gun (1986)/Top Gun (1986) Remux-1080p.mkv", + "size": 33631785326, + "dateAdded": "2023-10-07T20:47:53Z", + "sceneName": "Top.Gun.1986.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng/spa/fre/jpn/jpn/por/eng", + "audioStreamCount": 9, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:49:26", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/dan/spa/spa/fre/fre/jpn/dut/nor/por/por/fin/swe/eng/spa/fre/jpn/por/jpn" + }, + "originalFilePath": "Top.Gun.1986.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/Top.Gun.1986.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 2, + "name": "French" + }, + { + "id": 8, + "name": "Japanese" + }, + { + "id": 18, + "name": "Portuguese" + } + ], + "releaseGroup": "FGT", + "edition": "REMASTERED", + "id": 22 + }, + "collection": { + "title": "Top Gun Collection", + "tmdbId": 531330, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 48.704, + "id": 27 + }, + { + "title": "The Kashmir Files", + "originalTitle": "द कश्मीर फ़ाइल्स", + "originalLanguage": { + "id": 26, + "name": "Hindi" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "kashmir files", + "sizeOnDisk": 2592032928, + "status": "released", + "overview": "Based on a true tragedy, the emotionally triggering film sheds light on the plight of Kashmiri Pandits (Hindus), a religious minority in the 1990s Kashmir valley, who were compelled to flee their homes by the Islamic militants.", + "inCinemas": "2022-03-11T00:00:00Z", + "digitalRelease": "2022-05-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/28/poster.jpg?lastWrite=638323418301745501", + "remoteUrl": "https://image.tmdb.org/t/p/original/k079zl4TcFVK0n5CypQeYqSkwdU.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/28/fanart.jpg?lastWrite=638323418303895617", + "remoteUrl": "https://image.tmdb.org/t/p/original/fGIrwBpsouzVYQKcOii88lA1MXY.jpg" + } + ], + "website": "", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "", + "studio": "Abhishek Agarwal Arts", + "path": "/data/The Kashmir Files (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/The Kashmir Files (2022)", + "runtime": 170, + "cleanTitle": "thekashmirfiles", + "imdbId": "tt10811166", + "tmdbId": 900783, + "titleSlug": "900783", + "rootFolderPath": "/data/", + "genres": [ + "History", + "Drama" + ], + "tags": [], + "added": "2023-10-08T06:03:49Z", + "ratings": { + "imdb": { + "votes": 571780, + "value": 8.6, + "type": "user" + }, + "tmdb": { + "votes": 47, + "value": 7.109, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 40, + "type": "user" + } + }, + "movieFile": { + "movieId": 28, + "relativePath": "The Kashmir Files (2022) WEBRip-1080p.mkv", + "path": "/data/The Kashmir Files (2022)/The Kashmir Files (2022) WEBRip-1080p.mkv", + "size": 2592032928, + "dateAdded": "2023-10-08T06:05:17Z", + "sceneName": "The.Kashmir.Files.2022.1080p.WEBRip.DDP.5.1.H.265.-iVy", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 192000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "hin/kan/tam/tel", + "audioStreamCount": 4, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 25, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:43:45", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "The.Kashmir.Files.2022.1080p.WEBRip.DDP.5.1.H.265.-iVy/The.Kashmir.Files.2022.1080p.WEBRip.DDP.5.1.H.265.-iVy.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 26, + "name": "Hindi" + }, + { + "id": 43, + "name": "Tamil" + }, + { + "id": 45, + "name": "Telugu" + } + ], + "releaseGroup": "iVy", + "edition": "", + "id": 25 + }, + "collection": { + "title": "Untold Stories of Independent India Collection", + "tmdbId": 900844, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 8.448, + "id": 28 + }, + { + "title": "Pain Hustlers", + "originalTitle": "Pain Hustlers", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "pain hustlers", + "sizeOnDisk": 0, + "status": "announced", + "overview": "After losing her job, a single mom falls into a lucrative but ultimately dangerous scheme selling prescription drugs.", + "inCinemas": "2023-11-03T00:00:00Z", + "digitalRelease": "2023-10-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/29/poster.jpg?lastWrite=638329380086134474", + "remoteUrl": "https://image.tmdb.org/t/p/original/m0gM9jE1KmCkXZRqkeNYEQZdVsZ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/29/fanart.jpg?lastWrite=638323704253382448", + "remoteUrl": "https://image.tmdb.org/t/p/original/jHeTYF5y86h0eJM09px6tgJqd0z.jpg" + } + ], + "website": "https://www.netflix.com/title/81614419", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "HbPeXsdamT4", + "studio": "Grey Matter Productions", + "path": "/data/Pain Hustlers (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Pain Hustlers (2023)", + "runtime": 122, + "cleanTitle": "painhustlers", + "imdbId": "tt15257160", + "tmdbId": 862968, + "titleSlug": "862968", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 324, + "value": 5.7, + "type": "user" + }, + "tmdb": { + "votes": 2, + "value": 4, + "type": "user" + } + }, + "popularity": 28.096, + "id": 29 + }, + { + "title": "GoodFellas", + "originalTitle": "GoodFellas", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Buenos Muchachos", + "id": 388 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Sıkı Dostlar", + "id": 389 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Τα καλά παιδιά", + "id": 390 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "좋은 친구들", + "id": 391 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Les Affranchis", + "id": 392 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Mafiabrødre", + "id": 393 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "盗亦有道", + "id": 394 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Maffiabröder", + "id": 395 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Славные парни", + "id": 396 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Добри момци", + "id": 397 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "GoodFellas – Drei Jahrzehnte in der Mafia", + "id": 398 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Chłopcy z ferajny", + "id": 399 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Gangsterët", + "id": 400 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "الأصدقاء الطيبون", + "id": 401 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "الرفاق الصالحون", + "id": 402 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Փառավոր տղաներ", + "id": 403 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Добри момчета", + "id": 405 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Un dels nostres", + "id": 406 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "好家伙", + "id": 407 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "四海好傢伙", + "id": 408 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Dobri momci", + "id": 409 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Mafiáni", + "id": 410 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Omad poisid", + "id": 411 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Mafiaveljet", + "id": 412 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Un dos nosos", + "id": 413 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "მაგარი ბიჭები", + "id": 414 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "החבר'ה הטובים", + "id": 415 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Nagymenők", + "id": 416 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Quei bravi ragazzi", + "id": 417 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "グッドフェローズ", + "id": 418 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Labie puiši", + "id": 419 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Geri vyrukai", + "id": 420 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "ഗുഡ് ഫെല്ലാസ്", + "id": 421 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "رفقای خوب", + "id": 422 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Os Bons Companheiros", + "id": 423 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Tudo Bons Rapazes", + "id": 424 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "ښه دوستان", + "id": 425 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Băieți buni", + "id": 426 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Dobri fantje", + "id": 427 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Uno de los nuestros", + "id": 428 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "குட்பெலாஸ்", + "id": 429 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "గుడ్ ఫెల్లాస్", + "id": 430 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "คนดีเหยียบฟ้า", + "id": 431 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Славні хлопці", + "id": 432 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Chiến Hữu", + "id": 433 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Möhkəm Dostlar", + "id": 1436 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 56, + "title": "Wise Guys", + "id": 1445 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "goodfellas", + "sizeOnDisk": 9368610185, + "status": "released", + "overview": "The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.", + "inCinemas": "1990-09-12T00:00:00Z", + "physicalRelease": "1999-01-27T00:00:00Z", + "digitalRelease": "2009-04-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/30/poster.jpg?lastWrite=638335430162137320", + "remoteUrl": "https://image.tmdb.org/t/p/original/aKuFiU82s5ISJpGZp7YkIr3kCUd.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/30/fanart.jpg?lastWrite=638335430162287328", + "remoteUrl": "https://image.tmdb.org/t/p/original/sw7mordbZxgITU877yTpZCud90M.jpg" + } + ], + "website": "http://www.warnerbros.com/goodfellas", + "year": 1990, + "hasFile": true, + "youTubeTrailerId": "PTBRNXGQR9Q", + "studio": "Winkler Films", + "path": "/data/GoodFellas (1990)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/GoodFellas (1990)", + "runtime": 145, + "cleanTitle": "goodfellas", + "imdbId": "tt0099685", + "tmdbId": 769, + "titleSlug": "769", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 1219898, + "value": 8.7, + "type": "user" + }, + "tmdb": { + "votes": 11814, + "value": 8.466, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 92, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 94, + "type": "user" + } + }, + "movieFile": { + "movieId": 30, + "relativePath": "GoodFellas (1990) Remux-1080p.mkv", + "path": "/data/GoodFellas (1990)/GoodFellas (1990) Remux-1080p.mkv", + "size": 9368610185, + "dateAdded": "2023-10-08T15:44:38Z", + "sceneName": "Goodfellas.1990.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/fre/ger/ita/spa/por/cze/hun/pol/rus/tha/tur/eng/eng", + "audioStreamCount": 14, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:25:21", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/fre/ger/ita/spa/dut/chi/chi/chi/kor/spa/por/cze/gre/heb/hun/pol/por/rum/rus/tha/tur" + }, + "originalFilePath": "Goodfellas.1990.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/Goodfellas.1990.REMASTERED.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 2, + "name": "French" + }, + { + "id": 4, + "name": "German" + }, + { + "id": 5, + "name": "Italian" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 18, + "name": "Portuguese" + }, + { + "id": 25, + "name": "Czech" + }, + { + "id": 22, + "name": "Hungarian" + }, + { + "id": 12, + "name": "Polish" + }, + { + "id": 11, + "name": "Russian" + }, + { + "id": 28, + "name": "Thai" + }, + { + "id": 17, + "name": "Turkish" + } + ], + "releaseGroup": "FGT", + "edition": "REMASTERED", + "id": 30 + }, + "popularity": 54.756, + "id": 30 + }, + { + "title": "Green Book", + "originalTitle": "Green Book", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 57, + "title": "Zeljonaja kniga", + "id": 354 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 57, + "title": "Zelenaja kniga", + "id": 355 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 57, + "title": "グリーンブック:2018", + "id": 356 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 57, + "title": "幸福綠皮書", + "id": 357 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "green book", + "sizeOnDisk": 9164511860, + "status": "released", + "overview": "Tony Lip, a bouncer in 1962, is hired to drive pianist Don Shirley on a tour through the Deep South in the days when African Americans, forced to find alternate accommodations and services due to segregation laws below the Mason-Dixon Line, relied on a guide called The Negro Motorist Green Book.", + "inCinemas": "2018-11-21T00:00:00Z", + "physicalRelease": "2019-03-12T00:00:00Z", + "digitalRelease": "2019-04-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/31/poster.jpg?lastWrite=638323704246372081", + "remoteUrl": "https://image.tmdb.org/t/p/original/7BsvSuDQuoqhWmU2fL7W2GOcZHU.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/31/fanart.jpg?lastWrite=638323704248702203", + "remoteUrl": "https://image.tmdb.org/t/p/original/2Xe9lISpwXKhvKiHttbFfVRERQX.jpg" + } + ], + "website": "http://GreenBookFilm.com", + "year": 2018, + "hasFile": true, + "youTubeTrailerId": "QkZxoko_HC0", + "studio": "Participant", + "path": "/data/Green Book (2018)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Green Book (2018)", + "runtime": 130, + "cleanTitle": "greenbook", + "imdbId": "tt6966692", + "tmdbId": 490132, + "titleSlug": "490132", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Comedy" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 538628, + "value": 8.2, + "type": "user" + }, + "tmdb": { + "votes": 10599, + "value": 8.242, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 69, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 77, + "type": "user" + } + }, + "movieFile": { + "movieId": 31, + "relativePath": "Green Book (2018) Remux-1080p.mkv", + "path": "/data/Green Book (2018)/Green Book (2018) Remux-1080p.mkv", + "size": 9164511860, + "dateAdded": "2023-10-08T16:17:43Z", + "sceneName": "Green.Book.2018.REMUX.1080p.Blu-ray.AVC.TrueHD.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:10:04", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "Green.Book.2018.REMUX.1080p.Blu-ray.AVC.TrueHD.DTS-HD.MA.7.1-LEGi0N/Green.Book.2018.REMUX.1080p.Blu-ray.AVC.TrueHD.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 33 + }, + "popularity": 53.667, + "id": 31 + }, + { + "title": "Moonlight", + "originalTitle": "Moonlight", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "月亮喜欢蓝", + "id": 359 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Місячне світло", + "id": 360 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Lumina lunii", + "id": 361 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Luz de luna", + "id": 362 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Kuuvalgus", + "id": 363 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Mesečina", + "id": 364 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Мiсячне сяйво", + "id": 365 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Anh Trang", + "id": 366 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Holdfény", + "id": 367 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Лунный свет", + "id": 368 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Σεληνόφως", + "id": 369 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Menesiena", + "id": 370 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "Ay Işığı", + "id": 371 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "문라이트", + "id": 372 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "მთვარის შუქი", + "id": 373 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 58, + "title": "ムーンライト:2016", + "id": 374 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "moonlight", + "sizeOnDisk": 3095247150, + "status": "released", + "overview": "The tender, heartbreaking story of a young man’s struggle to find himself, told across three defining chapters in his life as he experiences the ecstasy, pain, and beauty of falling in love, while grappling with his own sexuality.", + "inCinemas": "2016-11-18T00:00:00Z", + "physicalRelease": "2017-02-28T00:00:00Z", + "digitalRelease": "2017-12-24T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/32/poster.jpg?lastWrite=638323704253382448", + "remoteUrl": "https://image.tmdb.org/t/p/original/4911T5FbJ9eD2Faz5Z8cT3SUhU3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/32/fanart.jpg?lastWrite=638337158596982035", + "remoteUrl": "https://image.tmdb.org/t/p/original/A9KPbYTQvWsp51Lgz85ukVkFrKf.jpg" + } + ], + "website": "http://www.moonlight-movie.com", + "year": 2016, + "hasFile": true, + "youTubeTrailerId": "9NJj12tJzqc", + "studio": "A24", + "path": "/data/Moonlight (2016)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Moonlight (2016)", + "runtime": 111, + "cleanTitle": "moonlight", + "imdbId": "tt4975722", + "tmdbId": 376867, + "titleSlug": "376867", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 323869, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 6665, + "value": 7.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 99, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 98, + "type": "user" + } + }, + "movieFile": { + "movieId": 32, + "relativePath": "Moonlight (2016) Remux-1080p.mkv", + "path": "/data/Moonlight (2016)/Moonlight (2016) Remux-1080p.mkv", + "size": 3095247150, + "dateAdded": "2023-10-08T15:21:07Z", + "sceneName": "Moonlight.2016.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:50:56", + "scanType": "Progressive", + "subtitles": "eng/spa" + }, + "originalFilePath": "Moonlight.2016.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N/Moonlight.2016.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 28 + }, + "popularity": 24.575, + "id": 32 + }, + { + "title": "The Artist", + "originalTitle": "The Artist", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Ha'artist", + "id": 375 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Umjetnik", + "id": 376 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Glumac", + "id": 377 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "El artista", + "id": 378 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Umelec", + "id": 379 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "아티스트", + "id": 380 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "L'artiste", + "id": 381 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Nghe si", + "id": 382 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "Beauty Spot", + "id": 383 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 59, + "title": "星光夢裏人", + "id": 384 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "artist", + "sizeOnDisk": 2852894735, + "status": "released", + "overview": "Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.", + "inCinemas": "2011-10-12T00:00:00Z", + "physicalRelease": "2012-03-14T00:00:00Z", + "digitalRelease": "2015-04-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/33/poster.jpg?lastWrite=638323704247332131", + "remoteUrl": "https://image.tmdb.org/t/p/original/z68py0ZqPgeacGPG54AGVRbNBS7.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/33/fanart.jpg?lastWrite=638323704249362237", + "remoteUrl": "https://image.tmdb.org/t/p/original/bYimqNnizPUCnL5HOdoCW02IGmH.jpg" + } + ], + "website": "http://www.orange-studio.fr/film/264/the-artist.html", + "year": 2011, + "hasFile": true, + "youTubeTrailerId": "qjCQmpNkBI4", + "studio": "uFilm", + "path": "/data/The Artist (2011)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Artist (2011)", + "runtime": 100, + "cleanTitle": "theartist", + "imdbId": "tt1655442", + "tmdbId": 74643, + "titleSlug": "74643", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 246209, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 3035, + "value": 7.453, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 89, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 95, + "type": "user" + } + }, + "movieFile": { + "movieId": 33, + "relativePath": "The Artist (2011) Remux-1080p.mkv", + "path": "/data/The Artist (2011)/The Artist (2011) Remux-1080p.mkv", + "size": 2852894735, + "dateAdded": "2023-10-08T15:30:07Z", + "sceneName": "The.Artist.2011.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DJK", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/fre", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:40:28", + "scanType": "Progressive", + "subtitles": "fre/eng/eng/eng/eng/dut/por/spa" + }, + "originalFilePath": "The.Artist.2011.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DJK/The.Artist.2011.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DJK.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 2, + "name": "French" + } + ], + "releaseGroup": "DJK", + "edition": "", + "id": 29 + }, + "popularity": 9.601, + "id": 33 + }, + { + "title": "Michael Clayton", + "originalTitle": "Michael Clayton", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 60, + "title": "Conduta de Risco", + "id": 385 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 60, + "title": "Майкл Клейтон", + "id": 386 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 60, + "title": "Michael Clayton - Uma Questão de Consciência", + "id": 387 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "michael clayton", + "sizeOnDisk": 3010265130, + "status": "released", + "overview": "A law firm brings in its \"fixer\" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.", + "inCinemas": "2007-09-28T00:00:00Z", + "physicalRelease": "2008-07-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/34/poster.jpg?lastWrite=638330244482249365", + "remoteUrl": "https://image.tmdb.org/t/p/original/hhkW4yVIGo8Bee3UITKvqOvhNMG.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/34/fanart.jpg?lastWrite=638330244487649662", + "remoteUrl": "https://image.tmdb.org/t/p/original/qyFg7CkPSsCrYhn1Wy2w3BRpUTy.jpg" + } + ], + "website": "http://michaelclayton.warnerbros.com/", + "year": 2007, + "hasFile": true, + "youTubeTrailerId": "5kJRYBhG43Q", + "studio": "Castle Rock Entertainment", + "path": "/data/Michael Clayton (2007)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Michael Clayton (2007)", + "runtime": 120, + "cleanTitle": "michaelclayton", + "imdbId": "tt0465538", + "tmdbId": 4566, + "titleSlug": "4566", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Thriller", + "Mystery" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 171227, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 1560, + "value": 6.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 82, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 90, + "type": "user" + } + }, + "movieFile": { + "movieId": 34, + "relativePath": "Michael Clayton (2007) Remux-1080p.mkv", + "path": "/data/Michael Clayton (2007)/Michael Clayton (2007) Remux-1080p.mkv", + "size": 3010265130, + "dateAdded": "2023-10-08T17:10:53Z", + "sceneName": "Michael.Clayton.2007.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-KRaLiMaRKo", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:59:38", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/fre/ger/spa" + }, + "originalFilePath": "Michael.Clayton.2007.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-KRaLiMaRKo/Michael.Clayton.2007.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-KRaLiMaRKo.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KRaLiMaRKo", + "edition": "", + "id": 39 + }, + "popularity": 14.449, + "id": 34 + }, + { + "title": "The Wrestler", + "originalTitle": "The Wrestler", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Maadleja", + "id": 434 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Zapasnik", + "id": 435 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Рестлер", + "id": 436 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Le Lutteur", + "id": 437 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "A pankrátor", + "id": 438 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "O Lutador", + "id": 439 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "摔角手", + "id": 440 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Luptatorul", + "id": 441 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "O Wrestler", + "id": 442 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "Resurâ", + "id": 443 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "더 레슬러", + "id": 444 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "The Wrestler - Ruhm. Liebe. Schmerz.", + "id": 445 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 61, + "title": "The Wrestler - painija", + "id": 446 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "wrestler", + "sizeOnDisk": 3639200098, + "status": "released", + "overview": "Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.", + "inCinemas": "2008-09-07T00:00:00Z", + "physicalRelease": "2009-04-23T00:00:00Z", + "digitalRelease": "2013-01-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/35/poster.jpg?lastWrite=638332837537413158", + "remoteUrl": "https://image.tmdb.org/t/p/original/6OTR8dSoNGjWohJNo3UhIGd3Tj.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/35/fanart.jpg?lastWrite=638332837542823452", + "remoteUrl": "https://image.tmdb.org/t/p/original/wcJmFsz8RqIhozMwvU81hreTX4i.jpg" + } + ], + "website": "http://www.thewrestlermovie.com/", + "year": 2008, + "hasFile": true, + "youTubeTrailerId": "qjhGZhRJ3j0", + "studio": "Wild Bunch", + "path": "/data/The Wrestler (2008)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Wrestler (2008)", + "runtime": 109, + "cleanTitle": "thewrestler", + "imdbId": "tt1125849", + "tmdbId": 12163, + "titleSlug": "12163", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 315753, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 3360, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 80, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 98, + "type": "user" + } + }, + "movieFile": { + "movieId": 35, + "relativePath": "The Wrestler (2008) Remux-1080p.mkv", + "path": "/data/The Wrestler (2008)/The Wrestler (2008) Remux-1080p.mkv", + "size": 3639200098, + "dateAdded": "2023-10-08T15:52:40Z", + "sceneName": "The.Wrestler.2008.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:49:14", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "The.Wrestler.2008.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR/The.Wrestler.2008.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 31 + }, + "popularity": 12.261, + "id": 35 + }, + { + "title": "Senna", + "originalTitle": "Senna", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "塞纳", + "id": 447 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "Сенна", + "id": 448 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "Ayrton Senna: Beyond the Speed of Sound", + "id": 449 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "Senna: O Brasileiro, O Herói, O Campeão", + "id": 450 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "Ayrton Senna: Onsoku no Kanata e", + "id": 451 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 62, + "title": "세나: F1의 신화", + "id": 452 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "senna", + "sizeOnDisk": 6913589870, + "status": "released", + "overview": "The remarkable story of Brazilian racing driver Ayrton Senna, charting his physical and spiritual achievements on the track and off, his quest for perfection, and the mythical status he has since attained, is the subject of Senna, a documentary feature that spans the racing legend's years as an F1 driver, from his opening season in 1984 to his untimely death a decade later.", + "inCinemas": "2010-10-07T00:00:00Z", + "physicalRelease": "2011-10-10T00:00:00Z", + "digitalRelease": "2011-11-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/36/poster.jpg?lastWrite=638335430203629556", + "remoteUrl": "https://image.tmdb.org/t/p/original/nZbLCbRoP6iJq5sr8daHQzjnzFh.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/36/fanart.jpg?lastWrite=638335430203889570", + "remoteUrl": "https://image.tmdb.org/t/p/original/ycNyvi9gk4ZI2NLk4KBbseNZbfN.jpg" + } + ], + "website": "", + "year": 2010, + "hasFile": true, + "youTubeTrailerId": "sfosF-ZAbR4", + "studio": "Universal Pictures", + "path": "/data/Senna (2010)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Senna (2010)", + "runtime": 106, + "cleanTitle": "senna", + "imdbId": "tt1424432", + "tmdbId": 58496, + "titleSlug": "58496", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Documentary", + "History" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 74052, + "value": 8.5, + "type": "user" + }, + "tmdb": { + "votes": 909, + "value": 8.103, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 79, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 93, + "type": "user" + } + }, + "movieFile": { + "movieId": 36, + "relativePath": "Senna (2010) Remux-1080p.mkv", + "path": "/data/Senna (2010)/Senna (2010) Remux-1080p.mkv", + "size": 6913589870, + "dateAdded": "2023-10-08T16:05:41Z", + "sceneName": "Senna.2010.DC.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-EPSiLON", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:42:07", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/chi/chi/cze/dan/dut/fin/ger/gre/hun/ita/kor/nor/pol/por/por/por/rus/spa/swe/tha/tur/eng/ger/ita/por/spa" + }, + "originalFilePath": "Senna.2010.DC.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-EPSiLON/Senna.2010.DC.1080p.BluRay.REMUX.VC-1.DTS-HD.MA.5.1-EPSiLON.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "EPSiLON", + "edition": "", + "id": 32 + }, + "popularity": 15.131, + "id": 36 + }, + { + "title": "Evita", + "originalTitle": "Evita", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "evita", + "sizeOnDisk": 5484153226, + "status": "released", + "overview": "The hit musical based on the life of Evita Duarte, a B-movie Argentinian actress who eventually became the wife of Argentinian president and dictator Juan Perón, and the most beloved and hated woman in Argentina.", + "inCinemas": "1996-12-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/37/poster.jpg?lastWrite=638323704250152279", + "remoteUrl": "https://image.tmdb.org/t/p/original/mVdQatilUGMtB6sV4FXA7O473UD.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/37/fanart.jpg?lastWrite=638323704251842367", + "remoteUrl": "https://image.tmdb.org/t/p/original/aZtinn0RhlDMYQU0jlotEzJ3tJc.jpg" + } + ], + "website": "http://alanparker.com/film/evita/", + "year": 1996, + "hasFile": true, + "youTubeTrailerId": "dvPJWpE5dvQ", + "studio": "Hollywood Pictures", + "path": "/data/Evita (1996)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Evita (1996)", + "runtime": 135, + "cleanTitle": "evita", + "imdbId": "tt0116250", + "tmdbId": 8818, + "titleSlug": "8818", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "History", + "Drama", + "Music" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 36982, + "value": 6.3, + "type": "user" + }, + "tmdb": { + "votes": 432, + "value": 6.125, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 45, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 64, + "type": "user" + } + }, + "movieFile": { + "movieId": 37, + "relativePath": "Evita (1996) Remux-1080p.mkv", + "path": "/data/Evita (1996)/Evita (1996) Remux-1080p.mkv", + "size": 5484153226, + "dateAdded": "2023-10-08T16:49:46Z", + "sceneName": "Evita.1996.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:14:45", + "scanType": "Progressive", + "subtitles": "eng/rus" + }, + "originalFilePath": "Evita.1996.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N/Evita.1996.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 36 + }, + "popularity": 12.265, + "id": 37 + }, + { + "title": "Dumb Money", + "originalTitle": "Dumb Money", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "The Antisocial Network", + "id": 453 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Sức Mạnh Tiền Lẻ", + "id": 454 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Глупые деньги", + "id": 455 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "כסף קל", + "id": 456 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Dumb Money: The GameStop Story", + "id": 457 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Bêtement riche", + "id": 458 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "El poder de los centavos", + "id": 459 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Dinheiro Fácil", + "id": 460 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Rumal raha", + "id": 461 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Luda lova", + "id": 462 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Αουτσάιντερς", + "id": 463 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Inwestorzy amatorzy", + "id": 464 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "笨錢效應", + "id": 465 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Kvaili pinigai", + "id": 466 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Шалені гроші", + "id": 467 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Golpe a Wall Street", + "id": 468 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 64, + "title": "Dumb Money: Schnelles Geld", + "id": 469 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "dumb money", + "sizeOnDisk": 0, + "status": "inCinemas", + "overview": "Vlogger Keith Gill sinks his life savings into GameStop stock and posts about it. When social media starts blowing up, so do his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich—until the billionaires fight back, and both sides find their worlds turned upside down.", + "inCinemas": "2023-09-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/38/poster.jpg?lastWrite=638323704250982322", + "remoteUrl": "https://image.tmdb.org/t/p/original/gbOnTa2eTbCAznHiusxHI5oA78c.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/38/fanart.jpg?lastWrite=638323704253372447", + "remoteUrl": "https://image.tmdb.org/t/p/original/hb0BeFvZNx2zLGWwuwENOIVeK1U.jpg" + } + ], + "website": "https://www.dumbmoney.movie", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "_VxRoOZNaR8", + "studio": "Black Bear Pictures", + "path": "/data/Dumb Money (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/Dumb Money (2023)", + "runtime": 104, + "cleanTitle": "dumbmoney", + "imdbId": "tt13957560", + "tmdbId": 792293, + "titleSlug": "792293", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama", + "History" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 7817, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 37, + "value": 6.73, + "type": "user" + } + }, + "popularity": 40.289, + "id": 38 + }, + { + "title": "Red Eye", + "originalTitle": "Red Eye", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "红眼", + "id": 470 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "赤眼玄机", + "id": 471 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "长途吓机", + "id": 472 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Нічний політ", + "id": 473 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Ночной рейс", + "id": 474 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Night Flight", + "id": 475 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Don't Airport", + "id": 476 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Vol sous haute pression", + "id": 477 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "Red Eye : Sous haute pression", + "id": 478 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 65, + "title": "パニック・フライト:2005", + "id": 479 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "red eye", + "sizeOnDisk": 3668707167, + "status": "released", + "overview": "A woman is kidnapped by a stranger on a routine flight. Threatened by the potential murder of her father, she is pulled into a plot to assist her captor in offing a politician.", + "inCinemas": "2005-08-19T00:00:00Z", + "physicalRelease": "2006-01-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/39/poster.jpg?lastWrite=638323704250972321", + "remoteUrl": "https://image.tmdb.org/t/p/original/47NRyV8VoJAyiLUdyNS6uZTOwwl.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/39/fanart.jpg?lastWrite=638323704254572510", + "remoteUrl": "https://image.tmdb.org/t/p/original/1uRkvEDPvZUIGtGnJz895ajvb7Y.jpg" + } + ], + "website": "", + "year": 2005, + "hasFile": true, + "youTubeTrailerId": "Z9M9mkcyO48", + "studio": "DreamWorks Pictures", + "path": "/data/Red Eye (2005)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Red Eye (2005)", + "runtime": 85, + "cleanTitle": "redeye", + "imdbId": "tt0421239", + "tmdbId": 11460, + "titleSlug": "11460", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Thriller", + "Mystery" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 131834, + "value": 6.5, + "type": "user" + }, + "tmdb": { + "votes": 1789, + "value": 6.382, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 71, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 79, + "type": "user" + } + }, + "movieFile": { + "movieId": 39, + "relativePath": "Red Eye (2005) Remux-1080p.mkv", + "path": "/data/Red Eye (2005)/Red Eye (2005) Remux-1080p.mkv", + "size": 3668707167, + "dateAdded": "2023-10-08T16:27:13Z", + "sceneName": "Red.Eye.2005.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-PP", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:25:11", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/ger/jpn/spa/spa/eng/eng" + }, + "originalFilePath": "Red.Eye.2005.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-PP/Red.Eye.2005.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-PP.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "PP", + "edition": "", + "id": 34 + }, + "popularity": 27.009, + "id": 39 + }, + { + "title": "Sanctuary", + "originalTitle": "Sanctuary", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 66, + "title": "Šventovė", + "id": 487 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 66, + "title": "Sanctuaire", + "id": 488 + } + ], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "sanctuary", + "sizeOnDisk": 2252134981, + "status": "released", + "overview": "Confined to a claustrophobic hotel room, the heir to a hotel empire and the dominatrix who has primed him for success become locked in a battle of wits and wills as he tries to end his relationship with her.", + "inCinemas": "2023-04-06T00:00:00Z", + "digitalRelease": "2023-06-20T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/40/poster.jpg?lastWrite=638333701834759381", + "remoteUrl": "https://image.tmdb.org/t/p/original/mpVGR5tPhTmTiqSu8kvrSsNCQLl.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/40/fanart.jpg?lastWrite=638323704252972426", + "remoteUrl": "https://image.tmdb.org/t/p/original/hZ5r3hrbQ9uqXBxto1VpixOfqvj.jpg" + } + ], + "website": "https://neonrated.com/films/sanctuary", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "SZjTAFc97js", + "studio": "Rumble Films", + "path": "/data/Sanctuary (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Sanctuary (2023)", + "runtime": 96, + "cleanTitle": "sanctuary", + "imdbId": "tt15364972", + "tmdbId": 870518, + "titleSlug": "870518", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 5817, + "value": 6.3, + "type": "user" + }, + "tmdb": { + "votes": 75, + "value": 6.1, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 89, + "type": "user" + } + }, + "movieFile": { + "movieId": 40, + "relativePath": "Sanctuary (2023) Bluray-1080p.mkv", + "path": "/data/Sanctuary (2023)/Sanctuary (2023) Bluray-1080p.mkv", + "size": 2252134981, + "dateAdded": "2023-10-08T16:51:31Z", + "sceneName": "Sanctuary.2023.iTA-ENG.Bluray.1080p.x264-Dr4gon.MIRCrew", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "ita/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:36:51", + "scanType": "Progressive", + "subtitles": "ita/ita" + }, + "originalFilePath": "Sanctuary.2023.iTA-ENG.Bluray.1080p.x264-Dr4gon.MIRCrew/Sanctuary.2023.iTA-ENG.Bluray.1080p.x264-Dr4gon.MIRCrew.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 5, + "name": "Italian" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "Dr4gon", + "edition": "", + "id": 37 + }, + "popularity": 21.501, + "id": 40 + }, + { + "title": "Requiem for a Dream", + "originalTitle": "Requiem for a Dream", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "梦的挽歌", + "id": 480 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "夢之安魂曲", + "id": 481 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "레퀴엠", + "id": 482 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "Реквієм по мрії", + "id": 483 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "Réquiem para um Sonho", + "id": 484 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "A Vida Não É Um Sonho", + "id": 485 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "Retour à Brooklyn", + "id": 486 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 67, + "title": "Réquiem por un sueño", + "id": 1381 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "requiem for dream", + "sizeOnDisk": 8183906115, + "status": "released", + "overview": "The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.", + "inCinemas": "2000-11-03T00:00:00Z", + "physicalRelease": "2001-12-18T00:00:00Z", + "digitalRelease": "2005-08-05T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/41/poster.jpg?lastWrite=638323704251732361", + "remoteUrl": "https://image.tmdb.org/t/p/original/nOd6vjEmzCT0k4VYqsA2hwyi87C.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/41/fanart.jpg?lastWrite=638323704253002428", + "remoteUrl": "https://image.tmdb.org/t/p/original/s5R6kTMfOxkGit96A8lqcDL4uVk.jpg" + } + ], + "website": "https://www.lionsgate.com/movies/requiem-for-a-dream", + "year": 2000, + "hasFile": true, + "youTubeTrailerId": "lgo3Hb5vWLE", + "studio": "Artisan Entertainment", + "path": "/data/Requiem for a Dream (2000)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Requiem for a Dream (2000)", + "runtime": 102, + "cleanTitle": "requiemfordream", + "imdbId": "tt0180093", + "tmdbId": 641, + "titleSlug": "641", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 877871, + "value": 8.3, + "type": "user" + }, + "tmdb": { + "votes": 9219, + "value": 8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 71, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 78, + "type": "user" + } + }, + "movieFile": { + "movieId": 41, + "relativePath": "Requiem for a Dream (2000) Remux-1080p.mkv", + "path": "/data/Requiem for a Dream (2000)/Requiem for a Dream (2000) Remux-1080p.mkv", + "size": 8183906115, + "dateAdded": "2023-10-08T16:38:45Z", + "sceneName": "Requiem.for.a.Dream.2000.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng/eng/eng", + "audioStreamCount": 5, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:41:32", + "scanType": "Progressive", + "subtitles": "eng/eng/spa/chi" + }, + "originalFilePath": "Requiem.for.a.Dream.2000.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/Requiem.for.a.Dream.2000.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FGT", + "edition": "", + "id": 35 + }, + "popularity": 10.128, + "id": 41 + }, + { + "title": "The Machinist", + "originalTitle": "The Machinist", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "O Maquinista", + "id": 489 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "L'uomo senza sonno", + "id": 490 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "Mechanik", + "id": 491 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "迷魂杀阵", + "id": 492 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "머시니스트", + "id": 493 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "The Machinist - O Operário", + "id": 494 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 68, + "title": "O Operário", + "id": 495 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "machinist", + "sizeOnDisk": 3179104640, + "status": "released", + "overview": "Trevor, an insomniac lathe operator, experiences unusual occurrences at work and home. A strange man follows him everywhere, but no one else seems to notice him.", + "inCinemas": "2004-07-02T00:00:00Z", + "physicalRelease": "2005-07-06T00:00:00Z", + "digitalRelease": "2006-01-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/42/poster.jpg?lastWrite=638323704254662515", + "remoteUrl": "https://image.tmdb.org/t/p/original/diAYqR4xdF9Hnj7qun6DEQhRrT2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/42/fanart.jpg?lastWrite=638323704255012533", + "remoteUrl": "https://image.tmdb.org/t/p/original/bTTT7DWMZVwpbCeU9PG8TVHMAB8.jpg" + } + ], + "website": "", + "year": 2004, + "hasFile": true, + "youTubeTrailerId": "H0fuHY4U1UA", + "studio": "ICF", + "path": "/data/The Machinist (2004)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Machinist (2004)", + "runtime": 101, + "cleanTitle": "themachinist", + "imdbId": "tt0361862", + "tmdbId": 4553, + "titleSlug": "4553", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "Drama" + ], + "tags": [], + "added": "2023-10-08T14:00:18Z", + "ratings": { + "imdb": { + "votes": 407534, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 5107, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 61, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 77, + "type": "user" + } + }, + "movieFile": { + "movieId": 42, + "relativePath": "The Machinist (2004) Remux-1080p Proper.mkv", + "path": "/data/The Machinist (2004)/The Machinist (2004) Remux-1080p Proper.mkv", + "size": 3179104640, + "dateAdded": "2023-10-08T16:59:20Z", + "sceneName": "The.Machinist.2004.PROPER.BluRay.Remux.1080p.AVC.TrueHD.5.1-HiFi", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:41:55", + "scanType": "Progressive", + "subtitles": "eng/eng/spa/fre/por" + }, + "originalFilePath": "The.Machinist.2004.PROPER.BluRay.Remux.1080p.AVC.TrueHD.5.1-HiFi/The.Machinist.2004.PROPER.BluRay.Remux.1080p.AVC.TrueHD.5.1-HiFi.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "HiFi", + "edition": "", + "id": 38 + }, + "popularity": 17.309, + "id": 42 + }, + { + "title": "Aftersun", + "originalTitle": "Aftersun", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "Sous le soleil", + "id": 533 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "Poslije sunca", + "id": 534 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "Akharei Ha'Shemesh", + "id": 535 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "Güneş Sonrası", + "id": 536 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "애프터썬", + "id": 537 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "日麗追憶", + "id": 538 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "日麗", + "id": 539 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 69, + "title": "Päikesepõletus", + "id": 540 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "aftersun", + "sizeOnDisk": 3849255478, + "status": "released", + "overview": "Sophie reflects on the shared joy and private melancholy of a holiday she took with her father twenty years earlier. Memories real and imagined fill the gaps between miniDV footage as she tries to reconcile the father she knew with the man she didn't.", + "inCinemas": "2022-11-17T00:00:00Z", + "physicalRelease": "2023-04-07T00:00:00Z", + "digitalRelease": "2022-12-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/43/poster.jpg?lastWrite=638324355804508662", + "remoteUrl": "https://image.tmdb.org/t/p/original/jeXmhP2zbUkREMRqFOYIwQOk49T.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/43/fanart.jpg?lastWrite=638324355804998688", + "remoteUrl": "https://image.tmdb.org/t/p/original/d5l2ITQvpgP0dcWCAG6PUvp8YZw.jpg" + } + ], + "website": "https://a24films.com/films/aftersun", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "4A34B1DIGl8", + "studio": "PASTEL", + "path": "/data/Aftersun (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Aftersun (2022)", + "runtime": 102, + "cleanTitle": "aftersun", + "imdbId": "tt19770238", + "tmdbId": 965150, + "titleSlug": "965150", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 76695, + "value": 7.7, + "type": "user" + }, + "tmdb": { + "votes": 905, + "value": 7.703, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 95, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 96, + "type": "user" + } + }, + "movieFile": { + "movieId": 43, + "relativePath": "Aftersun (2022) Remux-1080p.mkv", + "path": "/data/Aftersun (2022)/Aftersun (2022) Remux-1080p.mkv", + "size": 3849255478, + "dateAdded": "2023-10-09T08:56:15Z", + "sceneName": "Aftersun.2022.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:41:36", + "scanType": "Progressive", + "subtitles": "eng/eng/ger/ita/spa/tur" + }, + "originalFilePath": "Aftersun.2022.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N/Aftersun.2022.BluRay.1080p.REMUX.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 42 + }, + "popularity": 34.798, + "id": 43 + }, + { + "title": "DC Showcase: Jonah Hex", + "originalTitle": "DC Showcase: Jonah Hex", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "dc showcase jonah hex", + "sizeOnDisk": 348743987, + "status": "released", + "overview": "When a ruthless brothel madame murders Jonah Hex's current quarry, the disfigured bounty hunter plans to make her pay.", + "inCinemas": "2010-07-27T00:00:00Z", + "digitalRelease": "2017-04-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/44/poster.jpg?lastWrite=638324355804068638", + "remoteUrl": "https://image.tmdb.org/t/p/original/mb4v3jDrkOVInOZgsZ4qDaE5IZQ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/44/fanart.jpg?lastWrite=638324355804498661", + "remoteUrl": "https://image.tmdb.org/t/p/original/5FJCntV3fWHMhhn3PmJKd9MEEx6.jpg" + } + ], + "website": "", + "year": 2010, + "hasFile": true, + "youTubeTrailerId": "aGvdiby57OI", + "studio": "Warner Bros. Animation", + "path": "/data/DC Showcase Jonah Hex (2010)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/DC Showcase Jonah Hex (2010)", + "runtime": 12, + "cleanTitle": "dcshowcasejonahhex", + "imdbId": "tt1606600", + "tmdbId": 41988, + "titleSlug": "41988", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Animation", + "Action", + "Western" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 3545, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 134, + "value": 7.026, + "type": "user" + } + }, + "movieFile": { + "movieId": 44, + "relativePath": "DC Showcase Jonah Hex (2010) Bluray-1080p.mkv", + "path": "/data/DC Showcase Jonah Hex (2010)/DC Showcase Jonah Hex (2010) Bluray-1080p.mkv", + "size": 348743987, + "dateAdded": "2023-10-09T08:57:24Z", + "sceneName": "DC.Showcase.Jonah.Hex.2010.BluRay.1080p.DTS.x264-PRoDJi", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "eng/tur/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "13:06", + "scanType": "Progressive", + "subtitles": "tur/tur/eng" + }, + "originalFilePath": "DC.Showcase.Jonah.Hex.2010.BluRay.1080p.DTS.x264-PRoDJi/DC.Showcase.Jonah.Hex.2010.BluRay.1080p.DTS.x264-PRoDJi.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 17, + "name": "Turkish" + } + ], + "releaseGroup": "PRoDJi", + "edition": "", + "id": 43 + }, + "popularity": 11.126, + "id": 44 + }, + { + "title": "Hypnotic", + "originalTitle": "Hypnotic", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 71, + "title": "Domino", + "id": 531 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "hypnotic", + "sizeOnDisk": 3161245436, + "status": "released", + "overview": "A detective becomes entangled in a mystery involving his missing daughter and a secret government program while investigating a string of reality-bending crimes.", + "inCinemas": "2023-05-11T00:00:00Z", + "physicalRelease": "2023-10-25T00:00:00Z", + "digitalRelease": "2023-05-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/45/poster.jpg?lastWrite=638324355802028528", + "remoteUrl": "https://image.tmdb.org/t/p/original/3IhGkkalwXguTlceGSl8XUJZOVI.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/45/fanart.jpg?lastWrite=638324355804068638", + "remoteUrl": "https://image.tmdb.org/t/p/original/8FhKnPpql374qyyHAkZDld93IUw.jpg" + } + ], + "website": "https://www.ketchupentertainment.com/hypnotic", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "XAwpu4rQpeQ", + "studio": "Studio 8", + "path": "/data/Hypnotic (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Hypnotic (2023)", + "runtime": 94, + "cleanTitle": "hypnotic", + "imdbId": "tt8080204", + "tmdbId": 536437, + "titleSlug": "536437", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Mystery", + "Thriller", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 23372, + "value": 5.5, + "type": "user" + }, + "tmdb": { + "votes": 668, + "value": 6.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 53, + "type": "user" + } + }, + "movieFile": { + "movieId": 45, + "relativePath": "Hypnotic (2023) Remux-1080p.mkv", + "path": "/data/Hypnotic (2023)/Hypnotic (2023) Remux-1080p.mkv", + "size": 3161245436, + "dateAdded": "2023-10-09T08:14:14Z", + "sceneName": "Hypnotic.2023.1080p.BluRay.Remux.AVC.TrueHD.5.1-playBD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "TrueHD", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:33:11", + "scanType": "Progressive", + "subtitles": "chi/eng/rum" + }, + "originalFilePath": "Hypnotic.2023.1080p.BluRay.Remux.AVC.TrueHD.5.1-playBD/Hypnotic.2023.1080p.BluRay.Remux.AVC.TrueHD.5.1-playBD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playBD", + "edition": "", + "id": 40 + }, + "popularity": 206.35, + "id": 45 + }, + { + "title": "Fractured", + "originalTitle": "Fractured", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 72, + "title": "shaekasteh shodeh", + "id": 532 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "fractured", + "sizeOnDisk": 1673022619, + "status": "released", + "overview": "Driving cross-country, Ray and his wife and daughter stop at a highway rest area where his daughter falls and breaks her arm. After a frantic rush to the hospital and a clash with the check-in nurse, Ray is finally able to get her to a doctor. While the wife and daughter go downstairs for an MRI, Ray, exhausted, passes out in a chair in the lobby. Upon waking up, they have no record or knowledge of Ray's family ever being checked in.", + "digitalRelease": "2019-10-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/46/poster.jpg?lastWrite=638324355802818571", + "remoteUrl": "https://image.tmdb.org/t/p/original/paZNRffT3kUckuRFKbeDBuX1YcZ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/46/fanart.jpg?lastWrite=638324355804068638", + "remoteUrl": "https://image.tmdb.org/t/p/original/3UnUxeEAGoZhjIW8X1HpEuDPngV.jpg" + } + ], + "website": "https://www.netflix.com/title/80223997", + "year": 2019, + "hasFile": true, + "youTubeTrailerId": "sCimThZW-Ew", + "studio": "Koji Productions", + "path": "/data/Fractured (2019)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fractured (2019)", + "runtime": 101, + "cleanTitle": "fractured", + "imdbId": "tt4332232", + "tmdbId": 568091, + "titleSlug": "568091", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 86673, + "value": 6.4, + "type": "user" + }, + "tmdb": { + "votes": 2236, + "value": 6.7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 36, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 59, + "type": "user" + } + }, + "movieFile": { + "movieId": 46, + "relativePath": "Fractured (2019) WEBRip-1080p Proper.mp4", + "path": "/data/Fractured (2019)/Fractured (2019) WEBRip-1080p Proper.mp4", + "size": 1673022619, + "dateAdded": "2023-10-09T08:47:16Z", + "sceneName": "Fractured.2019.PROPER.1080p.WEBRip.x265", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 224000, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 1999794, + "videoCodec": "x265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:40:04", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Fractured.2019.PROPER.1080p.WEBRip.x265/Fractured.2019.PROPER.1080p.WEBRip.x265.mp4", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 41 + }, + "popularity": 19.807, + "id": 46 + }, + { + "title": "Expend4bles", + "originalTitle": "Expend4bles", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Nesunaikinami 4", + "id": 543 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Expendables 4", + "id": 544 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Biệt Đội Đánh Thuê 4", + "id": 545 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "The Expendables 4", + "id": 546 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "I mercen4ri", + "id": 547 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Os Mercen4rios", + "id": 548 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Eroi de sacrificiu 4", + "id": 549 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Неудержимые 4", + "id": 550 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "浴血任務4", + "id": 551 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Plaćenici 4", + "id": 552 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Expend4bles: Postr4datelní", + "id": 553 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "轟天猛將4", + "id": 554 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Feláldozh4tók", + "id": 555 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "エクスペンダブルズ ニューブラッド", + "id": 556 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "โคตรคนทีมมหากาฬ 4", + "id": 557 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "بی‌مصرف‌ها ۴", + "id": 558 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "The Expendables 4 - Expend4bles", + "id": 1214 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "敢死队4", + "id": 1380 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 73, + "title": "Cəhənnəm Mələkləri 4", + "id": 1444 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "expend4bles", + "sizeOnDisk": 1011705185, + "status": "released", + "overview": "Armed with every weapon they can get their hands on and the skills to use them, The Expendables are the world’s last line of defense and the team that gets called when all other options are off the table. But new team members with new styles and tactics are going to give “new blood” a whole new meaning.", + "inCinemas": "2023-09-15T00:00:00Z", + "digitalRelease": "2023-10-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/47/poster.jpg?lastWrite=638338022720746174", + "remoteUrl": "https://image.tmdb.org/t/p/original/iwsMu0ehRPbtaSxqiaUDQB9qMWT.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/47/fanart.jpg?lastWrite=638338022721076192", + "remoteUrl": "https://image.tmdb.org/t/p/original/rMvPXy8PUjj1o8o1pzgQbdNCsvj.jpg" + } + ], + "website": "https://expendables.movie/", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Cm3Z1jEjHHc", + "studio": "Millennium Media", + "path": "/data/Expend4bles (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Expend4bles (2023)", + "runtime": 103, + "cleanTitle": "expend4bles", + "imdbId": "tt3291150", + "tmdbId": 299054, + "titleSlug": "299054", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Action", + "Adventure", + "Thriller" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 16890, + "value": 4.9, + "type": "user" + }, + "tmdb": { + "votes": 408, + "value": 6.414, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 13, + "type": "user" + } + }, + "movieFile": { + "movieId": 47, + "relativePath": "Expend4bles (2023) WEBDL-1080p.mkv", + "path": "/data/Expend4bles (2023)/Expend4bles (2023) WEBDL-1080p.mkv", + "size": 1011705185, + "dateAdded": "2023-10-12T20:28:04Z", + "sceneName": "Expend4bles.2023.1080p.WEB.H264-SLOT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 25, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "1:39:05", + "scanType": "Progressive", + "subtitles": "ara" + }, + "originalFilePath": "Expend4bles.2023.1080p.WEB.H264-SLOT/Expend4bles.2023.1080p.WEB.H264-SLOT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SLOT", + "edition": "", + "id": 96 + }, + "collection": { + "title": "The Expendables Collection", + "tmdbId": 126125, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 2316.15, + "id": 47 + }, + { + "title": "The Killer", + "originalTitle": "The Killer", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 74, + "title": "The K_.ller", + "id": 541 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 74, + "title": "Le Tueur", + "id": 542 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 74, + "title": "Qatil", + "id": 1448 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "killer", + "sizeOnDisk": 0, + "status": "inCinemas", + "overview": "After a fateful near-miss, an assassin battles his employers, and himself, on an international manhunt he insists isn't personal.", + "inCinemas": "2023-10-25T00:00:00Z", + "digitalRelease": "2023-11-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/48/poster.jpg?lastWrite=638324355804498661", + "remoteUrl": "https://image.tmdb.org/t/p/original/ipkcgvN7h3yZnbYowthloHLKsf4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/48/fanart.jpg?lastWrite=638324355804818679", + "remoteUrl": "https://image.tmdb.org/t/p/original/47nv1UXkSDvpBlEv3BiAss9TxIX.jpg" + } + ], + "website": "https://www.netflix.com/title/80234448/", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "vs1epO_zLG8", + "studio": "Netflix", + "path": "/data/The Killer (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/The Killer (2023)", + "runtime": 118, + "cleanTitle": "thekiller", + "imdbId": "tt1136617", + "tmdbId": 800158, + "titleSlug": "800158", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Thriller" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "imdb": { + "votes": 1062, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "popularity": 85.565, + "id": 48 + }, + { + "title": "The Marvels", + "originalTitle": "The Marvels", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Captain Marvel 2", + "id": 559 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "캡틴 마블 2", + "id": 560 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "ذا مارفلز", + "id": 561 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "קפטן מארוול 2", + "id": 562 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "The Marvels de Marvel Studios", + "id": 563 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Marvel Studios' The Marvels", + "id": 564 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Les Marvel de Marvel Studios", + "id": 565 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Марвелы", + "id": 566 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "מארוולס", + "id": 567 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "As Marvels da Marvel Studios", + "id": 568 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Capitã Marvel 2", + "id": 569 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "Đại Uý Marvel 2", + "id": 570 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "เดอะ มาร์เวลส์", + "id": 571 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 75, + "title": "המארוולים", + "id": 572 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "marvels", + "sizeOnDisk": 363052068, + "status": "announced", + "overview": "Carol Danvers, aka Captain Marvel, has reclaimed her identity from the tyrannical Kree and taken revenge on the Supreme Intelligence. But unintended consequences see Carol shouldering the burden of a destabilized universe. When her duties send her to an anomalous wormhole linked to a Kree revolutionary, her powers become entangled with that of Jersey City super-fan Kamala Khan, aka Ms. Marvel, and Carol’s estranged niece, now S.A.B.E.R. astronaut Captain Monica Rambeau. Together, this unlikely trio must team up and learn to work in concert to save the universe.", + "inCinemas": "2023-11-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/49/poster.jpg?lastWrite=638333701824888833", + "remoteUrl": "https://image.tmdb.org/t/p/original/y4YMYsGSMwu8e985g0Zbumvqxld.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/49/fanart.jpg?lastWrite=638337158592931815", + "remoteUrl": "https://image.tmdb.org/t/p/original/feSiISwgEpVzR1v3zv2n2AU4ANJ.jpg" + } + ], + "website": "https://www.marvel.com/movies/the-marvels", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "wS_qbDztgVY", + "studio": "Marvel Studios", + "path": "/data/The Marvels (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/The Marvels (2023)", + "runtime": 105, + "cleanTitle": "themarvels", + "imdbId": "tt10676048", + "tmdbId": 609681, + "titleSlug": "609681", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-09T08:06:19Z", + "ratings": { + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "movieFile": { + "movieId": 49, + "relativePath": "The Marvels (2023) WEBDL-1080p.mkv", + "path": "/data/The Marvels (2023)/The Marvels (2023) WEBDL-1080p.mkv", + "size": 363052068, + "dateAdded": "2023-10-15T16:03:35Z", + "sceneName": "Arming.The.Americas.2023.1080p.WEB.h264-BAE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 29.970, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "44:05", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Arming.The.Americas.2023.1080p.WEB.h264-BAE/Arming.The.Americas.2023.1080p.WEB.h264-BAE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "BAE", + "edition": "", + "id": 120 + }, + "collection": { + "title": "Captain Marvel Collection", + "tmdbId": 623911, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 105.349, + "id": 49 + }, + { + "title": "TAYLOR SWIFT | THE ERAS TOUR", + "originalTitle": "TAYLOR SWIFT | THE ERAS TOUR", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 80, + "title": "Taylor Swift: The Eras Tour Movie", + "id": 585 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 80, + "title": "Taylor Swift | The Eras Tour Film", + "id": 1206 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 80, + "title": "The Eras Tour", + "id": 1281 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 80, + "title": "טיילור סוויפט: The Eras Tour", + "id": 1382 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "taylor swift eras tour", + "sizeOnDisk": 0, + "status": "inCinemas", + "overview": "The cultural phenomenon continues on the big screen! Immerse yourself in this once-in-a-lifetime concert film experience with a breathtaking, cinematic view of the history-making tour.", + "inCinemas": "2023-10-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/50/poster.jpg?lastWrite=638325223905779563", + "remoteUrl": "https://image.tmdb.org/t/p/original/a5EreVlyB9fXzZ2Rf9ugOLrW5YI.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/50/fanart.jpg?lastWrite=638332837533542948", + "remoteUrl": "https://image.tmdb.org/t/p/original/x9tsSyltV2N814LtABb41NjVMd7.jpg" + } + ], + "website": "https://www.tstheerastourfilm.com", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "KudedLV0tP0", + "studio": "Taylor Swift Productions", + "path": "/data/TAYLOR SWIFT THE ERAS TOUR (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/TAYLOR SWIFT THE ERAS TOUR (2023)", + "runtime": 169, + "cleanTitle": "taylorswifterastour", + "imdbId": "tt28814949", + "tmdbId": 1160164, + "titleSlug": "1160164", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Music" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 6866, + "value": 8.5, + "type": "user" + }, + "tmdb": { + "votes": 39, + "value": 8.2, + "type": "user" + } + }, + "popularity": 97.685, + "id": 50 + }, + { + "title": "Fruitvale Station", + "originalTitle": "Fruitvale Station", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 81, + "title": "奥斯卡的一天", + "id": 574 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 81, + "title": "Fruitvale", + "id": 575 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 81, + "title": "Stanica Frutvejl", + "id": 576 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 81, + "title": "Postaja Fruitvale", + "id": 577 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 81, + "title": "Μία Στάση Πριν Το Τέλος", + "id": 578 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "fruitvale station", + "sizeOnDisk": 4957627030, + "status": "released", + "overview": "Oakland, California. Young Afro-American Oscar Grant crosses paths with family members, friends, enemies and strangers before facing his fate on the platform at Fruitvale Station, in the early morning hours of New Year's Day 2009.", + "inCinemas": "2013-07-26T00:00:00Z", + "physicalRelease": "2014-01-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/51/poster.jpg?lastWrite=638333701808497923", + "remoteUrl": "https://image.tmdb.org/t/p/original/dvHYetUIshAPtMhtVtBT7dW5hqh.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/51/fanart.jpg?lastWrite=638325223903619446", + "remoteUrl": "https://image.tmdb.org/t/p/original/u0nAnvRdzAGgDYLyfIbAUBDOcpb.jpg" + } + ], + "website": "", + "year": 2013, + "hasFile": true, + "youTubeTrailerId": "vHkKUPHn8TE", + "studio": "Significant Productions", + "path": "/data/Fruitvale Station (2013)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fruitvale Station (2013)", + "runtime": 82, + "cleanTitle": "fruitvalestation", + "imdbId": "tt2334649", + "tmdbId": 157354, + "titleSlug": "157354", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 84531, + "value": 7.5, + "type": "user" + }, + "tmdb": { + "votes": 1178, + "value": 7.372, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 85, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 94, + "type": "user" + } + }, + "movieFile": { + "movieId": 51, + "relativePath": "Fruitvale Station (2013) Remux-1080p.mkv", + "path": "/data/Fruitvale Station (2013)/Fruitvale Station (2013) Remux-1080p.mkv", + "size": 4957627030, + "dateAdded": "2023-10-10T09:48:41Z", + "sceneName": "Fruitvale.Station.2013.MULTi.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/ger", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:25:27", + "scanType": "Progressive", + "subtitles": "ger" + }, + "originalFilePath": "Fruitvale.Station.2013.MULTi.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N/Fruitvale.Station.2013.MULTi.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 4, + "name": "German" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 48 + }, + "popularity": 15.968, + "id": 51 + }, + { + "title": "Batman: Gotham by Gaslight", + "originalTitle": "Batman: Gotham by Gaslight", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 82, + "title": "배트맨 : 가스등 아래의 고담", + "id": 573 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "batman gotham by gaslight", + "sizeOnDisk": 12746125051, + "status": "released", + "overview": "In an alternative Victorian Age Gotham City, Batman begins his war on crime while he investigates a new series of murders by Jack the Ripper.", + "physicalRelease": "2018-01-23T00:00:00Z", + "digitalRelease": "2018-01-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/52/poster.jpg?lastWrite=638325923100412408", + "remoteUrl": "https://image.tmdb.org/t/p/original/7souLi5zqQCnpZVghaXv0Wowi0y.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/52/fanart.jpg?lastWrite=638325223904589498", + "remoteUrl": "https://image.tmdb.org/t/p/original/7d7h5ATx9eUD98O0UpxICz93mNC.jpg" + } + ], + "website": "https://www.warnerbros.com/batman-gotham-gaslight", + "year": 2018, + "hasFile": true, + "youTubeTrailerId": "TJ6EX6zX4FU", + "studio": "Warner Bros. Animation", + "path": "/data/Batman Gotham by Gaslight (2018)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Batman Gotham by Gaslight (2018)", + "runtime": 78, + "cleanTitle": "batmangothambygaslight", + "imdbId": "tt7167630", + "tmdbId": 471474, + "titleSlug": "471474", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "Action", + "Animation" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 18443, + "value": 6.7, + "type": "user" + }, + "tmdb": { + "votes": 644, + "value": 6.675, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 52, + "relativePath": "Batman Gotham by Gaslight (2018) Remux-1080p.mkv", + "path": "/data/Batman Gotham by Gaslight (2018)/Batman Gotham by Gaslight (2018) Remux-1080p.mkv", + "size": 12746125051, + "dateAdded": "2023-10-10T09:30:10Z", + "sceneName": "Batman.Gotham.by.Gaslight.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/fre/ger/spa/spa/por/eng", + "audioStreamCount": 8, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:17:04", + "scanType": "Progressive", + "subtitles": "eng/fre/ger/spa/spa/por/fre/ger/spa/spa/por" + }, + "originalFilePath": "Batman.Gotham.by.Gaslight.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT/Batman.Gotham.by.Gaslight.2018.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 2, + "name": "French" + }, + { + "id": 4, + "name": "German" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 18, + "name": "Portuguese" + } + ], + "releaseGroup": "FGT", + "edition": "", + "id": 45 + }, + "popularity": 13.381, + "id": 52 + }, + { + "title": "Fire with Fire", + "originalTitle": "Fire with Fire", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "Fuego Cruzado 2013", + "id": 579 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "Fire with fire : Vengeance par le feu", + "id": 580 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "Le Feu par le feu", + "id": 581 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "La Vengeance par le feu", + "id": 582 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "Témoin gênant", + "id": 583 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 83, + "title": "Fuego con Fuego", + "id": 584 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "fire with fire", + "sizeOnDisk": 3573377898, + "status": "released", + "overview": "A fireman takes an unexpected course of action when a man whom he's been ordered to testify against—after being held up at a local convenience store—threatens him.", + "inCinemas": "2012-08-31T00:00:00Z", + "physicalRelease": "2012-11-06T00:00:00Z", + "digitalRelease": "2018-09-18T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/53/poster.jpg?lastWrite=638325223903699450", + "remoteUrl": "https://image.tmdb.org/t/p/original/kziBJGQFo9f0Vkj9s37qI0G9I0I.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/53/fanart.jpg?lastWrite=638325223905849567", + "remoteUrl": "https://image.tmdb.org/t/p/original/6ZNqWfUXdxiNVqwgO2doLlkmgQc.jpg" + } + ], + "website": "", + "year": 2012, + "hasFile": true, + "youTubeTrailerId": "j9Auh9MI-Kw", + "studio": "Knightsbridge Entertainment", + "path": "/data/Fire with Fire (2012)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fire with Fire (2012)", + "runtime": 97, + "cleanTitle": "firewithfire", + "imdbId": "tt1925431", + "tmdbId": 139567, + "titleSlug": "139567", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Action", + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 27272, + "value": 5.6, + "type": "user" + }, + "tmdb": { + "votes": 628, + "value": 5.661, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 7, + "type": "user" + } + }, + "movieFile": { + "movieId": 53, + "relativePath": "Fire with Fire (2012) Remux-1080p Proper.mkv", + "path": "/data/Fire with Fire (2012)/Fire with Fire (2012) Remux-1080p Proper.mkv", + "size": 3573377898, + "dateAdded": "2023-10-10T09:36:40Z", + "sceneName": "Fire.with.Fire.2012.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:37:05", + "scanType": "Progressive", + "subtitles": "eng/eng/dan/fin/nor/spa/swe" + }, + "originalFilePath": "Fire.with.Fire.2012.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo/Fire.with.Fire.2012.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KRaLiMaRKo", + "edition": "", + "id": 46 + }, + "popularity": 10.006, + "id": 53 + }, + { + "title": "Dark Phoenix", + "originalTitle": "Dark Phoenix", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X战警:黑凤凰传奇", + "id": 674 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X战警:超新星", + "id": 675 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X战警前传4", + "id": 676 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-מן: הפניקס האפלה", + "id": 677 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-Men: Dark Phoenix", + "id": 678 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-Men: Černý Fénix", + "id": 679 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-Men: Čierny Fénix", + "id": 680 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "Gʻaroyib odamlar: Qora Feniks", + "id": 681 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "엑스맨: 다크 피닉스", + "id": 682 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-Men Fênix Negra", + "id": 683 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "X-Men 10: Fénix oscura", + "id": 684 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "Dị Nhân 7: Phượng Hoàng Bóng Tối", + "id": 685 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 84, + "title": "變種特攻:黑鳳凰", + "id": 686 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "dark phoenix", + "sizeOnDisk": 6704747659, + "status": "released", + "overview": "The X-Men face their most formidable and powerful foe when one of their own, Jean Grey, starts to spiral out of control. During a rescue mission in outer space, Jean is nearly killed when she's hit by a mysterious cosmic force. Once she returns home, this force not only makes her infinitely more powerful, but far more unstable. The X-Men must now band together to save her soul and battle aliens that want to use Grey's new abilities to rule the galaxy.", + "inCinemas": "2019-06-05T00:00:00Z", + "physicalRelease": "2019-09-17T00:00:00Z", + "digitalRelease": "2019-09-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/54/poster.jpg?lastWrite=638335430151026721", + "remoteUrl": "https://image.tmdb.org/t/p/original/kZv92eTc0Gg3mKxqjjDAM73z9cy.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/54/fanart.jpg?lastWrite=638335430151416742", + "remoteUrl": "https://image.tmdb.org/t/p/original/cjRUhKyt2Jo3V1KNzc5tpPNfccG.jpg" + } + ], + "website": "https://www.20thcenturystudios.com/movies/dark-phoenix", + "year": 2019, + "hasFile": true, + "youTubeTrailerId": "azvR__GRQic", + "studio": "The Donners' Company", + "path": "/data/Dark Phoenix (2019)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Dark Phoenix (2019)", + "runtime": 114, + "cleanTitle": "darkphoenix", + "imdbId": "tt6565702", + "tmdbId": 320288, + "titleSlug": "320288", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Fantasy", + "Science Fiction", + "Action" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 198769, + "value": 5.7, + "type": "user" + }, + "tmdb": { + "votes": 5966, + "value": 5.993, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 43, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 22, + "type": "user" + } + }, + "movieFile": { + "movieId": 54, + "relativePath": "Dark Phoenix (2019) Remux-1080p Proper.mkv", + "path": "/data/Dark Phoenix (2019)/Dark Phoenix (2019) Remux-1080p Proper.mkv", + "size": 6704747659, + "dateAdded": "2023-10-10T10:31:44Z", + "sceneName": "Dark.Phoenix.2019.Repack.1080p.Blu-ray.Remux.AVC.Atmos.-.KRaLiMaRKo", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:53:56", + "scanType": "Progressive", + "subtitles": "eng/eng/chi/chi/chi/dan/dut/est/fin/ger/hin/hun/ita/jpn/kor/lav/lit/nor/pol/por/rus/swe/tam/tel/tha/ukr" + }, + "originalFilePath": "Dark.Phoenix.2019.Repack.1080p.Blu-ray.Remux.AVC.Atmos.-.KRaLiMaRKo/Dark.Phoenix.2019.Repack.1080p.Blu-ray.Remux.AVC.Atmos.-.KRaLiMaRKo.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KRaLiMaRKo", + "edition": "", + "id": 52 + }, + "collection": { + "title": "X-Men Collection", + "tmdbId": 748, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 43.513, + "id": 54 + }, + { + "title": "Midnight in Paris", + "originalTitle": "Midnight in Paris", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "O pólnocy w Paryzu", + "id": 586 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Pulnoc v Parízi", + "id": 587 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Hatzot be'Paris", + "id": 588 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Paris'te Gece Yarisi", + "id": 589 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Medianoche en París", + "id": 590 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Meia-Noite em Paris", + "id": 591 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Полунощ в Париж", + "id": 592 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Shuaghame parizshi", + "id": 593 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Mesanyhta sto Parisi", + "id": 594 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Vidurnaktis Paryziuje", + "id": 595 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "미드나잇 인 파리", + "id": 596 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "Μεσάνυχτα στο Παρίσι", + "id": 597 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 85, + "title": "情迷午夜巴黎", + "id": 598 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "midnight in paris", + "sizeOnDisk": 1954625599, + "status": "released", + "overview": "A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.", + "inCinemas": "2011-05-11T00:00:00Z", + "physicalRelease": "2012-02-09T00:00:00Z", + "digitalRelease": "2014-05-24T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/55/poster.jpg?lastWrite=638325223916650153", + "remoteUrl": "https://image.tmdb.org/t/p/original/4wBG5kbfagTQclETblPRRGihk0I.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/55/fanart.jpg?lastWrite=638325223917280188", + "remoteUrl": "https://image.tmdb.org/t/p/original/b5bcKhvN6VP82U5ztNdPfOLiolD.jpg" + } + ], + "website": "http://www.sonyclassics.com/midnightinparis", + "year": 2011, + "hasFile": true, + "youTubeTrailerId": "FAfR8omt-CY", + "studio": "Pontchartrain Productions", + "path": "/data/Midnight in Paris (2011)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Midnight in Paris (2011)", + "runtime": 94, + "cleanTitle": "midnightinparis", + "imdbId": "tt1605783", + "tmdbId": 59436, + "titleSlug": "59436", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Fantasy", + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 441990, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 6853, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 93, + "type": "user" + } + }, + "movieFile": { + "movieId": 55, + "relativePath": "Midnight in Paris (2011) Remux-1080p.mkv", + "path": "/data/Midnight in Paris (2011)/Midnight in Paris (2011) Remux-1080p.mkv", + "size": 1954625599, + "dateAdded": "2023-10-10T09:42:10Z", + "sceneName": "Midnight.in.Paris.2011.BluRay.1080p.DTS-HD.MA.3.0.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 3.0, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:34:12", + "scanType": "Progressive", + "subtitles": "ger" + }, + "originalFilePath": "Midnight.in.Paris.2011.BluRay.1080p.DTS-HD.MA.3.0.AVC.REMUX-FraMeSToR/Midnight.in.Paris.2011.BluRay.1080p.DTS-HD.MA.3.0.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 47 + }, + "popularity": 18.969, + "id": 55 + }, + { + "title": "The Life Aquatic with Steve Zissou", + "originalTitle": "The Life Aquatic with Steve Zissou", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Steve Zissou ile suda yasam", + "id": 604 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Livet under vann med Steve Zissou", + "id": 605 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Zivljenje pod vodo", + "id": 606 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Morski svet sa Stivom Zisuom", + "id": 607 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Um Peixe Fora de Água", + "id": 608 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Vida acuática", + "id": 609 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "La vida acuática con Steve Zissou", + "id": 610 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Panika pod morem", + "id": 611 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Ydatines istories", + "id": 612 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Mereelu Steve Zissou seltsis", + "id": 613 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Zivot pod vodou", + "id": 614 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Vida acuática, con Steve Zissou", + "id": 615 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "스티브 지소와의 해저생활", + "id": 616 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "A Vida Marinha com Steve Zissou", + "id": 617 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 86, + "title": "Die Tiefseetaucher mit Steve Zissou", + "id": 618 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "life aquatic with steve zissou", + "sizeOnDisk": 3114898699, + "status": "released", + "overview": "Renowned oceanographer Steve Zissou has sworn vengeance upon the rare shark that devoured a member of his crew. In addition to his regular team, he is joined on his boat by Ned, a man who believes Zissou to be his father, and Jane, a journalist pregnant by a married man. They travel the sea, all too often running into pirates and, perhaps more traumatically, various figures from Zissou's past, including his estranged wife, Eleanor.", + "inCinemas": "2004-12-25T00:00:00Z", + "physicalRelease": "2005-09-28T00:00:00Z", + "digitalRelease": "2012-03-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/56/poster.jpg?lastWrite=638325223907659665", + "remoteUrl": "https://image.tmdb.org/t/p/original/qZoFLNBC78jzboWeDH6Ha0qavF2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/56/fanart.jpg?lastWrite=638325223912179911", + "remoteUrl": "https://image.tmdb.org/t/p/original/7tWktnLQ81G8pHUkhuTebcTkcB3.jpg" + } + ], + "website": "", + "year": 2004, + "hasFile": true, + "youTubeTrailerId": "q1-h2zSrM_0", + "studio": "American Empirical Pictures", + "path": "/data/The Life Aquatic with Steve Zissou (2004)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Life Aquatic with Steve Zissou (2004)", + "runtime": 119, + "cleanTitle": "thelifeaquaticwithstevezissou", + "imdbId": "tt0362270", + "tmdbId": 421, + "titleSlug": "421", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Adventure", + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 207320, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 2643, + "value": 7.106, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 62, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 73, + "type": "user" + } + }, + "movieFile": { + "movieId": 56, + "relativePath": "The Life Aquatic with Steve Zissou (2004) Remux-1080p.mkv", + "path": "/data/The Life Aquatic with Steve Zissou (2004)/The Life Aquatic with Steve Zissou (2004) Remux-1080p.mkv", + "size": 3114898699, + "dateAdded": "2023-10-10T09:58:12Z", + "sceneName": "The.Life.Aquatic.with.Steve.Zissou.2004.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:58:44", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "The.Life.Aquatic.with.Steve.Zissou.2004.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N/The.Life.Aquatic.with.Steve.Zissou.2004.REMUX.1080p.Blu-ray.AVC.DTS-HD.MA.5.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 49 + }, + "popularity": 17.029, + "id": 56 + }, + { + "title": "Cowboys & Aliens", + "originalTitle": "Cowboys & Aliens", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 87, + "title": "Cowboys & Aliens - EC", + "id": 599 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 87, + "title": "Cowboys vs aliens", + "id": 600 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 87, + "title": "Cowboys et envahisseurs", + "id": 601 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 87, + "title": "Vaqueros contra aliens", + "id": 602 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 87, + "title": "Cao Bồi & Người Ngoài Hành Tinh", + "id": 603 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "cowboys aliens", + "sizeOnDisk": 1218243083, + "status": "released", + "overview": "A stranger stumbles into the desert town of Absolution with no memory of his past and a futuristic shackle around his wrist. With the help of mysterious beauty Ella and the iron-fisted Colonel Dolarhyde, he finds himself leading an unlikely posse of cowboys, outlaws, and Apache warriors against a common enemy from beyond this world in an epic showdown for survival.", + "inCinemas": "2011-07-29T00:00:00Z", + "physicalRelease": "2011-12-06T00:00:00Z", + "digitalRelease": "2013-09-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/57/poster.jpg?lastWrite=638325223906339594", + "remoteUrl": "https://image.tmdb.org/t/p/original/9uZsGCP4rvOHVGCpMpYq5gNCuNI.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/57/fanart.jpg?lastWrite=638325223909679775", + "remoteUrl": "https://image.tmdb.org/t/p/original/f1jJPQ0RhgSOOfBprCJd9ZJMbet.jpg" + } + ], + "website": "http://www.cowboysandaliensmovie.com/", + "year": 2011, + "hasFile": true, + "youTubeTrailerId": "0JlTboo4cPM", + "studio": "DreamWorks Pictures", + "path": "/data/Cowboys & Aliens (2011)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Cowboys & Aliens (2011)", + "runtime": 119, + "cleanTitle": "cowboysaliens", + "imdbId": "tt0409847", + "tmdbId": 49849, + "titleSlug": "49849", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 228574, + "value": 6, + "type": "user" + }, + "tmdb": { + "votes": 4731, + "value": 5.59, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 50, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 44, + "type": "user" + } + }, + "movieFile": { + "movieId": 57, + "relativePath": "Cowboys & Aliens (2011) Bluray-1080p.mkv", + "path": "/data/Cowboys & Aliens (2011)/Cowboys & Aliens (2011) Bluray-1080p.mkv", + "size": 1218243083, + "dateAdded": "2023-10-13T03:39:19Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "2:15:13", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 97 + }, + "popularity": 28.061, + "id": 57 + }, + { + "title": "Blue Valentine", + "originalTitle": "Blue Valentine", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 88, + "title": "Blue Valentine: Una historia de amor", + "id": 619 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 88, + "title": "Blue Valentine - Vom Ende einer Liebe", + "id": 620 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 88, + "title": "블루 발렌타인", + "id": 621 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 88, + "title": "Blue Valentine - Só Tu e Eu", + "id": 622 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "blue valentine", + "sizeOnDisk": 2788681976, + "status": "released", + "overview": "Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.", + "inCinemas": "2010-12-16T00:00:00Z", + "physicalRelease": "2011-05-06T00:00:00Z", + "digitalRelease": "2013-08-24T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/58/poster.jpg?lastWrite=638325223905789564", + "remoteUrl": "https://image.tmdb.org/t/p/original/vqQPrOc0XCloZhuOeR66wjsnyUo.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/58/fanart.jpg?lastWrite=638325923108412838", + "remoteUrl": "https://image.tmdb.org/t/p/original/A3VIryQoRHNHYjwawvhntNltPd7.jpg" + } + ], + "website": "https://bluevalentinemovie.com/", + "year": 2010, + "hasFile": true, + "youTubeTrailerId": "aw0NChcdQfQ", + "studio": "Cottage Industries", + "path": "/data/Blue Valentine (2010)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Blue Valentine (2010)", + "runtime": 112, + "cleanTitle": "bluevalentine", + "imdbId": "tt1120985", + "tmdbId": 46705, + "titleSlug": "46705", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 206875, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 2982, + "value": 6.9, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 86, + "type": "user" + } + }, + "movieFile": { + "movieId": 58, + "relativePath": "Blue Valentine (2010) Remux-1080p Proper.mkv", + "path": "/data/Blue Valentine (2010)/Blue Valentine (2010) Remux-1080p Proper.mkv", + "size": 2788681976, + "dateAdded": "2023-10-10T10:06:43Z", + "sceneName": "Blue.Valentine.2010.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:52:04", + "scanType": "Progressive", + "subtitles": "eng/eng/cat/chi/ger/rus/spa/spa" + }, + "originalFilePath": "Blue.Valentine.2010.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo/Blue.Valentine.2010.Repack.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1.KRaLiMaRKo.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KRaLiMaRKo", + "edition": "", + "id": 50 + }, + "popularity": 17.565, + "id": 58 + }, + { + "title": "Seven Samurai", + "originalTitle": "七人の侍", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "I sette samurai", + "id": 623 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Os Sete Samurais", + "id": 624 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Sieben Samurai", + "id": 625 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "A hét szamuráj", + "id": 626 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Siedmiu samurajów", + "id": 627 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Los siete samurais", + "id": 628 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Седемте самураи", + "id": 629 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Οι επτά σαμουράι", + "id": 630 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "7 Vo Si", + "id": 631 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Yedi Samuray-Kanli Pirinç", + "id": 632 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Shichinin no samurai", + "id": 633 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Les 7 samouraïs", + "id": 634 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "七武士", + "id": 635 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "7인의 사무라이", + "id": 636 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "The Magnificent Seven", + "id": 637 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "De Zeven Samoerai", + "id": 638 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "De syv samuraier", + "id": 639 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Seitsemän samuraita", + "id": 640 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 89, + "title": "Седам самураја", + "id": 641 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "seven samurai", + "sizeOnDisk": 6351530407, + "status": "released", + "overview": "A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food.", + "inCinemas": "1954-04-26T00:00:00Z", + "physicalRelease": "1997-01-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/59/poster.jpg?lastWrite=638335430208749832", + "remoteUrl": "https://image.tmdb.org/t/p/original/8OKmBV5BUFzmozIC3pPWKHy17kx.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/59/fanart.jpg?lastWrite=638335430208939842", + "remoteUrl": "https://image.tmdb.org/t/p/original/qvZ91FwMq6O47VViAr8vZNQz3WI.jpg" + } + ], + "website": "", + "year": 1954, + "hasFile": true, + "youTubeTrailerId": "6jZF-Ujv2z4", + "studio": "TOHO", + "path": "/data/Seven Samurai (1954)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Seven Samurai (1954)", + "runtime": 207, + "cleanTitle": "sevensamurai", + "imdbId": "tt0047478", + "tmdbId": 346, + "titleSlug": "346", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Action", + "Drama" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 358904, + "value": 8.6, + "type": "user" + }, + "tmdb": { + "votes": 3258, + "value": 8.45, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 98, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 100, + "type": "user" + } + }, + "movieFile": { + "movieId": 59, + "relativePath": "Seven Samurai (1954) Remux-1080p.mkv", + "path": "/data/Seven Samurai (1954)/Seven Samurai (1954) Remux-1080p.mkv", + "size": 6351530407, + "dateAdded": "2023-10-10T10:22:15Z", + "sceneName": "Seven.Samurai.1954.REMASTERED.JAPANESE.1080p.BluRay.REMUX.AVC.LPCM.1.0-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1152000, + "audioChannels": 1, + "audioCodec": "PCM", + "audioLanguages": "jpn/jpn/eng/eng", + "audioStreamCount": 4, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "3:27:04", + "scanType": "Progressive", + "subtitles": "eng/eng" + }, + "originalFilePath": "Seven.Samurai.1954.REMASTERED.JAPANESE.1080p.BluRay.REMUX.AVC.LPCM.1.0-FGT/Seven.Samurai.1954.REMASTERED.JAPANESE.1080p.BluRay.REMUX.AVC.LPCM.1.0-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FGT", + "edition": "REMASTERED", + "id": 51 + }, + "popularity": 29.413, + "id": 59 + }, + { + "title": "Black Panther: Wakanda Forever", + "originalTitle": "Black Panther: Wakanda Forever", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Pantera Negra 2", + "id": 648 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther 2", + "id": 649 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "블랙 팬서 2", + "id": 650 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther II", + "id": 651 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Marvel Studios' Black Panther: Wakanda Forever", + "id": 652 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther: Wakanda Forever de Marvel Studios", + "id": 653 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Черната пантера - Уаканда завинаги", + "id": 654 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Чёрная Пантера: Ваканда навеки", + "id": 655 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Melnā Pantera: Vakanda mūžam", + "id": 656 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "پلنگ سیاه: واکاندا تا ابد", + "id": 657 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "بلاك بانثر: واكاندا إلى الأبد", + "id": 658 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther : Longue vie au Wakanda de Marvel Studios", + "id": 659 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "הפנטר השחור 2: וקנדה לנצח", + "id": 660 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "הפנתר השחור 2: ואקאנדה לנצח", + "id": 661 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "ブラックパンサー/ワカンダ・フォーエバー", + "id": 663 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther II: Wakanda Forever", + "id": 664 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Must Panter: Wakanda igaveseks", + "id": 665 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Den Sorte Panter : Wakanda Forevigt", + "id": 666 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "בלאק פנתר: ואקנדה פוראבר", + "id": 667 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Black Panther 2 - Wakanda Forever", + "id": 668 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Chiến Binh Báo Đen 2: Wakanda Bất Diệt", + "id": 670 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Қара Қабылан: Ваканда жасасын", + "id": 671 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "ブラックパンサー/ワカンダ・フォーエバー:2022", + "id": 672 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 90, + "title": "Pantera Negra: Wakanda para siempre", + "id": 673 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "black panther wakanda forever", + "sizeOnDisk": 9106211967, + "status": "released", + "overview": "Queen Ramonda, Shuri, M’Baku, Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T’Challa’s death. As the Wakandans strive to embrace their next chapter, the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.", + "inCinemas": "2022-11-09T00:00:00Z", + "physicalRelease": "2023-02-07T00:00:00Z", + "digitalRelease": "2023-02-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/60/poster.jpg?lastWrite=638325223916640153", + "remoteUrl": "https://image.tmdb.org/t/p/original/sv1xJUazXeYqALzczSZ3O6nkH75.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/60/fanart.jpg?lastWrite=638325223921960442", + "remoteUrl": "https://image.tmdb.org/t/p/original/xDMIl84Qo5Tsu62c9DGWhmPI67A.jpg" + } + ], + "website": "https://wakandaforevertickets.com", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "_Z3QKkl1WyM", + "studio": "Marvel Studios", + "path": "/data/Black Panther Wakanda Forever (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Black Panther Wakanda Forever (2022)", + "runtime": 162, + "cleanTitle": "blackpantherwakandaforever", + "imdbId": "tt9114286", + "tmdbId": 505642, + "titleSlug": "505642", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 287201, + "value": 6.7, + "type": "user" + }, + "tmdb": { + "votes": 5538, + "value": 7.181, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 84, + "type": "user" + } + }, + "movieFile": { + "movieId": 60, + "relativePath": "Black Panther Wakanda Forever (2022) Remux-1080p.mkv", + "path": "/data/Black Panther Wakanda Forever (2022)/Black Panther Wakanda Forever (2022) Remux-1080p.mkv", + "size": 9106211967, + "dateAdded": "2023-10-10T11:08:18Z", + "sceneName": "Black.Panther.Wakanda.Forever.2022.1080p.BluRay.REMUX.AVC.DTS-HD-MA.7.1-UnKn0wn", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:41:18", + "scanType": "Progressive", + "subtitles": "eng/spa/eng/spa/spa" + }, + "originalFilePath": "Black.Panther.Wakanda.Forever.2022.1080p.BluRay.REMUX.AVC.DTS-HD-MA.7.1-UnKn0wn/Black.Panther.Wakanda.Forever.2022.1080p.BluRay.REMUX.AVC.DTS-HD-MA.7.1-UnKn0wn.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "UnKn0wn", + "edition": "", + "id": 55 + }, + "collection": { + "title": "Black Panther Collection", + "tmdbId": 529892, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 133.793, + "id": 60 + }, + { + "title": "Transformers: Rise of the Beasts", + "originalTitle": "Transformers: Rise of the Beasts", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "Transformers 7", + "id": 642 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "트랜스포머 7", + "id": 643 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "ทรานส์ฟอร์เมอร์ส : กำเนิดจักรกลอสูร", + "id": 644 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "Robot Đại Chiến: Quái Thú Trỗi Dậy", + "id": 645 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "變形金剛:萬獸崛起", + "id": 646 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "變形金剛:狂獸崛起", + "id": 647 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 91, + "title": "变形金刚:超能勇士崛起", + "id": 1394 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "transformers rise beasts", + "sizeOnDisk": 30743207344, + "status": "released", + "overview": "When a new threat capable of destroying the entire planet emerges, Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance, humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.", + "inCinemas": "2023-06-06T00:00:00Z", + "physicalRelease": "2023-10-12T00:00:00Z", + "digitalRelease": "2023-07-11T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/61/poster.jpg?lastWrite=638325223916490145", + "remoteUrl": "https://image.tmdb.org/t/p/original/gPbM0MK8CP8A174rmUwGsADNYKD.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/61/fanart.jpg?lastWrite=638325223923400520", + "remoteUrl": "https://image.tmdb.org/t/p/original/2vFuG6bWGyQUzYS9d69E5l85nIz.jpg" + } + ], + "website": "https://www.transformersmovie.com", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "ZtuFgnxQMrA", + "studio": "Skydance", + "path": "/data/Transformers Rise of the Beasts (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Transformers Rise of the Beasts (2023)", + "runtime": 127, + "cleanTitle": "transformersrisebeasts", + "imdbId": "tt5090568", + "tmdbId": 667538, + "titleSlug": "667538", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 84672, + "value": 6.1, + "type": "user" + }, + "tmdb": { + "votes": 3442, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 42, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 52, + "type": "user" + } + }, + "movieFile": { + "movieId": 61, + "relativePath": "Transformers Rise of the Beasts (2023) Remux-1080p.mkv", + "path": "/data/Transformers Rise of the Beasts (2023)/Transformers Rise of the Beasts (2023) Remux-1080p.mkv", + "size": 30743207344, + "dateAdded": "2023-10-10T08:32:07Z", + "sceneName": "Transformers.Rise.of.the.Beasts.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:07:07", + "scanType": "Progressive", + "subtitles": "eng/eng/cze/dan/ger/spa/fre/ita/hun/dut/nor/pol/slo/fin/swe/tur" + }, + "originalFilePath": "Transformers.Rise.of.the.Beasts.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N/Transformers.Rise.of.the.Beasts.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 44 + }, + "collection": { + "title": "Transformers: Rise of the Beasts Collection", + "tmdbId": 939352, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 639.342, + "id": 61 + }, + { + "title": "Black Adam", + "originalTitle": "Black Adam", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "Черный Адам", + "id": 702 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "แบล็ก อดัม", + "id": 703 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "黑亞當", + "id": 704 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "Melnais Ādams", + "id": 705 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "آدام سیاه‌پوش", + "id": 706 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "Черния Адам", + "id": 707 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "Czarny Adam", + "id": 708 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "آدام سیاه", + "id": 709 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 92, + "title": "אדם השחור", + "id": 710 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "black adam", + "sizeOnDisk": 5758195690, + "status": "released", + "overview": "Nearly 5,000 years after he was bestowed with the almighty powers of the Egyptian gods—and imprisoned just as quickly—Black Adam is freed from his earthly tomb, ready to unleash his unique form of justice on the modern world.", + "inCinemas": "2022-10-19T00:00:00Z", + "physicalRelease": "2023-01-03T00:00:00Z", + "digitalRelease": "2022-11-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/62/poster.jpg?lastWrite=638325223916490145", + "remoteUrl": "https://image.tmdb.org/t/p/original/pFlaoHTZeyNkG83vxsAJiGzfSsa.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/62/fanart.jpg?lastWrite=638325223920650371", + "remoteUrl": "https://image.tmdb.org/t/p/original/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg" + } + ], + "website": "https://www.dc.com/BlackAdam", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "mkomfZHG5q4", + "studio": "New Line Cinema", + "path": "/data/Black Adam (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Black Adam (2022)", + "runtime": 124, + "cleanTitle": "blackadam", + "imdbId": "tt6443346", + "tmdbId": 436270, + "titleSlug": "436270", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 261164, + "value": 6.3, + "type": "user" + }, + "tmdb": { + "votes": 5515, + "value": 7.005, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 41, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 39, + "type": "user" + } + }, + "movieFile": { + "movieId": 62, + "relativePath": "Black Adam (2022) Remux-1080p.mkv", + "path": "/data/Black Adam (2022)/Black Adam (2022) Remux-1080p.mkv", + "size": 5758195690, + "dateAdded": "2023-10-10T11:46:49Z", + "sceneName": "Black.Adam.2022.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:04:52", + "scanType": "Progressive", + "subtitles": "eng/fre/spa/por/chi/chi/chi/chi/eng/fre/spa/por/rum" + }, + "originalFilePath": "Black.Adam.2022.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD/Black.Adam.2022.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playBD", + "edition": "", + "id": 56 + }, + "popularity": 157.342, + "id": 62 + }, + { + "title": "The Black Phone", + "originalTitle": "The Black Phone", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "Melnais telefons", + "id": 687 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "ブラック・フォン", + "id": 688 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "O Telefone Negro", + "id": 689 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "Black Phone", + "id": 690 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "接駁靈聲", + "id": 691 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "Telefono Negro", + "id": 692 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "El teléfono negro", + "id": 693 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "O Telefone Preto", + "id": 694 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "בלק-פון", + "id": 695 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "הטלפון השחור", + "id": 696 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "טלפון שחור", + "id": 697 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "闇黑電話", + "id": 698 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "Czarny telefon", + "id": 699 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "הבלאק-פון", + "id": 700 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 93, + "title": "블랙폰", + "id": 701 + } + ], + "secondaryYear": 2021, + "secondaryYearSourceId": 0, + "sortTitle": "black phone", + "sizeOnDisk": 6646948062, + "status": "released", + "overview": "Finney Blake, a shy but clever 13-year-old boy, is abducted by a sadistic killer and trapped in a soundproof basement where screaming is of little use. When a disconnected phone on the wall begins to ring, Finney discovers that he can hear the voices of the killer’s previous victims. And they are dead set on making sure that what happened to them doesn’t happen to Finney.", + "inCinemas": "2022-06-22T00:00:00Z", + "physicalRelease": "2022-08-16T00:00:00Z", + "digitalRelease": "2022-07-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/63/poster.jpg?lastWrite=638325223917530201", + "remoteUrl": "https://image.tmdb.org/t/p/original/lr11mCT85T1JanlgjMuhs9nMht4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/63/fanart.jpg?lastWrite=638326787457713084", + "remoteUrl": "https://image.tmdb.org/t/p/original/syKiIOqEoOi1Hb0Oh0n9cImcBab.jpg" + } + ], + "website": "https://www.theblackphonemovie.com/", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "nQWAVkx8O74", + "studio": "Universal Pictures", + "path": "/data/The Black Phone (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Black Phone (2022)", + "runtime": 103, + "cleanTitle": "theblackphone", + "imdbId": "tt7144666", + "tmdbId": 756999, + "titleSlug": "756999", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Horror", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 178032, + "value": 6.9, + "type": "user" + }, + "tmdb": { + "votes": 4213, + "value": 7.69, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 65, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 82, + "type": "user" + } + }, + "movieFile": { + "movieId": 63, + "relativePath": "The Black Phone (2022) Remux-1080p.mkv", + "path": "/data/The Black Phone (2022)/The Black Phone (2022) Remux-1080p.mkv", + "size": 6646948062, + "dateAdded": "2023-10-10T10:43:14Z", + "sceneName": "The.Black.Phone.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/spa/fre/eng/eng", + "audioStreamCount": 5, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:43:22", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/spa/fre/spa/fre" + }, + "originalFilePath": "The.Black.Phone.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT/The.Black.Phone.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.7.1-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 2, + "name": "French" + } + ], + "releaseGroup": "FGT", + "edition": "", + "id": 53 + }, + "popularity": 50.839, + "id": 63 + }, + { + "title": "Shazam! Fury of the Gods", + "originalTitle": "Shazam! Fury of the Gods", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam! 2", + "id": 711 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Шазам! 2", + "id": 712 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "샤잠! 2", + "id": 713 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "ชาแซม! จุดเดือดเทพเจ้า", + "id": 714 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "シャザム! フューリー・オブ・ザ・ゴッズ", + "id": 715 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "雷霆沙赞!众神之怒", + "id": 716 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "שאזם! 2: זעם האלים", + "id": 717 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "沙贊! 眾神之怒", + "id": 718 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "שהאזם! 2: זעם האלים", + "id": 719 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "שאזאם! 2: זעם האלים", + "id": 720 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "샤잠! 신들의 분노", + "id": 721 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam ! La Rage des Dieux", + "id": 722 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam 2 - Fury of the Gods", + "id": 723 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam 2 - La rage des Dieux", + "id": 724 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam! Fureur des dieux", + "id": 725 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam!: Η Οργή των Θεών", + "id": 726 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam! Cơn Thịnh Nộ Của Các Vị Thần", + "id": 727 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 94, + "title": "Shazam! Jumalate raev", + "id": 728 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "shazam fury gods", + "sizeOnDisk": 4760199465, + "status": "released", + "overview": "Billy Batson and his foster siblings, who transform into superheroes by saying \"Shazam!\", are forced to get back into action and fight the Daughters of Atlas, who they must stop from using a weapon that could destroy the world.", + "inCinemas": "2023-03-15T00:00:00Z", + "physicalRelease": "2023-06-15T00:00:00Z", + "digitalRelease": "2023-04-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/64/poster.jpg?lastWrite=638325223918720266", + "remoteUrl": "https://image.tmdb.org/t/p/original/A3ZbZsmsvNGdprRi2lKgGEeVLEH.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/64/fanart.jpg?lastWrite=638325223924800596", + "remoteUrl": "https://image.tmdb.org/t/p/original/zRQITMLvVi8z2Xz12Bi6wvbZE82.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "AIc671o9yCI", + "studio": "New Line Cinema", + "path": "/data/Shazam! Fury of the Gods (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Shazam! Fury of the Gods (2023)", + "runtime": 130, + "cleanTitle": "shazamfurygods", + "imdbId": "tt10151854", + "tmdbId": 594767, + "titleSlug": "594767", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Action", + "Fantasy" + ], + "tags": [], + "added": "2023-10-10T08:12:30Z", + "ratings": { + "imdb": { + "votes": 110635, + "value": 6, + "type": "user" + }, + "tmdb": { + "votes": 2466, + "value": 6.646, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 47, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 49, + "type": "user" + } + }, + "movieFile": { + "movieId": 64, + "relativePath": "Shazam! Fury of the Gods (2023) Remux-1080p.mkv", + "path": "/data/Shazam! Fury of the Gods (2023)/Shazam! Fury of the Gods (2023) Remux-1080p.mkv", + "size": 4760199465, + "dateAdded": "2023-10-10T10:53:46Z", + "sceneName": "Shazam.Fury.of.the.Gods.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:10:15", + "scanType": "Progressive", + "subtitles": "eng/chi/chi/cze/dan/dut/est/fin/fre/ger/ger/gre/heb/ind/kor/lav/nor/pol/por/por/slv/spa/spa/swe/tha/tur" + }, + "originalFilePath": "Shazam.Fury.of.the.Gods.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.REMUX-FraMeSToR/Shazam.Fury.of.the.Gods.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 54 + }, + "collection": { + "title": "Shazam! Collection", + "tmdbId": 724848, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 183.152, + "id": 64 + }, + { + "title": "The Whale", + "originalTitle": "The Whale", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "Wieloryb", + "id": 729 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "Vaal", + "id": 730 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "Кит", + "id": 731 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "A Baleia", + "id": 732 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "وال", + "id": 733 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "Valis", + "id": 734 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "La ballena", + "id": 735 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "הלוייתן", + "id": 736 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "La baleine", + "id": 737 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "더 웨일", + "id": 738 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 105, + "title": "我的鯨魚老爸", + "id": 739 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "whale", + "sizeOnDisk": 5997273875, + "status": "released", + "overview": "A reclusive English teacher suffering from severe obesity attempts to reconnect with his estranged teenage daughter for one last chance at redemption.", + "inCinemas": "2022-12-09T00:00:00Z", + "physicalRelease": "2023-03-14T00:00:00Z", + "digitalRelease": "2023-02-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/65/poster.jpg?lastWrite=638325441870371358", + "remoteUrl": "https://image.tmdb.org/t/p/original/jQ0gylJMxWSL490sy0RrPj1Lj7e.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/65/fanart.jpg?lastWrite=638325441870631371", + "remoteUrl": "https://image.tmdb.org/t/p/original/46FRuCeAn6TrS4F1P4F9zhyCpyo.jpg" + } + ], + "website": "https://a24films.com/films/the-whale", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "nWiQodhMvz4", + "studio": "A24", + "path": "/data/The Whale (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Whale (2022)", + "runtime": 116, + "cleanTitle": "thewhale", + "imdbId": "tt13833688", + "tmdbId": 785084, + "titleSlug": "785084", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 183311, + "value": 7.7, + "type": "user" + }, + "tmdb": { + "votes": 2989, + "value": 7.947, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 60, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 64, + "type": "user" + } + }, + "movieFile": { + "movieId": 65, + "relativePath": "The Whale (2022) Remux-1080p.mkv", + "path": "/data/The Whale (2022)/The Whale (2022) Remux-1080p.mkv", + "size": 5997273875, + "dateAdded": "2023-10-10T14:35:26Z", + "sceneName": "The.Whale.2022.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DUKE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:56:51", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/spa/spa" + }, + "originalFilePath": "The.Whale.2022.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DUKE/The.Whale.2022.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DUKE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "DUKE", + "edition": "", + "id": 60 + }, + "popularity": 89.969, + "id": 65 + }, + { + "title": "My Year of Dicks", + "originalTitle": "My Year of Dicks", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "my year dicks", + "sizeOnDisk": 240674362, + "status": "released", + "overview": "An imaginative 15-year-old is stubbornly determined to lose her virginity despite the pathetic pickings in the outskirts of Houston in the early '90s.", + "inCinemas": "2023-02-17T00:00:00Z", + "digitalRelease": "2022-06-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/66/poster.jpg?lastWrite=638325441870221350", + "remoteUrl": "https://image.tmdb.org/t/p/original/mfOZCsCyUcwSwy2O2aJBZZC8fNw.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/66/fanart.jpg?lastWrite=638325441870371358", + "remoteUrl": "https://image.tmdb.org/t/p/original/6L2JjW78cpWmFMFVTsLQMPNX9jM.jpg" + } + ], + "website": "https://myyearofdicks.com/", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "-kPlGwILJok", + "studio": "Rooster Teeth Productions", + "path": "/data/My Year of Dicks (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/My Year of Dicks (2023)", + "runtime": 26, + "cleanTitle": "myyeardicks", + "imdbId": "tt17663790", + "tmdbId": 971188, + "titleSlug": "971188", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Animation", + "Comedy" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 2713, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 29, + "value": 6.5, + "type": "user" + } + }, + "movieFile": { + "movieId": 66, + "relativePath": "My Year of Dicks (2023) WEBRip-1080p.mkv", + "path": "/data/My Year of Dicks (2023)/My Year of Dicks (2023) WEBRip-1080p.mkv", + "size": 240674362, + "dateAdded": "2023-10-10T14:35:24Z", + "sceneName": "My.Year.of.Dicks.2022.1080p.WEBRip.700MB.DD5.1.x264-GalaxyRG", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 320000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "25:43", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "My.Year.of.Dicks.2022.1080p.WEBRip.700MB.DD5.1.x264-GalaxyRG/My.Year.of.Dicks.2022.1080p.WEBRip.700MB.DD5.1.x264-GalaxyRG.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "GalaxyRG", + "edition": "", + "id": 59 + }, + "popularity": 12.977, + "id": 66 + }, + { + "title": "The Pope: Answers", + "originalTitle": "Amén: Francisco responde", + "originalLanguage": { + "id": 3, + "name": "Spanish" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 107, + "title": "Amén: Perguntando ao Papa", + "id": 743 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "pope answers", + "sizeOnDisk": 760761893, + "status": "released", + "overview": "Ten young people from all over the world meet in Rome with Pope Francis with the aim of talking and conveying to him the main concerns of their generation. What awaits them is an unprecedented meeting, a face-to-face conversation, and a unique event.", + "digitalRelease": "2023-04-05T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/67/poster.jpg?lastWrite=638325441871611422", + "remoteUrl": "https://image.tmdb.org/t/p/original/dqyzHNor7wEYhWRzVRrEuvqbCkU.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/67/fanart.jpg?lastWrite=638325441871831434", + "remoteUrl": "https://image.tmdb.org/t/p/original/uXADu1mfgTwNkBjgtDkLQRt5N8a.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "MjojARMVX3M", + "studio": "Producciones del Barrio", + "path": "/data/The Pope Answers (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Pope Answers (2023)", + "runtime": 83, + "cleanTitle": "thepopeanswers", + "imdbId": "tt27441525", + "tmdbId": 1094266, + "titleSlug": "1094266", + "rootFolderPath": "/data/", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 515, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 48, + "value": 7.656, + "type": "user" + } + }, + "movieFile": { + "movieId": 67, + "relativePath": "The Pope Answers (2023) WEBDL-1080p.mkv", + "path": "/data/The Pope Answers (2023)/The Pope Answers (2023) WEBDL-1080p.mkv", + "size": 760761893, + "dateAdded": "2023-10-10T14:37:14Z", + "sceneName": "The.Pope.Answers.2023.1080p.WEB.h264-EDITH", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 256000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "spa", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 25, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:22:33", + "scanType": "Progressive", + "subtitles": "eng/spa/spa/cze/dan/ger/gre/spa/fin/fre/hun/ita/jpn/kor/dut/nor/pol/por/por/rum/slo/swe/tur/chi" + }, + "originalFilePath": "The.Pope.Answers.2023.1080p.WEB.h264-EDITH/The.Pope.Answers.2023.1080p.WEB.h264-EDITH.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 3, + "name": "Spanish" + } + ], + "releaseGroup": "EDITH", + "edition": "", + "id": 61 + }, + "popularity": 4.163, + "id": 67 + }, + { + "title": "Tetris", + "originalTitle": "Tetris", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 108, + "title": "Тетрис", + "id": 740 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 108, + "title": "俄羅斯方塊:版權爭戰", + "id": 741 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "tetris", + "sizeOnDisk": 2219424382, + "status": "released", + "overview": "In 1988, American video game salesman Henk Rogers discovers the video game Tetris. When he sets out to bring the game to the world, he enters a dangerous web of lies and corruption behind the Iron Curtain.", + "digitalRelease": "2023-03-30T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/68/poster.jpg?lastWrite=638325441870921387", + "remoteUrl": "https://image.tmdb.org/t/p/original/4F2QwCOYHJJjecSvdOjStuVLkpu.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/68/fanart.jpg?lastWrite=638325441871051393", + "remoteUrl": "https://image.tmdb.org/t/p/original/4avmIRBBOs9b4DKoenf8SWWJJP7.jpg" + } + ], + "website": "https://tv.apple.com/movie/umc.cmc.4evmgcam356pzgxs2l7a18d7b", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "-BLM1naCfME", + "studio": "Marv Films", + "path": "/data/Tetris (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Tetris (2023)", + "runtime": 118, + "cleanTitle": "tetris", + "imdbId": "tt12758060", + "tmdbId": 726759, + "titleSlug": "726759", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "History", + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 70840, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 904, + "value": 7.782, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 61, + "type": "user" + } + }, + "movieFile": { + "movieId": 68, + "relativePath": "Tetris (2023) WEBDL-1080p.mkv", + "path": "/data/Tetris (2023)/Tetris (2023) WEBDL-1080p.mkv", + "size": 2219424382, + "dateAdded": "2023-10-10T15:02:01Z", + "sceneName": "Tetris.2023.WEBDL-1080p.h264.EAC3.Atmos.-AOS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1918x802", + "runTime": "1:57:46", + "scanType": "Progressive", + "subtitles": "fre/fre/fre" + }, + "originalFilePath": "Tetris.2023.WEBDL-1080p.h264.EAC3.Atmos.-AOS/Tetris (2023) WEBDL-1080p h264 EAC3 Atmos -AOS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AOS", + "edition": "", + "id": 64 + }, + "popularity": 37.821, + "id": 68 + }, + { + "title": "Pulp Fiction", + "originalTitle": "Pulp Fiction", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Makulatura", + "id": 744 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Pulp Fiction: Historky z podsvetia", + "id": 745 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Кримiнальне чтиво", + "id": 746 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Pulp Fiction - Chronological Cut", + "id": 747 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Sund", + "id": 748 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "parup fikusyon", + "id": 749 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "पल्प फिक्शन", + "id": 750 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Евтини приказни", + "id": 751 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "μυθοπλασία πολτού", + "id": 752 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Sifrut Zolla", + "id": 753 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Pulp Fiction - Tarinoita väkivallasta", + "id": 754 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Lubene", + "id": 755 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Fiction pulpeuse", + "id": 756 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "黑色追緝令", + "id": 757 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "危險人物", + "id": 758 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Петпарачке приче", + "id": 759 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "펄프 픽션", + "id": 760 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Криминальное чтиво", + "id": 761 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "低俗小说", + "id": 762 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 109, + "title": "Tiempos Violentos", + "id": 1280 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "pulp fiction", + "sizeOnDisk": 6098083133, + "status": "released", + "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", + "inCinemas": "1994-09-10T00:00:00Z", + "physicalRelease": "1995-06-01T00:00:00Z", + "digitalRelease": "2002-12-06T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/69/poster.jpg?lastWrite=638325441872441465", + "remoteUrl": "https://image.tmdb.org/t/p/original/d5iIlFn5s0ImszYzBPb8JPIfbXD.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/69/fanart.jpg?lastWrite=638329380095404985", + "remoteUrl": "https://image.tmdb.org/t/p/original/suaEOtk1N1sgg2MTM7oZd2cfVp3.jpg" + } + ], + "website": "https://www.miramax.com/movie/pulp-fiction/", + "year": 1994, + "hasFile": true, + "youTubeTrailerId": "tGpTpVyI_OQ", + "studio": "Miramax", + "path": "/data/Pulp Fiction (1994)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Pulp Fiction (1994)", + "runtime": 154, + "cleanTitle": "pulpfiction", + "imdbId": "tt0110912", + "tmdbId": 680, + "titleSlug": "680", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "Crime" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 2151655, + "value": 8.9, + "type": "user" + }, + "tmdb": { + "votes": 25975, + "value": 8.488, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 95, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 92, + "type": "user" + } + }, + "movieFile": { + "movieId": 69, + "relativePath": "Pulp Fiction (1994) Remux-1080p.mkv", + "path": "/data/Pulp Fiction (1994)/Pulp Fiction (1994) Remux-1080p.mkv", + "size": 6098083133, + "dateAdded": "2023-10-10T14:56:59Z", + "sceneName": "Pulp.Fiction.1994.Hybrid.BluRay.Remux.1080p.AVC.DTS-HD.MA.5.1-HiFi-AsRequested", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:34:25", + "scanType": "Progressive", + "subtitles": "eng/eng/spa/jpn/fre/jpn/swe/dan/nor/fin" + }, + "originalFilePath": "Pulp.Fiction.1994.Hybrid.BluRay.Remux.1080p.AVC.DTS-HD.MA.5.1-HiFi-AsRequested/Pulp.Fiction.1994.Hybrid.BluRay.Remux.1080p.AVC.DTS-HD.MA.5.1-HiFi-AsRequested.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "HiFi", + "edition": "", + "id": 62 + }, + "popularity": 74.136, + "id": 69 + }, + { + "title": "Corner Office", + "originalTitle": "Corner Office", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 110, + "title": "Le bureau du coin", + "id": 742 + } + ], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "corner office", + "sizeOnDisk": 1213752272, + "status": "released", + "overview": "In this office satire, Orson, a straight-laced employee, retreats to a blissfully empty corner office to get away from his lackluster colleagues. But why does this seem to upset them so much?", + "inCinemas": "2023-08-04T00:00:00Z", + "physicalRelease": "2023-09-12T00:00:00Z", + "digitalRelease": "2023-08-04T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/70/poster.jpg?lastWrite=638325441872651476", + "remoteUrl": "https://image.tmdb.org/t/p/original/rZfqjvxJNZAwUaQLvTPTsDGZWox.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/70/fanart.jpg?lastWrite=638325441872851486", + "remoteUrl": "https://image.tmdb.org/t/p/original/5SBgIj4PejTBe3gGMb2zTTCMkXB.jpg" + } + ], + "website": "https://www.lionsgate.com/movies/corner-office", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "iEbvLxU8vMI", + "studio": "Anonymous Content", + "path": "/data/Corner Office (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Corner Office (2023)", + "runtime": 101, + "cleanTitle": "corneroffice", + "imdbId": "tt13849558", + "tmdbId": 800279, + "titleSlug": "800279", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 2606, + "value": 6, + "type": "user" + }, + "tmdb": { + "votes": 44, + "value": 7, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 28, + "type": "user" + } + }, + "movieFile": { + "movieId": 70, + "relativePath": "Corner Office (2023) WEBDL-1080p.mkv", + "path": "/data/Corner Office (2023)/Corner Office (2023) WEBDL-1080p.mkv", + "size": 1213752272, + "dateAdded": "2023-10-10T14:26:24Z", + "sceneName": "Corner.Office.2022.1080p.WEB.H264-DiMEPiECE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:41:29", + "scanType": "Progressive", + "subtitles": "eng/fre" + }, + "originalFilePath": "Corner.Office.2022.1080p.WEB.H264-DiMEPiECE/Corner.Office.2022.1080p.WEB.H264-DiMEPiECE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "DiMEPiECE", + "edition": "", + "id": 58 + }, + "popularity": 58.313, + "id": 70 + }, + { + "title": "The Equalizer 3", + "originalTitle": "The Equalizer 3", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 111, + "title": "The Equalizer 3 - The Final Chapter", + "id": 880 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 111, + "title": "The Final Chapter", + "id": 881 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 111, + "title": "The Equalizer 3: Capítulo Final", + "id": 882 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 111, + "title": "私刑教育3", + "id": 883 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 111, + "title": "موازنه‌ساز ۳", + "id": 884 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "equalizer 3", + "sizeOnDisk": 2350366626, + "status": "released", + "overview": "Robert McCall finds himself at home in Southern Italy but he discovers his friends are under the control of local crime bosses. As events turn deadly, McCall knows what he has to do: become his friends' protector by taking on the mafia.", + "inCinemas": "2023-08-30T00:00:00Z", + "digitalRelease": "2023-10-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/71/poster.jpg?lastWrite=638325442019859100", + "remoteUrl": "https://image.tmdb.org/t/p/original/b0Ej6fnXAP8fK75hlyi2jKqdhHz.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/71/fanart.jpg?lastWrite=638336294253698356", + "remoteUrl": "https://image.tmdb.org/t/p/original/tC78Pck2YCsUAtEdZwuHYUFYtOj.jpg" + } + ], + "website": "https://www.equalizer.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "fQfrzHFmVe8", + "studio": "Escape Artists", + "path": "/data/The Equalizer 3 (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Equalizer 3 (2023)", + "runtime": 109, + "cleanTitle": "theequalizer3", + "imdbId": "tt17024450", + "tmdbId": 926393, + "titleSlug": "926393", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Action", + "Thriller", + "Crime" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 50393, + "value": 6.9, + "type": "user" + }, + "tmdb": { + "votes": 1054, + "value": 7.3, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 76, + "type": "user" + } + }, + "movieFile": { + "movieId": 71, + "relativePath": "The Equalizer 3 (2023) WEBDL-1080p.mkv", + "path": "/data/The Equalizer 3 (2023)/The Equalizer 3 (2023) WEBDL-1080p.mkv", + "size": 2350366626, + "dateAdded": "2023-10-12T11:22:19Z", + "sceneName": "The.Equalizer.3.2023.1080p.WEB-DL.x265-Protozoan", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 320000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "1:48:57", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/chi/chi/chi/cze/dan/ger/est/fre/gre/ind/kor/lav/lit/dut/nor/pol/por/slo/slv/fin/swe/tha/ukr/vie" + }, + "originalFilePath": "The.Equalizer.3.2023.1080p.WEB-DL.x265-Protozoan/The.Equalizer.3.2023.1080p.WEB-DL.x265-Protozoan.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "Protozoan", + "edition": "", + "id": 94 + }, + "collection": { + "title": "The Equalizer Collection", + "tmdbId": 523855, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 2471.515, + "id": 71 + }, + { + "title": "Amélie", + "originalTitle": "Le Fabuleux Destin d'Amélie Poulain", + "originalLanguage": { + "id": 2, + "name": "French" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "The Fabulous Destiny of Amelie Poulain", + "id": 770 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Neymovirna dolya Ameli Pulen", + "id": 771 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Ameri", + "id": 772 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Amélie Poulain", + "id": 773 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "天使艾米莉", + "id": 774 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "El fabuloso destino de Amelie Poulain", + "id": 775 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Čudesna sudbina Amelije Pulen", + "id": 776 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "سرنوشت شگفت‌انگیز املی پولن", + "id": 777 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Neveroyatnata sŭdba na Ameli Pulen", + "id": 778 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Amelí", + "id": 779 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Амели", + "id": 780 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Амелі", + "id": 781 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Die fabelhafte Welt der Amélie", + "id": 782 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Amēlija", + "id": 783 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "O Fabuloso Destino de Amélie Poulain", + "id": 784 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "艾蜜莉的異想世界", + "id": 785 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "Den fabelaktige Amélie fra Montmartre", + "id": 786 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 112, + "title": "アメリ:2001", + "id": 787 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "amélie", + "sizeOnDisk": 4894955972, + "status": "released", + "overview": "At a tiny Parisian café, the adorable yet painfully shy Amélie accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", + "inCinemas": "2001-04-25T00:00:00Z", + "physicalRelease": "2002-07-08T00:00:00Z", + "digitalRelease": "2006-12-25T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/72/poster.jpg?lastWrite=638325441874971596", + "remoteUrl": "https://image.tmdb.org/t/p/original/nSxDa3M9aMvGVLoItzWTepQ5h5d.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/72/fanart.jpg?lastWrite=638325923091841948", + "remoteUrl": "https://image.tmdb.org/t/p/original/9TEUJy5aRP7LaM1LKTfcxVK34JK.jpg" + } + ], + "website": "https://www.miramax.com/movie/amelie/", + "year": 2001, + "hasFile": true, + "youTubeTrailerId": "HUECWi5pX7o", + "studio": "France 3 Cinéma", + "path": "/data/Amélie (2001)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Amélie (2001)", + "runtime": 122, + "cleanTitle": "amelie", + "imdbId": "tt0211915", + "tmdbId": 194, + "titleSlug": "194", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 779752, + "value": 8.3, + "type": "user" + }, + "tmdb": { + "votes": 10797, + "value": 7.9, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 69, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 89, + "type": "user" + } + }, + "movieFile": { + "movieId": 72, + "relativePath": "Amélie (2001) Remux-1080p.mkv", + "path": "/data/Amélie (2001)/Amélie (2001) Remux-1080p.mkv", + "size": 4894955972, + "dateAdded": "2023-10-10T15:14:06Z", + "sceneName": "Amelie.2001.BluRay.1080p.DTS-HD.MA.5.1.AVC.HYBRiD.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "fre/eng/fre", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:01:40", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/fre/ger/jpn/spa/spa/ger/jpn" + }, + "originalFilePath": "Amelie.2001.BluRay.1080p.DTS-HD.MA.5.1.AVC.HYBRiD.REMUX-FraMeSToR/Amelie.2001.BluRay.1080p.DTS-HD.MA.5.1.AVC.HYBRiD.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 65 + }, + "popularity": 24.993, + "id": 72 + }, + { + "title": "Fool's Paradise", + "originalTitle": "Fool's Paradise", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "Just Fool's Gold", + "id": 763 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "El Tonto", + "id": 764 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "愚人天堂", + "id": 765 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "傻瓜天堂", + "id": 766 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "Un monde d'illusions", + "id": 767 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "Рай для дурнів", + "id": 768 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 113, + "title": "Рай для дурня", + "id": 769 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "fool s paradise", + "sizeOnDisk": 3318221099, + "status": "released", + "overview": "A down-on-his-luck publicist discovers a recently released mental health patient who looks just like a misbehaving movie star. The publicist subs him into a film, creating a new star. But fame and fortune are not all they are cracked up to be.", + "inCinemas": "2023-05-12T00:00:00Z", + "digitalRelease": "2023-08-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/73/poster.jpg?lastWrite=638325441873621526", + "remoteUrl": "https://image.tmdb.org/t/p/original/pPv4KYbcG16xmr2Q0rlV2Brqh6g.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/73/fanart.jpg?lastWrite=638325441873821537", + "remoteUrl": "https://image.tmdb.org/t/p/original/bGKpzUaA4c5a16so6IYzyJBHtLf.jpg" + } + ], + "website": "https://www.foolsparadisemovie.com", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "3j6b_hevaoY", + "studio": "Wrigley Pictures", + "path": "/data/Fool's Paradise (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fool's Paradise (2023)", + "runtime": 99, + "cleanTitle": "foolsparadise", + "imdbId": "tt9013340", + "tmdbId": 553147, + "titleSlug": "553147", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 3640, + "value": 4.7, + "type": "user" + }, + "tmdb": { + "votes": 34, + "value": 4.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 27, + "type": "user" + } + }, + "movieFile": { + "movieId": 73, + "relativePath": "Fool's Paradise (2023) Remux-1080p.mkv", + "path": "/data/Fool's Paradise (2023)/Fool's Paradise (2023) Remux-1080p.mkv", + "size": 3318221099, + "dateAdded": "2023-10-10T15:00:12Z", + "sceneName": "Fool's.Paradise.2023.1080p.Remux.AVC.DTS-HD.MA.5.1-playBD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:38:22", + "scanType": "Progressive", + "subtitles": "eng/spa/fre/rum" + }, + "originalFilePath": "Fool's.Paradise.2023.1080p.Remux.AVC.DTS-HD.MA.5.1-playBD/Fool's.Paradise.2023.1080p.Remux.AVC.DTS-HD.MA.5.1-playBD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playBD", + "edition": "", + "id": 63 + }, + "popularity": 12.095, + "id": 73 + }, + { + "title": "Biosphere", + "originalTitle": "Biosphere", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "biosphere", + "sizeOnDisk": 1267853568, + "status": "released", + "overview": "In the not-too-distant future, the last two men on earth must adapt and evolve to save humanity.", + "inCinemas": "2023-07-07T00:00:00Z", + "digitalRelease": "2023-07-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/74/poster.jpg?lastWrite=638325441874021547", + "remoteUrl": "https://image.tmdb.org/t/p/original/2yqYQMibudBGrqP70mEcv7pNOQX.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/74/fanart.jpg?lastWrite=638325441874201556", + "remoteUrl": "https://image.tmdb.org/t/p/original/ul8bzec4wZtJ6k3I5Qvw5FPHRU2.jpg" + } + ], + "website": "https://www.ifcfilms.com/films/biosphere", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Bs4TNyooiSI", + "studio": "Duplass Brothers Productions", + "path": "/data/Biosphere (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Biosphere (2023)", + "runtime": 106, + "cleanTitle": "biosphere", + "imdbId": "tt15301000", + "tmdbId": 865797, + "titleSlug": "865797", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 1408, + "value": 5.5, + "type": "user" + }, + "tmdb": { + "votes": 17, + "value": 4.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 59, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 78, + "type": "user" + } + }, + "movieFile": { + "movieId": 74, + "relativePath": "Biosphere (2023) WEBDL-1080p.mkv", + "path": "/data/Biosphere (2023)/Biosphere (2023) WEBDL-1080p.mkv", + "size": 1267853568, + "dateAdded": "2023-10-10T14:22:52Z", + "sceneName": "Biosphere.2022.1080p.AMZN.WEB-DL.DDP5.1.H.264-SCOPE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:46:36", + "scanType": "Progressive", + "subtitles": "eng/eng/fre" + }, + "originalFilePath": "Biosphere.2022.1080p.AMZN.WEB-DL.DDP5.1.H.264-SCOPE/Biosphere.2022.1080p.AMZN.WEB-DL.DDP5.1.H.264-SCOPE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SCOPE", + "edition": "", + "id": 57 + }, + "popularity": 5.459, + "id": 74 + }, + { + "title": "Arrival", + "originalTitle": "Arrival", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Contact", + "id": 790 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Story of Your Life", + "id": 791 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Ha'mifgash", + "id": 792 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "I Afixi", + "id": 793 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "어라이벌", + "id": 794 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Premier Contact", + "id": 795 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "A Chegada", + "id": 796 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Arrival - Warum sind sie hier?", + "id": 797 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "La llegada", + "id": 798 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "L'arrivée", + "id": 799 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "メッセージ:2016", + "id": 800 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 115, + "title": "Gəliş", + "id": 1439 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "arrival", + "sizeOnDisk": 4594745689, + "status": "released", + "overview": "Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.", + "inCinemas": "2016-11-10T00:00:00Z", + "physicalRelease": "2017-02-14T00:00:00Z", + "digitalRelease": "2017-04-07T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/75/poster.jpg?lastWrite=638325441881871954", + "remoteUrl": "https://image.tmdb.org/t/p/original/x2FJsf1ElAgr63Y3PNPtJrcmpoe.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/75/fanart.jpg?lastWrite=638325441882091965", + "remoteUrl": "https://image.tmdb.org/t/p/original/5B14ls1dftgOyTSRdzV9EPCa5pR.jpg" + } + ], + "website": "http://www.arrivalmovie.com/", + "year": 2016, + "hasFile": true, + "youTubeTrailerId": "7W1m5ER3I1Y", + "studio": "FilmNation Entertainment", + "path": "/data/Arrival (2016)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Arrival (2016)", + "runtime": 116, + "cleanTitle": "arrival", + "imdbId": "tt2543164", + "tmdbId": 329865, + "titleSlug": "329865", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Science Fiction", + "Mystery" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 740638, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 16627, + "value": 7.588, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 94, + "type": "user" + } + }, + "movieFile": { + "movieId": 75, + "relativePath": "Arrival (2016) Remux-1080p.mkv", + "path": "/data/Arrival (2016)/Arrival (2016) Remux-1080p.mkv", + "size": 4594745689, + "dateAdded": "2023-10-10T15:33:40Z", + "sceneName": "Arrival.2016.Remux-1080p.AVC-FRAMESTOR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:56:22", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/spa" + }, + "originalFilePath": "Arrival.2016.Remux-1080p.AVC-FRAMESTOR/Arrival.2016.Remux-1080p.AVC-FRAMESTOR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FRAMESTOR", + "edition": "", + "id": 67 + }, + "popularity": 54.661, + "id": 75 + }, + { + "title": "The Adjustment Bureau", + "originalTitle": "The Adjustment Bureau", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 116, + "title": "Los agentes del destino", + "id": 788 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 116, + "title": "Міняючи реальність", + "id": 789 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "adjustment bureau", + "sizeOnDisk": 4741951956, + "status": "released", + "overview": "A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.", + "inCinemas": "2011-03-03T00:00:00Z", + "physicalRelease": "2011-06-21T00:00:00Z", + "digitalRelease": "2013-05-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/76/poster.jpg?lastWrite=638325441881001909", + "remoteUrl": "https://image.tmdb.org/t/p/original/A4wKf04g4DCVAWC67uPGozIJPGw.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/76/fanart.jpg?lastWrite=638325441881151916", + "remoteUrl": "https://image.tmdb.org/t/p/original/yPAYpLofITQ9pST80ZNBGIE2pfN.jpg" + } + ], + "website": "http://www.theadjustmentbureau.com/", + "year": 2011, + "hasFile": true, + "youTubeTrailerId": "fSeWHl1PaKs", + "studio": "Universal Pictures", + "path": "/data/The Adjustment Bureau (2011)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Adjustment Bureau (2011)", + "runtime": 106, + "cleanTitle": "theadjustmentbureau", + "imdbId": "tt1385826", + "tmdbId": 38050, + "titleSlug": "38050", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Science Fiction", + "Thriller", + "Romance" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 265557, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 4208, + "value": 6.734, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 60, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 76, + "relativePath": "The Adjustment Bureau (2011) Remux-1080p.mkv", + "path": "/data/The Adjustment Bureau (2011)/The Adjustment Bureau (2011) Remux-1080p.mkv", + "size": 4741951956, + "dateAdded": "2023-10-10T15:23:08Z", + "sceneName": "The.Adjustment.Bureau.2011.BluRay.1080p.DTS-HD.MA.5.1.VC-1.REMUX-FraMeSToR-Obfuscated", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:45:45", + "scanType": "Progressive", + "subtitles": "eng/jpn/jpn/fre/ita/ger/spa/dut/chi/chi/dan/fin/gre/ice/kor/nor/por/swe/eng/fre/ita/ger/spa" + }, + "originalFilePath": "The.Adjustment.Bureau.2011.BluRay.1080p.DTS-HD.MA.5.1.VC-1.REMUX-FraMeSToR-Obfuscated/The.Adjustment.Bureau.2011.BluRay.1080p.DTS-HD.MA.5.1.VC-1.REMUX-FraMeSToR-Obfuscated.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 66 + }, + "popularity": 21.535, + "id": 76 + }, + { + "title": "Moon", + "originalTitle": "Moon", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "月球惊魂", + "id": 814 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "Moon - Die dunkle Seite des Mondes", + "id": 815 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "Kuu", + "id": 816 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "Місяць 2112", + "id": 817 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "Księżyc", + "id": 818 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 117, + "title": "月劫餘生", + "id": 819 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "moon", + "sizeOnDisk": 3102262333, + "status": "released", + "overview": "With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.", + "inCinemas": "2009-07-03T00:00:00Z", + "physicalRelease": "2010-01-27T00:00:00Z", + "digitalRelease": "2013-04-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/77/poster.jpg?lastWrite=638325923144094755", + "remoteUrl": "https://image.tmdb.org/t/p/original/35IU0Mq0zFsN1mYwDGts5mKc77n.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/77/fanart.jpg?lastWrite=638325441883552041", + "remoteUrl": "https://image.tmdb.org/t/p/original/mvUAo9ACgmLpS4Ofc2IwD4n7WCt.jpg" + } + ], + "website": "http://www.sonyclassics.com/moon/", + "year": 2009, + "hasFile": true, + "youTubeTrailerId": "xV5udqNpP94", + "studio": "Lunar Industries", + "path": "/data/Moon (2009)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Moon (2009)", + "runtime": 97, + "cleanTitle": "moon", + "imdbId": "tt1182345", + "tmdbId": 17431, + "titleSlug": "17431", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Science Fiction", + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 370456, + "value": 7.8, + "type": "user" + }, + "tmdb": { + "votes": 5245, + "value": 7.57, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 90, + "type": "user" + } + }, + "movieFile": { + "movieId": 77, + "relativePath": "Moon (2009) Remux-1080p.mkv", + "path": "/data/Moon (2009)/Moon (2009) Remux-1080p.mkv", + "size": 3102262333, + "dateAdded": "2023-10-10T15:41:18Z", + "sceneName": "Moon.2009.Blu-Ray.1080p.AVC.ReMuX.DTS-HDMA.5.1-PriMeHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:37:09", + "scanType": "Progressive", + "subtitles": "eng/eng/fra/spa/por/spa/spa/por/por" + }, + "originalFilePath": "Moon.2009.Blu-Ray.1080p.AVC.ReMuX.DTS-HDMA.5.1-PriMeHD/Moon.2009.Blu-Ray.1080p.AVC.ReMuX.DTS-HDMA.5.1-PriMeHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "PriMeHD", + "edition": "", + "id": 68 + }, + "collection": { + "title": "Moon Collection", + "tmdbId": 995464, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 18.328, + "id": 77 + }, + { + "title": "Poor Things", + "originalTitle": "Poor Things", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "Бідолахи", + "id": 801 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "푸어 띵스", + "id": 802 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "Бедные-несчастные", + "id": 803 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "كائنات مسكينة", + "id": 804 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "Vaesekesed", + "id": 805 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "Zavallılar", + "id": 806 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 118, + "title": "可憐的東西", + "id": 1414 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "poor things", + "sizeOnDisk": 0, + "status": "announced", + "overview": "Bella Baxter is brought back to life by the brilliant and unorthodox scientist Dr. Godwin Baxter. Hungry for the worldliness she is lacking, Bella runs off with Duncan Wedderburn, a slick and debauched lawyer, on a whirlwind adventure across the continents.", + "inCinemas": "2023-12-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/78/poster.jpg?lastWrite=638325441882521987", + "remoteUrl": "https://image.tmdb.org/t/p/original/IFQXRyH6EP3DCqEIMKuYnohaEo.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/78/fanart.jpg?lastWrite=638325441882782001", + "remoteUrl": "https://image.tmdb.org/t/p/original/nnawgliAWyUFAjRywkXWiCK3b5E.jpg" + } + ], + "website": "https://www.searchlightpictures.com/films/poor-things", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "muuLGNH3JRQ", + "studio": "Element Pictures", + "path": "/data/Poor Things (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/Poor Things (2023)", + "runtime": 141, + "cleanTitle": "poorthings", + "imdbId": "tt14230458", + "tmdbId": 792307, + "titleSlug": "792307", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Science Fiction", + "Romance", + "Comedy" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 2069, + "value": 8.5, + "type": "user" + }, + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "popularity": 33.52, + "id": 78 + }, + { + "title": "The Talented Mr. Ripley", + "originalTitle": "The Talented Mr. Ripley", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "The Strange Mr. Ripley", + "id": 807 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "El Talentoso Sr. Ripley", + "id": 808 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "리플리", + "id": 809 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "天才瑞普利", + "id": 810 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "Den talentfulle mr. Ripley", + "id": 811 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "السيد ريبلي الموهوب", + "id": 812 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "Ο Ταλαντούχος κος Ρίπλεϊ", + "id": 813 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 119, + "title": "El talento de Mr. Ripley", + "id": 1216 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "talented mr ripley", + "sizeOnDisk": 1826354025, + "status": "released", + "overview": "Tom Ripley is a calculating young man who believes it's better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.", + "inCinemas": "1999-12-25T00:00:00Z", + "physicalRelease": "2006-11-15T00:00:00Z", + "digitalRelease": "2003-04-18T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/79/poster.jpg?lastWrite=638336294295610616", + "remoteUrl": "https://image.tmdb.org/t/p/original/6ojHgqtIR41O2qLKa7LFUVj0cZa.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/79/fanart.jpg?lastWrite=638336294295820627", + "remoteUrl": "https://image.tmdb.org/t/p/original/51UDa3IuGyiKGe2MgMcLGvJE2Fm.jpg" + } + ], + "website": "http://www.miramax.com/movie/the-talented-mr-ripley/", + "year": 1999, + "hasFile": true, + "youTubeTrailerId": "Ylc5ToQoLg0", + "studio": "Timnick Films", + "path": "/data/The Talented Mr. Ripley (1999)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Talented Mr. Ripley (1999)", + "runtime": 139, + "cleanTitle": "thetalentedmrripley", + "imdbId": "tt0134119", + "tmdbId": 1213, + "titleSlug": "1213", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 224691, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 3258, + "value": 7.2, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 76, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 85, + "type": "user" + } + }, + "movieFile": { + "movieId": 79, + "relativePath": "The Talented Mr. Ripley (1999) Bluray-1080p Proper.mkv", + "path": "/data/The Talented Mr. Ripley (1999)/The Talented Mr. Ripley (1999) Bluray-1080p Proper.mkv", + "size": 1826354025, + "dateAdded": "2023-10-15T22:00:53Z", + "sceneName": "The.Talented.Mr.Ripley.1999.PROPER.1080p.BluRay.X264-AMIABLE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1040", + "runTime": "2:19:06", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "The.Talented.Mr.Ripley.1999.PROPER.1080p.BluRay.X264-AMIABLE.1/The.Talented.Mr.Ripley.1999.PROPER.1080p.BluRay.X264-AMIABLE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AMIABLE", + "edition": "", + "id": 138 + }, + "popularity": 18.666, + "id": 79 + }, + { + "title": "Æon Flux", + "originalTitle": "Æon Flux", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 120, + "title": "Aeon Flux", + "id": 820 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 120, + "title": "万古流传", + "id": 821 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 120, + "title": "倩影刺客", + "id": 822 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 120, + "title": "Æon Flux - Blicke der Zukunft ins Auge", + "id": 823 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 120, + "title": "Eon Fluks", + "id": 824 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "æon flux", + "sizeOnDisk": 1261855088, + "status": "released", + "overview": "400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When Æon Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.", + "inCinemas": "2005-11-30T00:00:00Z", + "physicalRelease": "2006-01-13T00:00:00Z", + "digitalRelease": "2008-09-09T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/80/poster.jpg?lastWrite=638325441884082068", + "remoteUrl": "https://image.tmdb.org/t/p/original/5958Nt4QX6aRSUdQnvNw8wqjTJQ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/80/fanart.jpg?lastWrite=638325441884302079", + "remoteUrl": "https://image.tmdb.org/t/p/original/r22ScuHI0cDwvSM5d9wt2I4VKrA.jpg" + } + ], + "website": "", + "year": 2005, + "hasFile": true, + "youTubeTrailerId": "f0XQB6j5gpg", + "studio": "Paramount", + "path": "/data/Æon Flux (2005)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Æon Flux (2005)", + "runtime": 93, + "cleanTitle": "æonflux", + "imdbId": "tt0402022", + "tmdbId": 8202, + "titleSlug": "8202", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Science Fiction", + "Action", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 131500, + "value": 5.4, + "type": "user" + }, + "tmdb": { + "votes": 2040, + "value": 5.596, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 36, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 10, + "type": "user" + } + }, + "movieFile": { + "movieId": 80, + "relativePath": "Æon Flux (2005) Bluray-1080p.mkv", + "path": "/data/Æon Flux (2005)/Æon Flux (2005) Bluray-1080p.mkv", + "size": 1261855088, + "dateAdded": "2023-10-15T17:25:13Z", + "sceneName": "Aeon.Flux.2005.1080p.BluRay.DD5.1.x264-TayTO", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x816", + "runTime": "1:32:51", + "scanType": "Progressive", + "subtitles": "dut/eng/fin/fre" + }, + "originalFilePath": "Aeon.Flux.2005.1080p.BluRay.DD5.1.x264-TayTO/Aeon Flux 2005 1080p BluRay DD5.1 x264-TayTO.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "TayTO", + "edition": "", + "id": 132 + }, + "popularity": 27.962, + "id": 80 + }, + { + "title": "Young Adult", + "originalTitle": "Young Adult", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 121, + "title": "Pszichoszingli", + "id": 825 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 121, + "title": "装嫩", + "id": 826 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 121, + "title": "Jovens adultos", + "id": 827 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 121, + "title": "영 어덜트", + "id": 828 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 121, + "title": "Jovem Adulta", + "id": 829 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "young adult", + "sizeOnDisk": 2632881323, + "status": "released", + "overview": "A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who's now married with a family.", + "inCinemas": "2011-11-11T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/81/poster.jpg?lastWrite=638325441884692100", + "remoteUrl": "https://image.tmdb.org/t/p/original/9QkbSaulHynkGx3Czx7VBaK83IX.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/81/fanart.jpg?lastWrite=638325441884982115", + "remoteUrl": "https://image.tmdb.org/t/p/original/rWINrT5OvunYQYjM9He2J2fEXws.jpg" + } + ], + "website": "http://www.youngadultmovie.com/", + "year": 2011, + "hasFile": true, + "youTubeTrailerId": "okfAW8OztkI", + "studio": "Indian Paintbrush", + "path": "/data/Young Adult (2011)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Young Adult (2011)", + "runtime": 94, + "cleanTitle": "youngadult", + "imdbId": "tt1625346", + "tmdbId": 57157, + "titleSlug": "57157", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 86384, + "value": 6.3, + "type": "user" + }, + "tmdb": { + "votes": 1135, + "value": 5.796, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 71, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 80, + "type": "user" + } + }, + "movieFile": { + "movieId": 81, + "relativePath": "Young Adult (2011) Bluray-1080p.mkv", + "path": "/data/Young Adult (2011)/Young Adult (2011) Bluray-1080p.mkv", + "size": 2632881323, + "dateAdded": "2023-10-16T06:51:16Z", + "sceneName": "newseros.com.HD.castellano.eng[34/35] - \"young adult 2011 BDrip 1080p", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "ger/eng/spa", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:33:39", + "scanType": "Progressive", + "subtitles": "ger/spa" + }, + "originalFilePath": "newseros.com.HD.castellano.eng[34+35] - young adult 2011 BDrip 1080p/young adult 2011 BDrip 1080p.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 4, + "name": "German" + }, + { + "id": 1, + "name": "English" + }, + { + "id": 3, + "name": "Spanish" + } + ], + "edition": "", + "id": 142 + }, + "popularity": 12.308, + "id": 81 + }, + { + "title": "A Most Violent Year", + "originalTitle": "A Most Violent Year", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "O Ano Mais Violento", + "id": 830 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "L'année de toutes les violences", + "id": 831 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "Най-бруталната година", + "id": 832 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "Žiaurūs 1981-ųjų metai", + "id": 833 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "Patys žiauriausi metai", + "id": 834 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "모스트 바이어런트", + "id": 835 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "Most Violent Year, A", + "id": 836 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 122, + "title": "El año más violento", + "id": 1408 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "most violent year", + "sizeOnDisk": 2413176706, + "status": "released", + "overview": "A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.", + "inCinemas": "2014-12-31T00:00:00Z", + "physicalRelease": "2015-04-07T00:00:00Z", + "digitalRelease": "2017-01-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/82/poster.jpg?lastWrite=638325923146114863", + "remoteUrl": "https://image.tmdb.org/t/p/original/861WY0triAjO0A6VWMhrZ6s7VFG.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/82/fanart.jpg?lastWrite=638325441885442138", + "remoteUrl": "https://image.tmdb.org/t/p/original/l1JXogJ2q3EAhGUxrnLGb7VyKQJ.jpg" + } + ], + "website": "http://amostviolentyear.com/", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "ySWXwXlXlQU", + "studio": "Participant", + "path": "/data/A Most Violent Year (2014)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/A Most Violent Year (2014)", + "runtime": 124, + "cleanTitle": "amostviolentyear", + "imdbId": "tt2937898", + "tmdbId": 241239, + "titleSlug": "241239", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 76036, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 1308, + "value": 6.596, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 79, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 90, + "type": "user" + } + }, + "movieFile": { + "movieId": 82, + "relativePath": "A Most Violent Year (2014) Bluray-1080p Proper.mkv", + "path": "/data/A Most Violent Year (2014)/A Most Violent Year (2014) Bluray-1080p Proper.mkv", + "size": 2413176706, + "dateAdded": "2023-10-15T17:19:12Z", + "sceneName": "A.Most.Violent.Year.2014.REPACK.1080p.BluRay.DTSx264-iFT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "2:04:56", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "A.Most.Violent.Year.2014.REPACK.1080p.BluRay.DTSx264-iFT/A.Most.Violent.Year.2014.REPACK.1080p.BluRay.DTSx264-iFT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "iFT", + "edition": "", + "id": 130 + }, + "popularity": 19.53, + "id": 82 + }, + { + "title": "The Drop", + "originalTitle": "The Drop", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 123, + "title": "黑钱酒吧", + "id": 845 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 123, + "title": "Animal Rescue", + "id": 846 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 123, + "title": "KP15: Purvini pinigai", + "id": 847 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 123, + "title": "A Entrega", + "id": 848 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 123, + "title": "La entrega", + "id": 1404 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "drop", + "sizeOnDisk": 2202371707, + "status": "released", + "overview": "Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.", + "inCinemas": "2014-09-12T00:00:00Z", + "physicalRelease": "2015-02-05T00:00:00Z", + "digitalRelease": "2021-02-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/83/poster.jpg?lastWrite=638330244453957807", + "remoteUrl": "https://image.tmdb.org/t/p/original/ehFOkPH0tRdbyghxGDR418Mgn9V.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/83/fanart.jpg?lastWrite=638325441887472244", + "remoteUrl": "https://image.tmdb.org/t/p/original/jDNXIth0TlZcz3sBMJdMx7JjIZf.jpg" + } + ], + "website": "", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "RJZtoAKDf_8", + "studio": "Fox Searchlight Pictures", + "path": "/data/The Drop (2014)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Drop (2014)", + "runtime": 106, + "cleanTitle": "thedrop", + "imdbId": "tt1600196", + "tmdbId": 154400, + "titleSlug": "154400", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 159021, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 1993, + "value": 6.769, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 69, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 89, + "type": "user" + } + }, + "movieFile": { + "movieId": 83, + "relativePath": "The Drop (2014) Bluray-1080p.mkv", + "path": "/data/The Drop (2014)/The Drop (2014) Bluray-1080p.mkv", + "size": 2202371707, + "dateAdded": "2023-10-15T17:09:38Z", + "sceneName": "The.Drop.2014.1080p.BluRay.DTS.x264-HDMaNiAcS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:46:44", + "scanType": "Progressive", + "subtitles": "gre/eng/eng/gre/ara/bul/fre/spa/dut/por/jpn/chi" + }, + "originalFilePath": "The.Drop.2014.1080p.BluRay.DTS.x264-HDMaNiAcS/The.Drop.2014.1080p.BluRay.DTS.x264-HDMaNiAcS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "HDMaNiAcS", + "edition": "", + "id": 128 + }, + "popularity": 20.33, + "id": 83 + }, + { + "title": "The Hunger Games: The Ballad of Songbirds & Snakes", + "originalTitle": "The Hunger Games: The Ballad of Songbirds & Snakes", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "The Ballad of Songbirds and Snakes", + "id": 837 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Jogos Vorazes: A Cantiga dos Pássaros e das Serpentes", + "id": 838 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Hunger Games: La ballata dell'usignolo e del serpente", + "id": 839 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Đấu Trường Sinh Tử: Khúc Ca Của Chim Ca & Rắn Độc", + "id": 840 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Balada o ptácích a hadech", + "id": 841 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "The Hunger Games: A Balada dos Pássaros e das Serpentes", + "id": 842 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "ハンガー・ゲーム 0", + "id": 843 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Igrzyska śmierci: Ballada ptaków i węży", + "id": 1215 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 124, + "title": "Los Juegos del Hambre: Balada de Pájaros Cantores y Serpientes", + "id": 1405 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "hunger games ballad songbirds snakes", + "sizeOnDisk": 0, + "status": "announced", + "overview": "64 years before he becomes the tyrannical president of Panem, Coriolanus Snow sees a chance for a change in fortunes when he mentors Lucy Gray Baird, the female tribute from District 12.", + "inCinemas": "2023-11-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/84/poster.jpg?lastWrite=638325441886512194", + "remoteUrl": "https://image.tmdb.org/t/p/original/mBaXZ95R2OxueZhvQbcEWy2DqyO.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/84/fanart.jpg?lastWrite=638333701820188572", + "remoteUrl": "https://image.tmdb.org/t/p/original/hon92J1oqdrTwcGHXG64G2bXqrJ.jpg" + } + ], + "website": "https://hungergames.movie", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "NxW_X4kzeus", + "studio": "Lionsgate", + "path": "/data/The Hunger Games The Ballad of Songbirds & Snakes (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/The Hunger Games The Ballad of Songbirds & Snakes (2023)", + "runtime": 165, + "cleanTitle": "thehungergamesballadsongbirdssnakes", + "imdbId": "tt10545296", + "tmdbId": 695721, + "titleSlug": "695721", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "popularity": 52.187, + "id": 84 + }, + { + "title": "Rashomon", + "originalTitle": "羅生門", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Рашомон", + "id": 849 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Demonenes port", + "id": 850 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Lã Sinh Môn", + "id": 851 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Às Portas do Inferno", + "id": 852 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "El bosque ensangrentado", + "id": 853 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "A vihar kapujában", + "id": 854 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Sari Irkin Sehveti", + "id": 855 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Расьомон", + "id": 856 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "라쇼몽", + "id": 857 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Rašomonas", + "id": 858 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Ρασομόν", + "id": 859 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "나생문", + "id": 860 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Rashomon - demonernas port", + "id": 861 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 125, + "title": "Rashomon - paholaisen temppeli", + "id": 862 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "rashomon", + "sizeOnDisk": 836319693, + "status": "released", + "overview": "Brimming with action while incisively examining the nature of truth, \"Rashomon\" is perhaps the finest film ever to investigate the philosophy of justice. Through an ingenious use of camera and flashbacks, Kurosawa reveals the complexities of human nature as four people recount different versions of the story of a man's murder and the rape of his wife.", + "inCinemas": "1950-08-26T00:00:00Z", + "physicalRelease": "2001-10-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/85/poster.jpg?lastWrite=638325441887902266", + "remoteUrl": "https://image.tmdb.org/t/p/original/vL7Xw04nFMHwnvXRFCmYYAzMUvY.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/85/fanart.jpg?lastWrite=638325441888062274", + "remoteUrl": "https://image.tmdb.org/t/p/original/zyO6j74DKMWfp5snWg6Hwo0T3Mz.jpg" + } + ], + "website": "", + "year": 1950, + "hasFile": true, + "youTubeTrailerId": "L2E_DfExUmU", + "studio": "Daiei Film", + "path": "/data/Rashomon (1950)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Rashomon (1950)", + "runtime": 88, + "cleanTitle": "rashomon", + "imdbId": "tt0042876", + "tmdbId": 548, + "titleSlug": "548", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Crime", + "Drama", + "Mystery" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 176002, + "value": 8.2, + "type": "user" + }, + "tmdb": { + "votes": 1970, + "value": 8.1, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 98, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 98, + "type": "user" + } + }, + "movieFile": { + "movieId": 85, + "relativePath": "Rashomon (1950) Bluray-1080p.mkv", + "path": "/data/Rashomon (1950)/Rashomon (1950) Bluray-1080p.mkv", + "size": 836319693, + "dateAdded": "2023-10-15T21:54:51Z", + "sceneName": "Rashomon.1950.1080p.BluRay.FLAC.x264-EA", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 1, + "audioCodec": "FLAC", + "audioLanguages": "jpn/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1480x1080", + "runTime": "1:28:37", + "scanType": "Progressive", + "subtitles": "eng/eng" + }, + "originalFilePath": "Rashomon.1950.1080p.BluRay.FLAC.x264-EA/Rashomon.1950.1080p.BluRay.FLAC.x264-EA.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "EA", + "edition": "", + "id": 136 + }, + "popularity": 24.12, + "id": 85 + }, + { + "title": "The Physician", + "originalTitle": "The Physician", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 126, + "title": "El sanador", + "id": 863 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 126, + "title": "The Physician - Medicus", + "id": 864 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "physician", + "sizeOnDisk": 3039331125, + "status": "released", + "overview": "England, 1021. Rob Cole, a boy born in a miserable mining town, swears to become a physician and vanquish disease and death. His harsh path of many years, a quest for knowledge besieged by countless challenges and sacrifices, leads him to the remote Isfahan, in Persia, where he meets Ibn Sina, the greatest healer of his time.", + "inCinemas": "2013-12-25T00:00:00Z", + "physicalRelease": "2014-05-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/86/poster.jpg?lastWrite=638325441888142278", + "remoteUrl": "https://image.tmdb.org/t/p/original/6koFQEuyZKNYcBMSVEHYtAeIpUE.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/86/fanart.jpg?lastWrite=638325441888322288", + "remoteUrl": "https://image.tmdb.org/t/p/original/1zwJhVKaTc7yygHyIRIng3ZkMgc.jpg" + } + ], + "website": "", + "year": 2013, + "hasFile": true, + "youTubeTrailerId": "IOj-Pn5WJkw", + "studio": "Pixomondo", + "path": "/data/The Physician (2013)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Physician (2013)", + "runtime": 155, + "cleanTitle": "thephysician", + "imdbId": "tt2101473", + "tmdbId": 169881, + "titleSlug": "169881", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Adventure", + "Drama", + "History" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 41081, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 989, + "value": 7.33, + "type": "user" + } + }, + "movieFile": { + "movieId": 86, + "relativePath": "The Physician (2013) Bluray-1080p.mp4", + "path": "/data/The Physician (2013)/The Physician (2013) Bluray-1080p.mp4", + "size": 3039331125, + "dateAdded": "2023-10-14T15:44:40Z", + "sceneName": "The.Physician.2013.EXTENDED.1080p.BluRay.x265", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 224000, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 2000055, + "videoCodec": "x265", + "videoFps": 25, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x816", + "runTime": "3:01:35", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "The.Physician.2013.EXTENDED.1080p.BluRay.x265/The.Physician.2013.EXTENDED.1080p.BluRay.x265.mp4", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "EXTENDED", + "id": 100 + }, + "popularity": 16.096, + "id": 86 + }, + { + "title": "The Signal", + "originalTitle": "The Signal", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "诡·异·讯", + "id": 873 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "La señal", + "id": 874 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "O Sinal", + "id": 875 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "La Señal 2014", + "id": 876 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "Le signal", + "id": 877 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "Señal Enigmatica", + "id": 878 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 127, + "title": "Сигнал", + "id": 879 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "signal", + "sizeOnDisk": 3098939992, + "status": "released", + "overview": "On a road trip, Nic and two friends are drawn to an isolated area by a computer genius. When everything suddenly goes dark, Nic regains consciousness – only to find himself in a waking nightmare.", + "inCinemas": "2014-03-15T00:00:00Z", + "physicalRelease": "2015-02-04T00:00:00Z", + "digitalRelease": "2015-01-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/87/poster.jpg?lastWrite=638325441891212437", + "remoteUrl": "https://image.tmdb.org/t/p/original/opZNdMgVBl3kKpKlW58PXnLZKFV.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/87/fanart.jpg?lastWrite=638325441891342444", + "remoteUrl": "https://image.tmdb.org/t/p/original/oxZh9qhkxfOczKmTang0j9a06Bx.jpg" + } + ], + "website": "http://focusfeatures.com/the_signal/", + "year": 2014, + "hasFile": true, + "youTubeTrailerId": "uehQEldYkTs", + "studio": "Signal Film Group", + "path": "/data/The Signal (2014)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Signal (2014)", + "runtime": 97, + "cleanTitle": "thesignal", + "imdbId": "tt2910814", + "tmdbId": 242095, + "titleSlug": "242095", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Thriller", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 68100, + "value": 6, + "type": "user" + }, + "tmdb": { + "votes": 1540, + "value": 5.977, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 54, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 60, + "type": "user" + } + }, + "movieFile": { + "movieId": 87, + "relativePath": "The Signal (2014) Bluray-1080p.mkv", + "path": "/data/The Signal (2014)/The Signal (2014) Bluray-1080p.mkv", + "size": 3098939992, + "dateAdded": "2023-10-15T17:23:13Z", + "sceneName": "the.signal.2014.1080p.bluray.dts-hd.x264-barc0de", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:37:11", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "the.signal.2014.1080p.bluray.dts-hd.x264-barc0de/the.signal.2014.1080p.bluray.dts-hd.x264-barc0de.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "barc0de", + "edition": "", + "id": 131 + }, + "popularity": 13.618, + "id": 87 + }, + { + "title": "Misconduct", + "originalTitle": "Misconduct", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Conspiracy - La cospirazione", + "id": 865 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Beyond Deceit", + "id": 866 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Mala conducta", + "id": 867 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Mensonges", + "id": 868 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "미스컨덕트", + "id": 869 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Paihnidi horis kanones", + "id": 870 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Paixnidi xoris kanones", + "id": 871 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 128, + "title": "Ruf der Macht - Im Sumpf der Korruption", + "id": 872 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "misconduct", + "sizeOnDisk": 3629954869, + "status": "released", + "overview": "An ambitious lawyer finds himself caught in a power struggle between a corrupt pharmaceutical executive and his firm’s senior partner. When the case takes a deadly turn, he must race to uncover the truth before he loses everything.", + "inCinemas": "2016-03-30T00:00:00Z", + "physicalRelease": "2016-04-19T00:00:00Z", + "digitalRelease": "2016-02-05T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/88/poster.jpg?lastWrite=638325441890762414", + "remoteUrl": "https://image.tmdb.org/t/p/original/A82Kf9AoMaesgxntOCOyVfRgdYH.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/88/fanart.jpg?lastWrite=638325441890962424", + "remoteUrl": "https://image.tmdb.org/t/p/original/5knrDzDDQQ4vIk4IXFUBcR2dOYU.jpg" + } + ], + "website": "", + "year": 2016, + "hasFile": true, + "youTubeTrailerId": "9nEHwVFcDXs", + "studio": "Lionsgate", + "path": "/data/Misconduct (2016)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Misconduct (2016)", + "runtime": 106, + "cleanTitle": "misconduct", + "imdbId": "tt3658772", + "tmdbId": 373314, + "titleSlug": "373314", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Thriller", + "Drama", + "Mystery" + ], + "tags": [], + "added": "2023-10-10T14:14:42Z", + "ratings": { + "imdb": { + "votes": 17423, + "value": 5.3, + "type": "user" + }, + "tmdb": { + "votes": 523, + "value": 5.647, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 24, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 7, + "type": "user" + } + }, + "movieFile": { + "movieId": 88, + "relativePath": "Misconduct (2016) Bluray-1080p.mkv", + "path": "/data/Misconduct (2016)/Misconduct (2016) Bluray-1080p.mkv", + "size": 3629954869, + "dateAdded": "2023-10-15T17:39:16Z", + "sceneName": "Misconduct.2016.1080p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x802", + "runTime": "1:45:54", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Misconduct.2016.1080p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD/Misconduct.2016.1080p.BluRay.DTS-HD.MA.5.1.x264-FuzerHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FuzerHD", + "edition": "", + "id": 133 + }, + "popularity": 10.197, + "id": 88 + }, + { + "title": "Ghost in the Shell 2.0", + "originalTitle": "GHOST IN THE SHELL/攻殻機動隊2.0", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "O Fantasma do Futuro 2", + "id": 887 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "GHOST IN THE SHELL/攻殻機動隊2.0", + "id": 888 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Призрак в доспехах 2.0", + "id": 889 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Ghost In The Sell 2.0", + "id": 890 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "GHOST IN THE SHELL (2008)", + "id": 891 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Ghost in the Shell Movie 2.0", + "id": 892 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Привид у броні 2.0", + "id": 893 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Дух у латах 2.0", + "id": 894 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Привид в латах 2.0", + "id": 895 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Привид у латах 2.0", + "id": 896 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Дух в оболонці 2.0", + "id": 897 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 132, + "title": "Дух в обладунку 2.0", + "id": 898 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "ghost in shell 2 0", + "sizeOnDisk": 1565506192, + "status": "released", + "overview": "In the year 2029, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop a highly-wanted hacker known as 'The Puppetmaster'. Ghost in the Shell 2.0 is a reproduced version of its original 1995 counterpart. Among a numerous enhancements, for the film's 2.0 release, were a number of scenes were overhauled with 3D animation, visual improvements, and soundtrack rerecorded in 6.1 surround sound.", + "inCinemas": "2008-07-12T00:00:00Z", + "physicalRelease": "2012-07-04T00:00:00Z", + "digitalRelease": "2017-09-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/89/poster.jpg?lastWrite=638325657777158082", + "remoteUrl": "https://image.tmdb.org/t/p/original/4Vzlmvb9EyTnr5kN8mFVCMs8f3I.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/89/fanart.jpg?lastWrite=638325657777348092", + "remoteUrl": "https://image.tmdb.org/t/p/original/f7EQtjydqW0F76fUpBvxqxKskjd.jpg" + } + ], + "website": "", + "year": 2008, + "hasFile": true, + "youTubeTrailerId": "ZAK2PVKio0g", + "studio": "Production I.G", + "path": "/data/Ghost in the Shell 2.0 (2008)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Ghost in the Shell 2.0 (2008)", + "runtime": 85, + "cleanTitle": "ghostinshell20", + "imdbId": "tt1260502", + "tmdbId": 14092, + "titleSlug": "14092", + "rootFolderPath": "/data/", + "genres": [ + "Action", + "Animation", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 15003, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 363, + "value": 7.4, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 100, + "type": "user" + } + }, + "movieFile": { + "movieId": 89, + "relativePath": "Ghost in the Shell 2.0 (2008) Bluray-1080p.mkv", + "path": "/data/Ghost in the Shell 2.0 (2008)/Ghost in the Shell 2.0 (2008) Bluray-1080p.mkv", + "size": 1565506192, + "dateAdded": "2023-10-10T21:07:54Z", + "sceneName": "Ghost.In.The.Shell.2.0.2008.1080p.BluRay.x264-MOOVEE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 6.1, + "audioCodec": "DTS-ES", + "audioLanguages": "jpn/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:23:07", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Ghost.In.The.Shell.2.0.2008.1080p.BluRay.x264-MOOVEE/Ghost.In.The.Shell.2.0.2008.1080p.BluRay.x264-MOOVEE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "MOOVEE", + "edition": "", + "id": 72 + }, + "popularity": 15.208, + "id": 89 + }, + { + "title": "Ghost in the Shell 2: Innocence", + "originalTitle": "イノセンス", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Ghost In the Shell 2", + "id": 899 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Inosensu: Kôkaku kidôtai", + "id": 900 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Ghost in the Shell II: Innocence", + "id": 901 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Ghost in the Shell II", + "id": 902 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Призрак в доспехах2: невинность", + "id": 903 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "攻殼機動隊2", + "id": 904 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "O Fantasma do Futuro 2: A Inocência", + "id": 905 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Kôkaku kidôtai 2", + "id": 906 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Mobile Armored Riot Police: Innocence", + "id": 907 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Kôkaku Kidôtai 2: Inosensu", + "id": 908 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "攻殻機動隊 イノセンス", + "id": 909 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Ghost in the Shell: Innocence", + "id": 910 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "攻壳机动队剧场版2 无罪", + "id": 911 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Дух в оболонці II: Невинність", + "id": 912 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Дух у латах 2: Невинність", + "id": 913 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид у броні 2: Невинність", + "id": 914 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Невинність", + "id": 915 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид у латах 2: Невинність", + "id": 916 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид в латах 2: Невинність", + "id": 917 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид у броні II", + "id": 918 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Дух в оболонці II", + "id": 919 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид у латах II", + "id": 920 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Привид в латах II", + "id": 921 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Дух у латах II", + "id": 922 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "GHOST IN THE SHELL 2 イノセンス", + "id": 923 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "イノセンス:2004", + "id": 924 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 133, + "title": "Innocence", + "id": 925 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "ghost in shell 2 innocence", + "sizeOnDisk": 8212507583, + "status": "released", + "overview": "Cyborg detective Batou is assigned to investigate a series of murders committed by gynoids—doll-like cyborgs, which all malfunctioned, killed, then self-destructed afterwards. The brains of the gynoids initialize in order to protect their manufacturer's software, but in one gynoid, which Batou himself neutralized, one file remains: a voice speaking the phrase \"Help me.\"", + "inCinemas": "2004-03-06T00:00:00Z", + "physicalRelease": "2006-04-17T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/90/poster.jpg?lastWrite=638325657805979647", + "remoteUrl": "https://image.tmdb.org/t/p/original/1ZJRbLDVr90KLtKdmTT4WZhT26E.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/90/fanart.jpg?lastWrite=638337158567880456", + "remoteUrl": "https://image.tmdb.org/t/p/original/8Cbzx17QdJ6xBx2uDkdlpWsemGg.jpg" + } + ], + "website": "http://www.production-ig.com/contents/works/02_/000002.html", + "year": 2004, + "hasFile": true, + "youTubeTrailerId": "E3fiFEAe8AQ", + "studio": "Bandai Visual", + "path": "/data/Ghost in the Shell 2 Innocence (2004)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Ghost in the Shell 2 Innocence (2004)", + "runtime": 100, + "cleanTitle": "ghostinshell2innocence", + "imdbId": "tt0347246", + "tmdbId": 12140, + "titleSlug": "12140", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Animation", + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 39730, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 766, + "value": 7.3, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 66, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 65, + "type": "user" + } + }, + "movieFile": { + "movieId": 90, + "relativePath": "Ghost in the Shell 2 Innocence (2004) Remux-1080p.mkv", + "path": "/data/Ghost in the Shell 2 Innocence (2004)/Ghost in the Shell 2 Innocence (2004) Remux-1080p.mkv", + "size": 8212507583, + "dateAdded": "2023-10-10T21:08:29Z", + "sceneName": "Ghost.in.the.Shell.2.Innocence.2004.1080p.Blu-Ray.REMUX.DTS-HD.MA.Multi-Audio", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/jpn/jpn/spa/spa/cat/jpn", + "audioStreamCount": 8, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:39:55", + "scanType": "Progressive", + "subtitles": "eng/spa/eng/spa" + }, + "originalFilePath": "Ghost.in.the.Shell.2.Innocence.2004.1080p.Blu-Ray.REMUX.DTS-HD.MA.Multi-Audio/Ghost.in.the.Shell.2.Innocence.2004.1080p.Blu-Ray.REMUX.DTS-HD.MA.Multi-Audio.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 8, + "name": "Japanese" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 38, + "name": "Catalan" + } + ], + "releaseGroup": "Audio", + "edition": "", + "id": 73 + }, + "collection": { + "title": "Ghost in the Shell Collection", + "tmdbId": 23026, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 14.712, + "id": 90 + }, + { + "title": "Asteroid City", + "originalTitle": "Asteroid City", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "Thành Phố Sao Chổi", + "id": 926 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "Asteroidų miestas", + "id": 927 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "星城Online", + "id": 928 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "小行星都市", + "id": 929 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "آستروید سیتی", + "id": 930 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "Cidade do Asteroide", + "id": 1193 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 134, + "title": "Asteroid Şəhəri", + "id": 1440 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "asteroid city", + "sizeOnDisk": 3809534336, + "status": "released", + "overview": "In an American desert town circa 1955, the itinerary of a Junior Stargazer/Space Cadet convention is spectacularly disrupted by world-changing events.", + "inCinemas": "2023-06-08T00:00:00Z", + "physicalRelease": "2023-08-15T00:00:00Z", + "digitalRelease": "2023-07-11T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/91/poster.jpg?lastWrite=638327651579592444", + "remoteUrl": "https://image.tmdb.org/t/p/original/qdq40gRS8xKnpFt5V75t6lUHgpx.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/91/fanart.jpg?lastWrite=638325657778858174", + "remoteUrl": "https://image.tmdb.org/t/p/original/gcbZ2ZdVzfBsGmfjTy8g7UaZS16.jpg" + } + ], + "website": "https://www.focusfeatures.com/asteroid-city", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "9FXCSXuGTF4", + "studio": "American Empirical Pictures", + "path": "/data/Asteroid City (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Asteroid City (2023)", + "runtime": 105, + "cleanTitle": "asteroidcity", + "imdbId": "tt14230388", + "tmdbId": 747188, + "titleSlug": "747188", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 80754, + "value": 6.6, + "type": "user" + }, + "tmdb": { + "votes": 1050, + "value": 6.624, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 74, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 91, + "relativePath": "Asteroid City (2023) Remux-1080p.mkv", + "path": "/data/Asteroid City (2023)/Asteroid City (2023) Remux-1080p.mkv", + "size": 3809534336, + "dateAdded": "2023-10-10T21:05:38Z", + "sceneName": "Asteroid.City.2023.BluRay.1080p.REMUX.AVC.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:44:59", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "Asteroid.City.2023.BluRay.1080p.REMUX.AVC.DTS-HD.MA.7.1-LEGi0N/Asteroid.City.2023.BluRay.1080p.REMUX.AVC.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 71 + }, + "popularity": 71.316, + "id": 91 + }, + { + "title": "Mission: Impossible - Dead Reckoning Part One", + "originalTitle": "Mission: Impossible - Dead Reckoning Part One", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission: Impossible VII", + "id": 943 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission: Impossible 7", + "id": 944 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Missão: Impossível 7 – Acerto De Contas Parte 1", + "id": 945 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Misión: Imposible - Sentencia Mortal Parte 1", + "id": 946 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission: Impossible - Dead Reckoning Part 1", + "id": 947 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "미션 임파서블 7", + "id": 948 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "ミッション:インポッシブル デッドレコニング PART ONE", + "id": 949 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "碟中谍7", + "id": 950 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "不可能的任務7", + "id": 951 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Missão Impossível - Ajuste de Contas: Parte Um", + "id": 952 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "มิชชั่น:อิมพอสซิเบิ้ล 7", + "id": 953 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Nhiệm Vụ: Bất Khả Thi 7 - Nghiệp Báo Phần 1", + "id": 954 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "미션 임파서블: 데드 레코닝 파트 원", + "id": 955 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "미션 임파서블: 데드 레코닝 파트 1", + "id": 956 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission: Impossible – Dead Reckoning Teil Eins", + "id": 957 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Neiespējamā misija: Atmaksa. Pirmā daļa", + "id": 958 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission Impossible - Dead Reckoning Teil 1", + "id": 960 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission Impossible 7 - Dead Reckoning Part One", + "id": 1192 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission Impossible 7 - Dead Reckoning Teil Eins", + "id": 1194 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission Impossible - Dead Reckoning Partie 1", + "id": 1205 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Missão Impossível - Acerto de Contas - Parte 1 (2023)", + "id": 1279 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "משימה בלתי אפשרית 7: נקמת מוות - חלק ראשון", + "id": 1383 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission : Impossible – Bilan Mortel Première Partie", + "id": 1384 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "職業特工隊:死亡清算 上集", + "id": 1393 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 135, + "title": "Mission Impossible 7 - Dead Reckoning Partie 1", + "id": 1407 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "mission impossible dead reckoning part one", + "sizeOnDisk": 3085560519, + "status": "released", + "overview": "Ethan Hunt and his IMF team embark on their most dangerous mission yet: To track down a terrifying new weapon that threatens all of humanity before it falls into the wrong hands. With control of the future and the world's fate at stake and dark forces from Ethan's past closing in, a deadly race around the globe begins. Confronted by a mysterious, all-powerful enemy, Ethan must consider that nothing can matter more than his mission—not even the lives of those he cares about most.", + "inCinemas": "2023-07-08T00:00:00Z", + "physicalRelease": "2023-10-31T00:00:00Z", + "digitalRelease": "2023-10-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/92/poster.jpg?lastWrite=638325657819760395", + "remoteUrl": "https://image.tmdb.org/t/p/original/NNxYkU70HPurnNCSiCjYAmacwm.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/92/fanart.jpg?lastWrite=638328515966445370", + "remoteUrl": "https://image.tmdb.org/t/p/original/628Dep6AxEtDxjZoGP78TsOxYbK.jpg" + } + ], + "website": "https://www.missionimpossible.com", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "HurjfO_TDlQ", + "studio": "Paramount", + "path": "/data/Mission Impossible - Dead Reckoning Part One (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Mission Impossible - Dead Reckoning Part One (2023)", + "runtime": 164, + "cleanTitle": "missionimpossibledeadreckoningpartone", + "imdbId": "tt9603212", + "tmdbId": 575264, + "titleSlug": "575264", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 163854, + "value": 7.9, + "type": "user" + }, + "tmdb": { + "votes": 1845, + "value": 7.719, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 96, + "type": "user" + } + }, + "movieFile": { + "movieId": 92, + "relativePath": "Mission Impossible - Dead Reckoning Part One (2023) WEBDL-1080p.mkv", + "path": "/data/Mission Impossible - Dead Reckoning Part One (2023)/Mission Impossible - Dead Reckoning Part One (2023) WEBDL-1080p.mkv", + "size": 3085560519, + "dateAdded": "2023-10-10T20:25:27Z", + "sceneName": "Mission.Impossible.Dead.Reckoning.Part.One.2023.MULTI.1080p.WEB.H264-LOST", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1916x800", + "runTime": "2:43:26", + "scanType": "Progressive", + "subtitles": "fre/fre" + }, + "originalFilePath": "Mission.Impossible.Dead.Reckoning.Part.One.2023.MULTI.1080p.WEB.H264-LOST/mission.impossible.dead.reckoning.part.one.2023.multi.1080p.web.h264-lost.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LOST", + "edition": "", + "id": 70 + }, + "collection": { + "title": "Mission: Impossible Collection", + "tmdbId": 87359, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 1219.756, + "id": 92 + }, + { + "title": "Stephen Curry: Underrated", + "originalTitle": "Stephen Curry: Underrated", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 136, + "title": "斯蒂芬-库里:被低估", + "id": 932 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "stephen curry underrated", + "sizeOnDisk": 1435122382, + "status": "released", + "overview": "The remarkable coming-of-age story of Stephen Curry—one of the most influential, dynamic, and unexpected players in basketball history—and his rise from an undersized college player to a four-time NBA champion.", + "inCinemas": "2023-07-21T00:00:00Z", + "digitalRelease": "2023-07-20T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/93/poster.jpg?lastWrite=638325657781468316", + "remoteUrl": "https://image.tmdb.org/t/p/original/mFpnGiDrY9Brz4FQLKBKX1uCbl.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/93/fanart.jpg?lastWrite=638325657781878338", + "remoteUrl": "https://image.tmdb.org/t/p/original/fy3WUGHWoTnxZKhWics6fSFL5i0.jpg" + } + ], + "website": "https://tv.apple.com/movie/umc.cmc.23v0wxaiwz60bjy1w4vg7npun", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "csMgsPbzs5o", + "studio": "Proximity Media", + "path": "/data/Stephen Curry Underrated (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Stephen Curry Underrated (2023)", + "runtime": 110, + "cleanTitle": "stephencurryunderrated", + "imdbId": "tt15210256", + "tmdbId": 860278, + "titleSlug": "860278", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 3136, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 56, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 69, + "type": "user" + } + }, + "movieFile": { + "movieId": 93, + "relativePath": "Stephen Curry Underrated (2023) WEBDL-1080p.mkv", + "path": "/data/Stephen Curry Underrated (2023)/Stephen Curry Underrated (2023) WEBDL-1080p.mkv", + "size": 1435122382, + "dateAdded": "2023-10-10T20:20:25Z", + "sceneName": "Stephen.Curry.Underrated.2023.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:49:24", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/ara/bul/chi/chi/cze/dan/ger/gre/spa/spa/est/fin/fre/fre/heb/hin/hun/ind/ita/jpn/kor/lit/lav/may/dut/nor/pol/por/por/rus/slo/slv/swe/tam/tel/tha/tur/ukr/vie/chi" + }, + "originalFilePath": "Stephen.Curry.Underrated.2023.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Stephen.Curry.Underrated.2023.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FLUX", + "edition": "", + "id": 69 + }, + "popularity": 28.319, + "id": 93 + }, + { + "title": "MK Ultra", + "originalTitle": "MK Ultra", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "mk ultra", + "sizeOnDisk": 988246200, + "status": "released", + "overview": "Set during the true and unconscionable Central Intelligence Agency MK ULTRA drug experimentations in the early 1960s. The journey of Ford Strauss, a brilliant psychiatrist, whose moral and scientific boundaries are pushed to the limit as he is recruited to run a subsect of the program in a rural Mississippi Mental Hospital.", + "inCinemas": "2022-10-07T00:00:00Z", + "physicalRelease": "2023-06-12T00:00:00Z", + "digitalRelease": "2023-04-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/94/poster.jpg?lastWrite=638325657800299338", + "remoteUrl": "https://image.tmdb.org/t/p/original/x3G3CCvLYy4EoLuhuUB9YlReFIN.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/94/fanart.jpg?lastWrite=638325657800429345", + "remoteUrl": "https://image.tmdb.org/t/p/original/cPuDOhyoiux4G3dTbdJxgJqPtj0.jpg" + } + ], + "website": "", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "zhg4zpU4m48", + "studio": "", + "path": "/data/MK Ultra (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/MK Ultra (2022)", + "runtime": 97, + "cleanTitle": "mkultra", + "imdbId": "tt7147158", + "tmdbId": 1018247, + "titleSlug": "1018247", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Thriller" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 7959, + "value": 5.1, + "type": "user" + }, + "tmdb": { + "votes": 17, + "value": 6.118, + "type": "user" + } + }, + "movieFile": { + "movieId": 94, + "relativePath": "MK Ultra (2022) WEBDL-1080p.mkv", + "path": "/data/MK Ultra (2022)/MK Ultra (2022) WEBDL-1080p.mkv", + "size": 988246200, + "dateAdded": "2023-10-10T21:43:09Z", + "sceneName": "MK.Ultra.2022.1080p.WEB.H264-KBOX", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1916x796", + "runTime": "1:37:21", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "MK.Ultra.2022.1080p.WEB.H264-KBOX/mk.ultra.2022.1080p.web.h264-kbox.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KBOX", + "edition": "", + "id": 76 + }, + "popularity": 7.215, + "id": 94 + }, + { + "title": "When We Were Kings", + "originalTitle": "When We Were Kings", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "Quando eravamo Re", + "id": 933 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "When we were Kings - Einst waren wir Könige", + "id": 934 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "Quando Éramos Reis", + "id": 935 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "Os Campeões do Boxe", + "id": 936 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "우리가 왕들이었을 때", + "id": 937 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "웬 위 워 킹스", + "id": 938 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 138, + "title": "When We Were Kings. Cuando éramos reyes", + "id": 1195 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "when we were kings", + "sizeOnDisk": 2415994495, + "status": "released", + "overview": "It's 1974. Muhammad Ali is 32 and thought by many to be past his prime. George Foreman is ten years younger and the heavyweight champion of the world. Promoter Don King wants to make a name for himself and offers both fighters five million dollars apiece to fight one another, and when they accept, King has only to come up with the money. He finds a willing backer in Mobutu Sese Suko, the dictator of Zaire, and the \"Rumble in the Jungle\" is set, including a musical festival featuring some of America's top black performers, like James Brown and B.B. King.", + "inCinemas": "1996-10-25T00:00:00Z", + "physicalRelease": "2009-04-09T00:00:00Z", + "digitalRelease": "2014-08-16T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/95/poster.jpg?lastWrite=638326787491704966", + "remoteUrl": "https://image.tmdb.org/t/p/original/lsQsehijQMcrQm78800ecp22lqb.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/95/fanart.jpg?lastWrite=638326787495985203", + "remoteUrl": "https://image.tmdb.org/t/p/original/sIoMnSa47LMsqMGPFAb8p8JAysZ.jpg" + } + ], + "website": "", + "year": 1996, + "hasFile": true, + "youTubeTrailerId": "uBauogNmRqY", + "studio": "PolyGram Filmed Entertainment", + "path": "/data/When We Were Kings (1996)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/When We Were Kings (1996)", + "runtime": 89, + "cleanTitle": "whenwewerekings", + "imdbId": "tt0118147", + "tmdbId": 10548, + "titleSlug": "10548", + "rootFolderPath": "/data/", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 18763, + "value": 8, + "type": "user" + }, + "tmdb": { + "votes": 200, + "value": 7.68, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 83, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 98, + "type": "user" + } + }, + "movieFile": { + "movieId": 95, + "relativePath": "When We Were Kings (1996) Remux-1080p.mkv", + "path": "/data/When We Were Kings (1996)/When We Were Kings (1996) Remux-1080p.mkv", + "size": 2415994495, + "dateAdded": "2023-10-10T21:39:06Z", + "sceneName": "When.We.Were.Kings.1996.Criterion.Collection.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.0.KRaLiMaRKo", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.0, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:27:25", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "When.We.Were.Kings.1996.Criterion.Collection.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.0.KRaLiMaRKo/When.We.Were.Kings.1996.Criterion.Collection.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.0.KRaLiMaRKo.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KRaLiMaRKo", + "edition": "", + "id": 74 + }, + "popularity": 10.032, + "id": 95 + }, + { + "title": "Spider-Man: Across the Spider-Verse", + "originalTitle": "Spider-Man: Across the Spider-Verse", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "스파이더맨: 뉴 유니버스 2", + "id": 980 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spider-Man: Into the Spider-Verse 2", + "id": 981 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spider-Man: A través de los Universos (Parte Uno)", + "id": 982 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spider-Man: Across the Spider-Verse (Part One)", + "id": 983 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "뉴스파 2", + "id": 984 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "スパイダーマン アクロス・ザ・スパイダーバース", + "id": 985 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "アクロス・ザ・スパイダーバース", + "id": 986 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spider-Man: Across the Universe", + "id": 987 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "ספיידר-מן 2: ברחבי מימדי העכביש", + "id": 988 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "스파이더맨: 어크로스 더 스파이더버스", + "id": 989 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "სპაიდერმენი: სამყაროთა შორის", + "id": 990 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Người Nhện 2: Du Hành Vũ Trụ Nhện", + "id": 991 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Человек-паук: Паутина вселенных", + "id": 992 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spajdermen: Putovanje kroz Spajder-svet", + "id": 993 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "ობობა-კაცი: ობობის სამყაროთა შორის", + "id": 994 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "სპაიდერმენი: ობობის სამყაროთა შორის", + "id": 995 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "Spider-Man : Seul contre tous", + "id": 996 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 139, + "title": "蜘蛛人:穿越新宇宙", + "id": 997 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "spider man across spider verse", + "sizeOnDisk": 6967810008, + "status": "released", + "overview": "After reuniting with Gwen Stacy, Brooklyn’s full-time, friendly neighborhood Spider-Man is catapulted across the Multiverse, where he encounters the Spider Society, a team of Spider-People charged with protecting the Multiverse’s very existence. But when the heroes clash on how to handle a new threat, Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.", + "inCinemas": "2023-05-31T00:00:00Z", + "physicalRelease": "2023-09-05T00:00:00Z", + "digitalRelease": "2023-08-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/96/poster.jpg?lastWrite=638325657859232538", + "remoteUrl": "https://image.tmdb.org/t/p/original/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/96/fanart.jpg?lastWrite=638325657862372708", + "remoteUrl": "https://image.tmdb.org/t/p/original/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg" + } + ], + "website": "https://www.acrossthespiderverse.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "yFrxzaBLDQM", + "studio": "Columbia Pictures", + "path": "/data/Spider-Man Across the Spider-Verse (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Spider-Man Across the Spider-Verse (2023)", + "runtime": 140, + "cleanTitle": "spidermanacrossspiderverse", + "imdbId": "tt9362722", + "tmdbId": 569094, + "titleSlug": "569094", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Animation", + "Action", + "Adventure" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 278362, + "value": 8.7, + "type": "user" + }, + "tmdb": { + "votes": 4632, + "value": 8.427, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 86, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 96, + "type": "user" + } + }, + "movieFile": { + "movieId": 96, + "relativePath": "Spider-Man Across the Spider-Verse (2023) Remux-1080p.mkv", + "path": "/data/Spider-Man Across the Spider-Verse (2023)/Spider-Man Across the Spider-Verse (2023) Remux-1080p.mkv", + "size": 6967810008, + "dateAdded": "2023-10-10T22:05:50Z", + "sceneName": "Spider-Man.Across.the.Spider-Verse.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:20:05", + "scanType": "Progressive", + "subtitles": "eng/eng/ara/bul/chi/chi/chi/cze/dan/dut/est/fin/fre/ger/gre/heb/hun/ind/ita/jpn/kor/lav/lit/may/nor/pol/por/por/rus/slo/slv/spa/spa/swe/tha/ukr/vie/eng/eng/dan/dut/fin/nor/spa/swe" + }, + "originalFilePath": "Spider-Man.Across.the.Spider-Verse.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR/Spider-Man.Across.the.Spider-Verse.2023.BluRay.1080p.TrueHD.Atmos.7.1.AVC.HYBRID.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 77 + }, + "collection": { + "title": "Spider-Man: Spider-Verse Collection", + "tmdbId": 573436, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 510.038, + "id": 96 + }, + { + "title": "The Banshees of Inisherin", + "originalTitle": "The Banshees of Inisherin", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 140, + "title": "Inisherini hinged", + "id": 939 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 140, + "title": "Inišerinas Banšī", + "id": 940 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 140, + "title": "伊尼舍林的女妖", + "id": 941 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 140, + "title": "Duchy Inisherin", + "id": 942 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 140, + "title": "Almas en pena de Inisherin", + "id": 1441 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "banshees inisherin", + "sizeOnDisk": 5267100709, + "status": "released", + "overview": "Two lifelong friends find themselves at an impasse when one abruptly ends their relationship, with alarming consequences for both of them.", + "inCinemas": "2022-10-21T00:00:00Z", + "physicalRelease": "2022-12-20T00:00:00Z", + "digitalRelease": "2022-12-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/97/poster.jpg?lastWrite=638325657817240258", + "remoteUrl": "https://image.tmdb.org/t/p/original/4yFG6cSPaCaPhyJ1vtGOtMD1lgh.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/97/fanart.jpg?lastWrite=638325657819140361", + "remoteUrl": "https://image.tmdb.org/t/p/original/1vXD5HXqkhvsXFHE7KmCPZGPR1e.jpg" + } + ], + "website": "https://searchlightpictures.com/films/the-banshees-of-inisherin", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "9-R9u2UD3FU", + "studio": "Searchlight Pictures", + "path": "/data/The Banshees of Inisherin (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Banshees of Inisherin (2022)", + "runtime": 114, + "cleanTitle": "thebansheesinisherin", + "imdbId": "tt11813216", + "tmdbId": 674324, + "titleSlug": "674324", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Comedy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 229589, + "value": 7.7, + "type": "user" + }, + "tmdb": { + "votes": 2132, + "value": 7.472, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 87, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 96, + "type": "user" + } + }, + "movieFile": { + "movieId": 97, + "relativePath": "The Banshees of Inisherin (2022) Remux-1080p.mkv", + "path": "/data/The Banshees of Inisherin (2022)/The Banshees of Inisherin (2022) Remux-1080p.mkv", + "size": 5267100709, + "dateAdded": "2023-10-11T03:38:28Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:53:55", + "scanType": "Progressive", + "subtitles": "eng/fra/spa" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 93 + }, + "popularity": 34.042, + "id": 97 + }, + { + "title": "Babylon", + "originalTitle": "Babylon", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 141, + "title": "बेबीलोन", + "id": 961 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 141, + "title": "ব্যাবিলন", + "id": 962 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 141, + "title": "Babil", + "id": 963 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 141, + "title": "巴比倫: 星聲追夢荷里活", + "id": 964 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 141, + "title": "Вавилон", + "id": 965 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "babylon", + "sizeOnDisk": 7974471711, + "status": "released", + "overview": "A tale of outsized ambition and outrageous excess, tracing the rise and fall of multiple characters in an era of unbridled decadence and depravity during Hollywood's transition from silent films and to sound films in the late 1920s.", + "inCinemas": "2022-12-22T00:00:00Z", + "physicalRelease": "2023-03-21T00:00:00Z", + "digitalRelease": "2023-01-31T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/98/poster.jpg?lastWrite=638325657822410539", + "remoteUrl": "https://image.tmdb.org/t/p/original/wjOHjWCUE0YzDiEzKv8AfqHj3ir.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/98/fanart.jpg?lastWrite=638325657823760612", + "remoteUrl": "https://image.tmdb.org/t/p/original/5fxTB08O7CW1hAcN2MWOKodp1h1.jpg" + } + ], + "website": "https://www.babylonmovie.com/", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "OumYv1aE1VI", + "studio": "Paramount", + "path": "/data/Babylon (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Babylon (2022)", + "runtime": 189, + "cleanTitle": "babylon", + "imdbId": "tt10640346", + "tmdbId": 615777, + "titleSlug": "615777", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Comedy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 148411, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 2294, + "value": 7.435, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 60, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 57, + "type": "user" + } + }, + "movieFile": { + "movieId": 98, + "relativePath": "Babylon (2022) Remux-1080p.mkv", + "path": "/data/Babylon (2022)/Babylon (2022) Remux-1080p.mkv", + "size": 7974471711, + "dateAdded": "2023-10-11T01:41:54Z", + "sceneName": "Babylon.2022.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-UnKn0wn", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "3:08:56", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/zho/dan/spa/spa/fra/fra/kor/zho/nor/por/por/fin/swe/tha" + }, + "originalFilePath": "Babylon.2022.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-UnKn0wn/Babylon.2022.1080p.BluRay.REMUX.AVC.TrueHD.7.1.Atmos-UnKn0wn.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "UnKn0wn", + "edition": "", + "id": 92 + }, + "popularity": 51.51, + "id": 98 + }, + { + "title": "Inside", + "originalTitle": "Inside", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 142, + "title": "Enfermé", + "id": 966 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 142, + "title": "인사이드", + "id": 967 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "inside", + "sizeOnDisk": 4046366057, + "status": "released", + "overview": "An art thief becomes trapped in a New York penthouse after his heist goes awry. Imprisoned with nothing but priceless works of art, he must use all his cunning and invention to survive.", + "inCinemas": "2023-03-09T00:00:00Z", + "digitalRelease": "2023-04-04T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/99/poster.jpg?lastWrite=638325657821150470", + "remoteUrl": "https://image.tmdb.org/t/p/original/dXsiWJWwGwYwOQ6DfYFt5pPBMwT.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/99/fanart.jpg?lastWrite=638325657821580494", + "remoteUrl": "https://image.tmdb.org/t/p/original/5deKXeVmu3G8821gV8DtKHmRd6r.jpg" + } + ], + "website": "https://www.focusfeatures.com/inside", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "DjODCllZj4w", + "studio": "A Private View", + "path": "/data/Inside (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Inside (2023)", + "runtime": 105, + "cleanTitle": "inside", + "imdbId": "tt14781036", + "tmdbId": 958196, + "titleSlug": "958196", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 13224, + "value": 5.5, + "type": "user" + }, + "tmdb": { + "votes": 203, + "value": 5.768, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 53, + "type": "user" + } + }, + "movieFile": { + "movieId": 99, + "relativePath": "Inside (2023) Remux-1080p.mkv", + "path": "/data/Inside (2023)/Inside (2023) Remux-1080p.mkv", + "size": 4046366057, + "dateAdded": "2023-10-10T21:41:05Z", + "sceneName": "Inside.2023.BluRay.REMUX.1080p.AVC.DTS-HD.MA5.1-HDS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:45:22", + "scanType": "Progressive", + "subtitles": "eng/chi/chi/chi/chi" + }, + "originalFilePath": "Inside.2023.BluRay.REMUX.1080p.AVC.DTS-HD.MA5.1-HDS/Inside.2023.BluRay.REMUX.1080p.AVC.DTS-HD.MA5.1-HDS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "HDS", + "edition": "", + "id": 75 + }, + "popularity": 31.382, + "id": 99 + }, + { + "title": "Last Night in Soho", + "originalTitle": "Last Night in Soho", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Ultima Notte A Soho", + "id": 968 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Une dernière nuit à Soho", + "id": 969 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "蘇豪的最後一夜", + "id": 970 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Última noche en el Soho", + "id": 971 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Последна нощ в Сохо", + "id": 972 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "ฝัน-หลอน-ที่โซโห", + "id": 973 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Dün Gece Soho'da", + "id": 974 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Ostatniej nocy w Soho", + "id": 975 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "El misterio de Soho", + "id": 976 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Noite Passada em Soho", + "id": 977 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "ラストナイト・イン・ソーホー:2021", + "id": 978 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 143, + "title": "Eile öösel Sohos", + "id": 979 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "last night in soho", + "sizeOnDisk": 31318344139, + "status": "released", + "overview": "A young girl, passionate about fashion design, is mysteriously able to enter the 1960s where she encounters her idol, a dazzling wannabe singer. But 1960s London is not what it seems, and time seems to be falling apart with shady consequences.", + "inCinemas": "2021-10-21T00:00:00Z", + "physicalRelease": "2022-01-18T00:00:00Z", + "digitalRelease": "2021-11-19T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/100/poster.jpg?lastWrite=638330244473928907", + "remoteUrl": "https://image.tmdb.org/t/p/original/n1ZRmjlk1BJTY7aASqACfPAaLn2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/100/fanart.jpg?lastWrite=638330244479029187", + "remoteUrl": "https://image.tmdb.org/t/p/original/brOCMGntRbx9SKzeQk1Aisu6vXz.jpg" + } + ], + "website": "https://www.focusfeatures.com/last-night-in-soho", + "year": 2021, + "hasFile": true, + "youTubeTrailerId": "XgNrL4Kf7yU", + "studio": "Film4 Productions", + "path": "/data/Last Night in Soho (2021)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Last Night in Soho (2021)", + "runtime": 117, + "cleanTitle": "lastnightinsoho", + "imdbId": "tt9639470", + "tmdbId": 576845, + "titleSlug": "576845", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Mystery", + "Thriller", + "Horror" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 162832, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 2857, + "value": 7.376, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 65, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 100, + "relativePath": "Last Night in Soho (2021) Remux-1080p.mkv", + "path": "/data/Last Night in Soho (2021)/Last Night in Soho (2021) Remux-1080p.mkv", + "size": 31318344139, + "dateAdded": "2023-10-10T22:10:15Z", + "sceneName": "Last.Night.in.Soho.2021.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng/eng/eng", + "audioStreamCount": 5, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:56:32", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "Last.Night.in.Soho.2021.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N/Last.Night.in.Soho.2021.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 79 + }, + "popularity": 31.388, + "id": 100 + }, + { + "title": "The Matrix Resurrections", + "originalTitle": "The Matrix Resurrections", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "骇客帝国4", + "id": 998 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "骇客任务4", + "id": 999 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "The Matrix 4", + "id": 1000 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Матриця 4", + "id": 1001 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "매트릭스: 리저렉션", + "id": 1002 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrix 4", + "id": 1003 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Матрицата: Възкресения", + "id": 1004 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "駭客任務:復活", + "id": 1005 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "The Matrix 4 Resurrections", + "id": 1006 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "黑客帝国4:矩阵重启", + "id": 1007 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Mátrix - Feltámadások", + "id": 1008 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "22 世紀殺人網絡 復活次元", + "id": 1009 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrix: Ανάσταση", + "id": 1010 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrix 4 - Resurrections", + "id": 1011 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Матрица: Воскрешение", + "id": 1012 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrikss: Atdzimšana", + "id": 1013 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "The Matrix IV: Resurrections", + "id": 1014 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Project Ice Cream", + "id": 1015 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "マトリックス レザレクションズ:2021", + "id": 1016 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrix: ülestõusmine", + "id": 1017 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 144, + "title": "Matrix Resurrections", + "id": 1438 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "matrix resurrections", + "sizeOnDisk": 15459368165, + "status": "released", + "overview": "Plagued by strange memories, Neo's life takes an unexpected turn when he finds himself back inside the Matrix.", + "inCinemas": "2021-12-16T00:00:00Z", + "physicalRelease": "2022-03-08T00:00:00Z", + "digitalRelease": "2021-12-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/101/poster.jpg?lastWrite=638325657861612667", + "remoteUrl": "https://image.tmdb.org/t/p/original/8c4a8kE7PizaGQQnditMmI1xbRp.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/101/fanart.jpg?lastWrite=638325657863662778", + "remoteUrl": "https://image.tmdb.org/t/p/original/eNI7PtK6DEYgZmHWP9gQNuff8pv.jpg" + } + ], + "website": "https://www.whatisthematrix.com", + "year": 2021, + "hasFile": true, + "youTubeTrailerId": "nNpvWBuTfrc", + "studio": "Warner Bros. Pictures", + "path": "/data/The Matrix Resurrections (2021)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Matrix Resurrections (2021)", + "runtime": 147, + "cleanTitle": "thematrixresurrections", + "imdbId": "tt10838180", + "tmdbId": 624860, + "titleSlug": "624860", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Science Fiction", + "Action", + "Adventure" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 269550, + "value": 5.7, + "type": "user" + }, + "tmdb": { + "votes": 5076, + "value": 6.477, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 63, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 63, + "type": "user" + } + }, + "movieFile": { + "movieId": 101, + "relativePath": "The Matrix Resurrections (2021) Remux-1080p.mkv", + "path": "/data/The Matrix Resurrections (2021)/The Matrix Resurrections (2021) Remux-1080p.mkv", + "size": 15459368165, + "dateAdded": "2023-10-11T00:27:18Z", + "sceneName": "The.Matrix.Resurrections.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng/eng/eng/fre/spa/por/hin/hun/pol/tam/tel", + "audioStreamCount": 13, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:27:57", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/fre/kor/spa/por/gre/hun/pol/fre/spa/por/hin/hun/tam/tel" + }, + "originalFilePath": "The.Matrix.Resurrections.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT/The.Matrix.Resurrections.2021.1080p.BluRay.REMUX.AVC.DTS-HD.MA.TrueHD.7.1.Atmos-FGT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 2, + "name": "French" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 18, + "name": "Portuguese" + }, + { + "id": 26, + "name": "Hindi" + }, + { + "id": 22, + "name": "Hungarian" + }, + { + "id": 12, + "name": "Polish" + }, + { + "id": 43, + "name": "Tamil" + }, + { + "id": 45, + "name": "Telugu" + } + ], + "releaseGroup": "FGT", + "edition": "", + "id": 91 + }, + "collection": { + "title": "The Matrix Collection", + "tmdbId": 2344, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 75.067, + "id": 101 + }, + { + "title": "Paprika", + "originalTitle": "パプリカ", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 145, + "title": "Papurika", + "id": 1018 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 145, + "title": "红辣椒", + "id": 1019 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 145, + "title": "盜夢偵探", + "id": 1020 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 145, + "title": "Paprika. Detective de los sueños", + "id": 1021 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "paprika", + "sizeOnDisk": 6657179547, + "status": "released", + "overview": "When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.", + "inCinemas": "2006-10-01T00:00:00Z", + "physicalRelease": "2007-06-12T00:00:00Z", + "digitalRelease": "2017-05-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/102/poster.jpg?lastWrite=638325657862522716", + "remoteUrl": "https://image.tmdb.org/t/p/original/bLUUr474Go1DfeN1HLjE3rnZXBq.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/102/fanart.jpg?lastWrite=638325657863632777", + "remoteUrl": "https://image.tmdb.org/t/p/original/3IkChGhTllTULVWht55UDFHTg6Q.jpg" + } + ], + "website": "https://www.sonypictures.com/movies/paprika", + "year": 2006, + "hasFile": true, + "youTubeTrailerId": "PIUqozzyW2k", + "studio": "Madhouse", + "path": "/data/Paprika (2006)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Paprika (2006)", + "runtime": 90, + "cleanTitle": "paprika", + "imdbId": "tt0851578", + "tmdbId": 4977, + "titleSlug": "4977", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Animation", + "Mystery", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 91721, + "value": 7.7, + "type": "user" + }, + "tmdb": { + "votes": 2075, + "value": 7.808, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 86, + "type": "user" + } + }, + "movieFile": { + "movieId": 102, + "relativePath": "Paprika (2006) Remux-1080p.mkv", + "path": "/data/Paprika (2006)/Paprika (2006) Remux-1080p.mkv", + "size": 6657179547, + "dateAdded": "2023-10-10T22:08:16Z", + "sceneName": "Paprika.2006.1080p.BluRay.Remux.AVC.DTS-HD.MA.5.1-MHE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "jpn/eng/jpn", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:30:32", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/eng/ita/spa/ger/fre/dut/ara/bul/hrv/cze/dan/fin/gre/heb/hin/hun/ice/nor/pol/por/slv/swe/tur/eng/fre/ger/ita/spa/dut" + }, + "originalFilePath": "Paprika.2006.1080p.BluRay.Remux.AVC.DTS-HD.MA.5.1-MHE/Paprika.2006.1080p.BluRay.Remux.AVC.DTS-HD.MA.5.1-MHE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "MHE", + "edition": "", + "id": 78 + }, + "popularity": 17.343, + "id": 102 + }, + { + "title": "TÁR", + "originalTitle": "TÁR", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 146, + "title": "ทาร์", + "id": 1022 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 146, + "title": "塔爾", + "id": 1023 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 146, + "title": "Тар", + "id": 1024 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "tár", + "sizeOnDisk": 5274838215, + "status": "released", + "overview": "Renowned musician Lydia Tár is days away from recording the symphony that will elevate her career. However, Lydia's elaborate facade begins to unravel, revealing dirty secrets and the corrosive nature of power.", + "inCinemas": "2022-09-23T00:00:00Z", + "physicalRelease": "2022-12-20T00:00:00Z", + "digitalRelease": "2022-11-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/103/poster.jpg?lastWrite=638327651632355373", + "remoteUrl": "https://image.tmdb.org/t/p/original/dRVAlaU0vbG6hMf2K45NSiIyoUe.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/103/fanart.jpg?lastWrite=638331108870162350", + "remoteUrl": "https://image.tmdb.org/t/p/original/84XcRwKHAw4VXdKOYTSW5ARxFEt.jpg" + } + ], + "website": "https://www.focusfeatures.com/tar", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "Na6gA1RehsU", + "studio": "Focus Features", + "path": "/data/TÁR (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/TÁR (2022)", + "runtime": 158, + "cleanTitle": "tar", + "imdbId": "tt14444726", + "tmdbId": 817758, + "titleSlug": "817758", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Music" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 83155, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 926, + "value": 7.1, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 92, + "type": "user" + } + }, + "movieFile": { + "movieId": 103, + "relativePath": "TÁR (2022) Bluray-1080p.mkv", + "path": "/data/TÁR (2022)/TÁR (2022) Bluray-1080p.mkv", + "size": 5274838215, + "dateAdded": "2023-10-15T17:02:39Z", + "sceneName": "Tar.2022.1080p.BluRay.x264-PiGNUS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:37:59", + "scanType": "Progressive", + "subtitles": "eng/spa/fre/spa/fre" + }, + "originalFilePath": "Tar.2022.1080p.BluRay.x264-PiGNUS/tar.2022.1080p.bluray.x264-pignus.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "PiGNUS", + "edition": "", + "id": 127 + }, + "popularity": 32.683, + "id": 103 + }, + { + "title": "A Thousand and One", + "originalTitle": "A Thousand and One", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 147, + "title": "1001", + "id": 1025 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 147, + "title": "Mille et un", + "id": 1026 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 147, + "title": "Mil Uno", + "id": 1027 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "thousand one", + "sizeOnDisk": 5680096089, + "status": "released", + "overview": "Struggling but unapologetically living on her own terms, Inez is moving from shelter to shelter in mid-1990s New York City. With her 6-year-old son Terry in foster care and unable to leave him again, she kidnaps him so they can build their life together. As the years go by, their family grows and Terry becomes a smart yet quiet teenager, but the secret that has defined their lives threatens to destroy the home they have so improbably built.", + "inCinemas": "2023-03-31T00:00:00Z", + "digitalRelease": "2023-04-18T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/104/poster.jpg?lastWrite=638325657862352707", + "remoteUrl": "https://image.tmdb.org/t/p/original/8NKqW4vTTxsrLFAPn7rLPUjGhvN.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/104/fanart.jpg?lastWrite=638325657863632777", + "remoteUrl": "https://image.tmdb.org/t/p/original/7NTGZTzqWHgBJeoNaWsAxvHtRy4.jpg" + } + ], + "website": "https://www.focusfeatures.com/a-thousand-and-one/", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "wBM0_6JJw1s", + "studio": "Sight Unseen Pictures", + "path": "/data/A Thousand and One (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/A Thousand and One (2023)", + "runtime": 116, + "cleanTitle": "athousandone", + "imdbId": "tt12427158", + "tmdbId": 855263, + "titleSlug": "855263", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 4479, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 42, + "value": 6.9, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 97, + "type": "user" + } + }, + "movieFile": { + "movieId": 104, + "relativePath": "A Thousand and One (2023) WEBRip-1080p.mkv", + "path": "/data/A Thousand and One (2023)/A Thousand and One (2023) WEBRip-1080p.mkv", + "size": 5680096089, + "dateAdded": "2023-10-10T22:35:24Z", + "sceneName": "A.Thousand.and.One.2023.1080p.MA.WEBRip.10bit.HEVC.[Hindi.AAC.2.0.+.English.DDP.5.1].x265-Silence[ARRW]", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "AAC", + "audioLanguages": "hin/eng", + "audioStreamCount": 2, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1010", + "runTime": "1:57:11", + "scanType": "Progressive", + "subtitles": "eng/eng" + }, + "originalFilePath": "A.Thousand.and.One.2023.1080p.MA.WEBRip.10bit.HEVC.[Hindi.AAC.2.0.+.English.DDP.5.1].x265-Silence[ARRW]/A Thousand and One (2023) 1080p MA WEBRip 10bit HEVC [Hindi AAC 2.0 + English DDP 5.1] x265-Silence[ARRØW].mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 26, + "name": "Hindi" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "Silence", + "edition": "", + "id": 80 + }, + "popularity": 13.287, + "id": 104 + }, + { + "title": "Triangle of Sadness", + "originalTitle": "Triangle of Sadness", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Skumju trīsstūris", + "id": 1028 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "슬픔의 삼각형", + "id": 1029 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Hüzün Üçgeni", + "id": 1030 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "瘋狂富作用", + "id": 1032 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Without Filter", + "id": 1033 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Треугольник печали", + "id": 1034 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "上流落水狗", + "id": 1035 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "El triángulo de la tristeza", + "id": 1036 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "트라이앵글 오브 새드니스", + "id": 1037 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "悲情三角", + "id": 1038 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Kurbuse kolmnurk", + "id": 1039 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Triângulo da Tristeza", + "id": 1040 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 148, + "title": "Трикутник смутку", + "id": 1041 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "triangle sadness", + "sizeOnDisk": 42051388228, + "status": "released", + "overview": "A celebrity model couple are invited on a luxury cruise for the uber-rich, helmed by an unhinged, alcoholic captain. What first appears Instagrammable ends catastrophically, leaving the survivors stranded on a desert island in a struggle of hierarchy.", + "inCinemas": "2022-09-18T00:00:00Z", + "physicalRelease": "2023-01-26T00:00:00Z", + "digitalRelease": "2022-11-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/105/poster.jpg?lastWrite=638325657864562827", + "remoteUrl": "https://image.tmdb.org/t/p/original/k9eLozCgCed5FGTSdHu0bBElAV8.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/105/fanart.jpg?lastWrite=638325657865842897", + "remoteUrl": "https://image.tmdb.org/t/p/original/jENycYiYGr5NvMs789zj06JkW5l.jpg" + } + ], + "website": "https://www.triangleofsadness.film", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "VDvfFIZQIuQ", + "studio": "30WEST", + "path": "/data/Triangle of Sadness (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Triangle of Sadness (2022)", + "runtime": 147, + "cleanTitle": "trianglesadness", + "imdbId": "tt7322224", + "tmdbId": 497828, + "titleSlug": "497828", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 156232, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 1664, + "value": 7.123, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 63, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 105, + "relativePath": "Triangle of Sadness (2022) Remux-1080p.mkv", + "path": "/data/Triangle of Sadness (2022)/Triangle of Sadness (2022) Remux-1080p.mkv", + "size": 42051388228, + "dateAdded": "2023-10-10T22:35:48Z", + "sceneName": "Triangle.of.Sadness.2022.CRITERION.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-TMT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:27:28", + "scanType": "Progressive", + "subtitles": "eng/eng" + }, + "originalFilePath": "Triangle.of.Sadness.2022.CRITERION.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-TMT/Triangle.of.Sadness.2022.CRITERION.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-TMT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "TMT", + "edition": "", + "id": 81 + }, + "popularity": 33.326, + "id": 105 + }, + { + "title": "Perfect Blue", + "originalTitle": "PERFECT BLUE", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "Pāfekuto Burū", + "id": 1042 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "藍色恐懼", + "id": 1043 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "Истинная грусть", + "id": 1044 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "Paafekuto buruu", + "id": 1045 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "蓝色恐惧", + "id": 1046 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "The Perfect Blue", + "id": 1047 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "未麻的部屋", + "id": 1048 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "퍼펙트 블루", + "id": 1049 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 149, + "title": "パーフェクトブルー", + "id": 1050 + } + ], + "secondaryYear": 1997, + "secondaryYearSourceId": 0, + "sortTitle": "perfect blue", + "sizeOnDisk": 2237803831, + "status": "released", + "overview": "Pop singer Mima Kirigow looks forward to a bright new career when she quits her chart-topping trio to become an actress. When she lands a role in a sexually charged murder mystery, Mima’s life begins to fall apart.", + "inCinemas": "1998-02-28T00:00:00Z", + "physicalRelease": "1999-08-20T00:00:00Z", + "digitalRelease": "2019-04-13T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/106/poster.jpg?lastWrite=638325657864012797", + "remoteUrl": "https://image.tmdb.org/t/p/original/bee6ZQVaSAUhlBinsP9In8x8vO1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/106/fanart.jpg?lastWrite=638325657864772838", + "remoteUrl": "https://image.tmdb.org/t/p/original/A1Larywbw79kZQqkvCEiPHJqdLN.jpg" + } + ], + "website": "https://gkids.com/films/perfect-blue", + "year": 1998, + "hasFile": true, + "youTubeTrailerId": "C1e1bT0Xjvw", + "studio": "Madhouse", + "path": "/data/Perfect Blue (1998)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Perfect Blue (1998)", + "runtime": 81, + "cleanTitle": "perfectblue", + "imdbId": "tt0156887", + "tmdbId": 10494, + "titleSlug": "10494", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Animation", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 88752, + "value": 8, + "type": "user" + }, + "tmdb": { + "votes": 2196, + "value": 8.3, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 83, + "type": "user" + } + }, + "movieFile": { + "movieId": 106, + "relativePath": "Perfect Blue (1998) Remux-1080p.mkv", + "path": "/data/Perfect Blue (1998)/Perfect Blue (1998) Remux-1080p.mkv", + "size": 2237803831, + "dateAdded": "2023-10-10T23:02:28Z", + "sceneName": "Perfect.Blue.1997.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "jpn/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:21:47", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/chi/ger" + }, + "originalFilePath": "Perfect.Blue.1997.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR/Perfect.Blue.1997.BluRay.1080p.DTS-HD.MA.5.1.AVC.REMUX-FraMeSToR.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FraMeSToR", + "edition": "", + "id": 82 + }, + "popularity": 32.776, + "id": 106 + }, + { + "title": "Evangelion: 3.0 You Can (Not) Redo", + "originalTitle": "ヱヴァンゲリヲン新劇場版:Q", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "ヱヴァンゲリヲン新劇場版:Q", + "id": 1074 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion 3.33 - You Can (Not) Redo", + "id": 1075 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion 3.33 - You can (not) Redo (2012)", + "id": 1076 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Евангелион 3.33: Ты (не) исправишь", + "id": 1077 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "에반게리온: Q", + "id": 1078 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion: 3.33 (No) Lo Puedes Reahacer", + "id": 1079 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion: 3.0 (No) Lo Puedes Reahacer", + "id": 1080 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion Shin Gekijō-ban Q Quickening", + "id": 1081 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion 3.0 Q", + "id": 1082 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion Shin Gekijouban: Q", + "id": 1083 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Neon Genesis Evangelion 3.33 - You Can (Not) Redo", + "id": 1084 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "新世纪福音战士新剧场版:Q", + "id": 1085 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "福音战士新剧场版:Q", + "id": 1086 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion: 3.333 You Can (Not) Redo", + "id": 1087 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Євангеліон: 3.33 Ти (не) виправиш", + "id": 1088 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Євангеліон: 3.0 Ти (не) виправиш", + "id": 1089 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Євангеліон: 3.33 Ти (не) зміниш", + "id": 1090 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Євангеліон: 3.0 Ти (не) зміниш", + "id": 1091 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion: 3.0 (Nie) możesz powtórzyć.", + "id": 1092 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "EVA新剧场版:Q", + "id": 1093 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "อีวานเกเลียน:3.33 กลับไปแก้ไข (ไม่) ได้", + "id": 1094 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion Q", + "id": 1095 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "Evangelion 3.0", + "id": 1096 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "에반게리온 신극장판 Q", + "id": 1097 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "신 에반게리온 극장판 Q", + "id": 1098 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 150, + "title": "ЕВАНГЕЛИОН: 3.33 ТЫ (НЕ) МОЖЕШЬ ВСЕ ИСПРАВИТЬ", + "id": 1379 + } + ], + "secondaryYear": 2013, + "secondaryYearSourceId": 0, + "sortTitle": "evangelion 3 0 you can not redo", + "sizeOnDisk": 8398336447, + "status": "released", + "overview": "Fourteen years after Third Impact, Shinji Ikari awakens to a world he does not remember. He hasn't aged. Much of Earth is laid in ruins, NERV has been dismantled, and people who he once protected have turned against him. Befriending the enigmatic Kaworu Nagisa, Shinji continues the fight against the angels and realizes the fighting is far from over, even when it could be against his former allies. The characters' struggles continue amidst the battles against the angels and each other, spiraling down to what could inevitably be the end of the world.", + "inCinemas": "2012-11-17T00:00:00Z", + "physicalRelease": "2013-04-24T00:00:00Z", + "digitalRelease": "2021-08-12T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/107/poster.jpg?lastWrite=638325657872093236", + "remoteUrl": "https://image.tmdb.org/t/p/original/d0s1xvykzl0kz7fP5S2ROYqphdz.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/107/fanart.jpg?lastWrite=638325657872403253", + "remoteUrl": "https://image.tmdb.org/t/p/original/c5WUWudgykIpxb3TchaRnAcsu5y.jpg" + } + ], + "website": "https://www.evangelion.co.jp/3_0/index.html", + "year": 2012, + "hasFile": true, + "youTubeTrailerId": "pwLw2hNNz2M", + "studio": "khara", + "path": "/data/Evangelion 3.0 You Can (Not) Redo (2012)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Evangelion 3.0 You Can (Not) Redo (2012)", + "runtime": 96, + "cleanTitle": "evangelion30youcannotredo", + "imdbId": "tt0860907", + "tmdbId": 75629, + "titleSlug": "75629", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Animation", + "Science Fiction", + "Action" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 17555, + "value": 6.9, + "type": "user" + }, + "tmdb": { + "votes": 722, + "value": 7.3, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 45, + "type": "user" + } + }, + "movieFile": { + "movieId": 107, + "relativePath": "Evangelion 3.0 You Can (Not) Redo (2012) Bluray-1080p.mkv", + "path": "/data/Evangelion 3.0 You Can (Not) Redo (2012)/Evangelion 3.0 You Can (Not) Redo (2012) Bluray-1080p.mkv", + "size": 8398336447, + "dateAdded": "2023-10-10T23:31:55Z", + "sceneName": "Evangelion.3.33.You.Can.Not.Redo.2012.BDRip.1080p.x264.Hi10p.AAC-BoB", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "jpn", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x264", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x814", + "runTime": "1:35:31", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Evangelion.3.33.You.Can.Not.Redo.2012.BDRip.1080p.x264.Hi10p.AAC-BoB/Evangelion.3.33.You.Can.Not.Redo.2012.BDRip.1080p.x264.Hi10p.AAC-BoB.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + } + ], + "releaseGroup": "BoB", + "edition": "", + "id": 85 + }, + "collection": { + "title": "Rebuild of Evangelion Collection", + "tmdbId": 210303, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 25.677, + "id": 107 + }, + { + "title": "Ponyo", + "originalTitle": "崖の上のポニョ", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Gake no ue no Ponyo", + "id": 1051 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo on the Cliff", + "id": 1052 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo on the Cliff by the Sea", + "id": 1053 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo y el secreto de la sirenita", + "id": 1054 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "悬崖上的金鱼公主", + "id": 1055 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo på klippen ved havet", + "id": 1056 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "벼랑 위의 포뇨", + "id": 1057 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Рыбка Поньо на утесе", + "id": 1058 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Поньо на кручі", + "id": 1059 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "悬崖上的金鱼姬", + "id": 1060 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo paa klippen ved havet", + "id": 1061 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "崖上的波兒", + "id": 1062 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo sur la falaise", + "id": 1063 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 151, + "title": "Ponyo en el acantilado", + "id": 1064 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "ponyo", + "sizeOnDisk": 5881987595, + "status": "released", + "overview": "When Sosuke, a young boy who lives on a clifftop overlooking the sea, rescues a stranded goldfish named Ponyo, he discovers more than he bargained for. Ponyo is a curious, energetic young creature who yearns to be human, but even as she causes chaos around the house, her father, a powerful sorcerer, schemes to return Ponyo to the sea.", + "inCinemas": "2008-07-19T00:00:00Z", + "physicalRelease": "2009-11-26T00:00:00Z", + "digitalRelease": "2011-10-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/108/poster.jpg?lastWrite=638325657866592937", + "remoteUrl": "https://image.tmdb.org/t/p/original/yp8vEZflGynlEylxEesbYasc06i.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/108/fanart.jpg?lastWrite=638325657866882953", + "remoteUrl": "https://image.tmdb.org/t/p/original/shqLeIkqPAAXM8iT6wVDiXUYz1p.jpg" + } + ], + "website": "https://www.ghibli.jp/works/ponyo/", + "year": 2008, + "hasFile": true, + "youTubeTrailerId": "HvddJqBYrc8", + "studio": "Studio Ghibli", + "path": "/data/Ponyo (2008)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Ponyo (2008)", + "runtime": 100, + "cleanTitle": "ponyo", + "imdbId": "tt0876563", + "tmdbId": 12429, + "titleSlug": "12429", + "rootFolderPath": "/data/", + "certification": "G", + "genres": [ + "Animation", + "Fantasy", + "Family" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 155407, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 3811, + "value": 7.739, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 86, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 91, + "type": "user" + } + }, + "movieFile": { + "movieId": 108, + "relativePath": "Ponyo (2008) Remux-1080p.mkv", + "path": "/data/Ponyo (2008)/Ponyo (2008) Remux-1080p.mkv", + "size": 5881987595, + "dateAdded": "2023-10-10T23:03:46Z", + "sceneName": "Ponyo.2008.1080p.BluRay.Remux.DTS-HD.MA.5.1", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "jpn/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:42:22", + "scanType": "Progressive", + "subtitles": "eng/eng/baq/cat/chi/chi/fin/fre/ita/jpn/kor/spa/swe" + }, + "originalFilePath": "Ponyo.2008.1080p.BluRay.Remux.DTS-HD.MA.5.1.AVC/Ponyo.2008.1080p.BluRay.Remux.DTS-HD.MA.5.1.AVC.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 83 + }, + "popularity": 47.727, + "id": 108 + }, + { + "title": "Kiki's Delivery Service", + "originalTitle": "魔女の宅急便", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Majo no takkyûbin", + "id": 1065 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Majo no Takkyuubin", + "id": 1066 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Служба доставки Кікі юної відьми", + "id": 1067 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Відьмина експрес-пошта", + "id": 1068 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "魔女宅急便", + "id": 1069 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "마녀 배달부 키키", + "id": 1070 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Kikis kleiner Lieferservice", + "id": 1071 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Kikis budservice", + "id": 1072 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Nicky, la aprendiz de bruja", + "id": 1073 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Kiki'nin Çatdırılma Servisi", + "id": 1446 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 152, + "title": "Balaca Cadı Kiki", + "id": 1447 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "kiki s delivery service", + "sizeOnDisk": 5794525495, + "status": "released", + "overview": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", + "inCinemas": "1989-07-29T00:00:00Z", + "physicalRelease": "1989-07-29T00:00:00Z", + "digitalRelease": "2011-08-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/109/poster.jpg?lastWrite=638325657868053017", + "remoteUrl": "https://image.tmdb.org/t/p/original/Aufa4YdZIv4AXpR9rznwVA5SEfd.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/109/fanart.jpg?lastWrite=638325657869223080", + "remoteUrl": "https://image.tmdb.org/t/p/original/h5pAEVma835u8xoE60kmLVopLct.jpg" + } + ], + "website": "https://gkids.com/films/kikis-delivery-service", + "year": 1989, + "hasFile": true, + "youTubeTrailerId": "4bG17OYs-GA", + "studio": "Studio Ghibli", + "path": "/data/Kiki's Delivery Service (1989)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Kiki's Delivery Service (1989)", + "runtime": 103, + "cleanTitle": "kikisdeliveryservice", + "imdbId": "tt0097814", + "tmdbId": 16859, + "titleSlug": "16859", + "rootFolderPath": "/data/", + "certification": "G", + "genres": [ + "Animation", + "Family", + "Fantasy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 156982, + "value": 7.8, + "type": "user" + }, + "tmdb": { + "votes": 3597, + "value": 7.848, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 85, + "type": "user" + } + }, + "movieFile": { + "movieId": 109, + "relativePath": "Kiki's Delivery Service (1989) Remux-1080p.mkv", + "path": "/data/Kiki's Delivery Service (1989)/Kiki's Delivery Service (1989) Remux-1080p.mkv", + "size": 5794525495, + "dateAdded": "2023-10-10T23:37:50Z", + "sceneName": "Kiki's.Delivery.Service.1989.1080p.Bluray.Remux.AVC.DTS-MA", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 192000, + "audioChannels": 2, + "audioCodec": "AC3", + "audioLanguages": "eng/eng/eng/jpn/jpn/fre/ger/chi/chi/spa/ita/nor/dut/rus/rus/chi", + "audioStreamCount": 16, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:43:02", + "scanType": "Progressive", + "subtitles": "jpn/eng/fre/chi/chi/eng/eng/eng/eng" + }, + "originalFilePath": "Kiki's.Delivery.Service.1989.1080p.Bluray.Remux.AVC.DTS-MA/Kiki's.Delivery.Service.1989.1080p.Bluray.Remux.AVC.DTS-MA.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 8, + "name": "Japanese" + }, + { + "id": 2, + "name": "French" + }, + { + "id": 4, + "name": "German" + }, + { + "id": 10, + "name": "Chinese" + }, + { + "id": 3, + "name": "Spanish" + }, + { + "id": 5, + "name": "Italian" + }, + { + "id": 15, + "name": "Norwegian" + }, + { + "id": 7, + "name": "Dutch" + }, + { + "id": 11, + "name": "Russian" + } + ], + "edition": "", + "id": 88 + }, + "popularity": 39.872, + "id": 109 + }, + { + "title": "Nausicaä of the Valley of the Wind", + "originalTitle": "風の谷のナウシカ", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Vindens krigare", + "id": 1115 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "I nafsika tis koiladas ton anemon", + "id": 1116 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Guerreros del viento", + "id": 1117 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "La Princesse des Etoiles", + "id": 1118 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Le vaisseau fantôme", + "id": 1119 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Rüzgar Savaşçıları", + "id": 1120 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "SternenKrieger", + "id": 1121 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Навсікая з Долини Вітрів", + "id": 1122 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausikaja iz Doline Vetra", + "id": 1123 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Warriors of the Wind", + "id": 1124 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Kaze no tani no Naushika", + "id": 1125 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausicaä - Prinzessin aus dem Tal der Winde", + "id": 1126 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Sternenkrieger - Warriors of the Wind", + "id": 1127 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Наусика из Долины Ветров", + "id": 1128 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Baram Gegok ui Nausika", + "id": 1129 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausica of the Valley of the Winds", + "id": 1130 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Kaze no Tani no Nausicaa", + "id": 1131 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "바람 계곡의 나우시카", + "id": 1132 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausicaa of the Valley of the Winds", + "id": 1133 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausicaa of the Valley of the Wind", + "id": 1134 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausicaa z Doliny Wiatru", + "id": 1135 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Valley of the Wind", + "id": 1136 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "Nausicaä – prinsessen fra Vindens dal", + "id": 1137 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 153, + "title": "風の谷のナウシカ:1984", + "id": 1138 + } + ], + "secondaryYear": 2004, + "secondaryYearSourceId": 0, + "sortTitle": "nausicaä valley wind", + "sizeOnDisk": 4630809531, + "status": "released", + "overview": "After a global war, the seaside kingdom known as the Valley of the Wind remains one of the last strongholds on Earth untouched by a poisonous jungle and the powerful insects that guard it. Led by the courageous Princess Nausicaä, the people of the Valley engage in an epic struggle to restore the bond between humanity and Earth.", + "inCinemas": "1984-03-11T00:00:00Z", + "physicalRelease": "1986-01-01T00:00:00Z", + "digitalRelease": "2023-07-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/110/poster.jpg?lastWrite=638325657967328406", + "remoteUrl": "https://image.tmdb.org/t/p/original/tcrkfB8SRPQCgwI88hQScua6nxh.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/110/fanart.jpg?lastWrite=638325657968938494", + "remoteUrl": "https://image.tmdb.org/t/p/original/ulVUa2MvnJAjAeRt7h23FFJVRKH.jpg" + } + ], + "website": "https://movies.disney.com/nausicaa-of-the-valley-of-the-wind", + "year": 1984, + "hasFile": true, + "youTubeTrailerId": "9O-JGh4e2Mk", + "studio": "Topcraft", + "path": "/data/Nausicaä of the Valley of the Wind (1984)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Nausicaä of the Valley of the Wind (1984)", + "runtime": 117, + "cleanTitle": "nausicaaevalleywind", + "imdbId": "tt0087544", + "tmdbId": 81, + "titleSlug": "81", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Adventure", + "Animation", + "Fantasy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 176877, + "value": 8, + "type": "user" + }, + "tmdb": { + "votes": 3177, + "value": 7.927, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 86, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 90, + "type": "user" + } + }, + "movieFile": { + "movieId": 110, + "relativePath": "Nausicaä of the Valley of the Wind (1984) Remux-1080p.mkv", + "path": "/data/Nausicaä of the Valley of the Wind (1984)/Nausicaä of the Valley of the Wind (1984) Remux-1080p.mkv", + "size": 4630809531, + "dateAdded": "2023-10-10T23:35:08Z", + "sceneName": "Nausicaa.of.the.Valley.of.the.Wind.1984.1080p.BluRay.GKIDS.REMUX.AVC.DTS-HD.MA.2.0-AC-Obfuscated", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "DTS-HD MA", + "audioLanguages": "jpn/eng/jpn", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:56:59", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/chi/fre/jpn/kor/eng/ara/chi/hrv/cze/dut/fin/fre/gre/hun/ita/kor/per/por/rus/spa/swe" + }, + "originalFilePath": "Nausicaa.of.the.Valley.of.the.Wind.1984.1080p.BluRay.GKIDS.REMUX.AVC.DTS-HD.MA.2.0-AC-Obfuscated/Nausicaa.of.the.Valley.of.the.Wind.1984.1080p.BluRay.GKIDS.REMUX.AVC.DTS-HD.MA.2.0-AC-Obfuscated.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AC", + "edition": "", + "id": 87 + }, + "popularity": 32.388, + "id": 110 + }, + { + "title": "The Boy and the Heron", + "originalTitle": "君たちはどう生きるか", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "Kimi-tachi wa Dō Ikiru ka", + "id": 1099 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "Kimi-tachi wa Dou Ikiru ka", + "id": 1100 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "君たちはどう生きるか", + "id": 1101 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "How Do You Live?", + "id": 1102 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "Como Vocês Vivem?", + "id": 1103 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "你想活出怎樣的人生", + "id": 1104 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "그대들, 어떻게 살 것인가", + "id": 1105 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "苍鹭与少年", + "id": 1106 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "O Rapaz e a Garça", + "id": 1107 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "蒼鷺與少年", + "id": 1108 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "El Chico Y La Garza", + "id": 1378 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "Oğlan və Vağ Quşu", + "id": 1442 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 154, + "title": "Necə Yaşayarsan?", + "id": 1443 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "boy heron", + "sizeOnDisk": 0, + "status": "released", + "overview": "While the Second World War rages, the teenage Mahito, haunted by his mother's tragic death, is relocated from Tokyo to the serene rural home of his new stepmother Natsuko, a woman who bears a striking resemblance to the boy's mother. As he tries to adjust, this strange new world grows even stranger following the appearance of a persistent gray heron, who perplexes and bedevils Mahito, dubbing him the \"long-awaited one.\"", + "inCinemas": "2023-07-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/111/poster.jpg?lastWrite=638333701795567206", + "remoteUrl": "https://image.tmdb.org/t/p/original/ojWgbvGGAHDXlGqNq4SsBuUSJYO.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/111/fanart.jpg?lastWrite=638325657873623319", + "remoteUrl": "https://image.tmdb.org/t/p/original/a0GM57AnJtNi7lMOCamniiyV10W.jpg" + } + ], + "website": "https://gkids.com/films/the-boy-and-the-heron/", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "", + "studio": "Studio Ghibli", + "path": "/data/The Boy and the Heron (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Boy and the Heron (2023)", + "runtime": 124, + "cleanTitle": "theboyheron", + "imdbId": "tt6587046", + "tmdbId": 508883, + "titleSlug": "508883", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Animation", + "Adventure", + "Fantasy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 1732, + "value": 7.7, + "type": "user" + }, + "tmdb": { + "votes": 24, + "value": 7.7, + "type": "user" + } + }, + "popularity": 70.955, + "id": 111 + }, + { + "title": "On Your Mark", + "originalTitle": "On Your Mark", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 155, + "title": "ON YOUR MARK Ghibli实验剧场", + "id": 1109 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 155, + "title": "On Your Mark Studio Ghibli", + "id": 1110 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 155, + "title": "オン・ユア・マーク", + "id": 1111 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 155, + "title": "On yua maaku", + "id": 1112 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 155, + "title": "On yua māku", + "id": 1113 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "on your mark", + "sizeOnDisk": 700552372, + "status": "released", + "overview": "This animated short by Miyazaki was created as a music video for the song \"On Your Mark\" by Japanese duo Chage & Aska. The narrative is non-linear with no dialog and loosely follows the song lyrics and chorus. The video feels like a very compressed version of an epic Miyazaki film. The story follows two police officers in a futuristic setting in their repeated attempts at rescuing a mysterious winged girl.", + "inCinemas": "1995-07-15T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/112/poster.jpg?lastWrite=638325657876493475", + "remoteUrl": "https://image.tmdb.org/t/p/original/bQIsgvkGaKAgqkiRi1IOmb37dlm.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/112/fanart.jpg?lastWrite=638325657876723487", + "remoteUrl": "https://image.tmdb.org/t/p/original/8hZkgGoEfEeOwKZxPAWT6v3bcei.jpg" + } + ], + "website": "", + "year": 1995, + "hasFile": true, + "youTubeTrailerId": "", + "studio": "Studio Ghibli", + "path": "/data/On Your Mark (1995)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/On Your Mark (1995)", + "runtime": 7, + "cleanTitle": "onyourmark", + "imdbId": "tt0114038", + "tmdbId": 10840, + "titleSlug": "10840", + "rootFolderPath": "/data/", + "genres": [ + "Animation", + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 3867, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 133, + "value": 7.3, + "type": "user" + } + }, + "movieFile": { + "movieId": 112, + "relativePath": "On Your Mark (1995) Bluray-1080p.mkv", + "path": "/data/On Your Mark (1995)/On Your Mark (1995) Bluray-1080p.mkv", + "size": 700552372, + "dateAdded": "2023-10-10T23:30:07Z", + "sceneName": "On.Your.Mark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "jpn/eng", + "audioStreamCount": 2, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1040", + "runTime": "6:46", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "On.Your.Mark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/On.Your.Mark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "FRDS", + "edition": "", + "id": 84 + }, + "popularity": 10.095, + "id": 112 + }, + { + "title": "Thor: Love and Thunder", + "originalTitle": "Thor: Love and Thunder", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor 4", + "id": 1164 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "雷神4:爱与雷霆", + "id": 1165 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Тор 4", + "id": 1166 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "থর: প্রেম এবং বজ্রপাত", + "id": 1167 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Marvel Studios' Thor: Love and Thunder", + "id": 1168 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor: Love and Thunder de Marvel Studios", + "id": 1169 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Tors: Mīla un Pērkons", + "id": 1170 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor : Amour et tonnerre de Marvel Studios", + "id": 1171 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor 4: Tình Yêu và Sấm Sét", + "id": 1172 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor: amor y trueno", + "id": 1173 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "თორი: სიყვარული და ჭექა-ქუხილი", + "id": 1174 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "토르 4", + "id": 1175 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Թոր: Սեր և ամպրոպ", + "id": 1176 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "תור: אהבה ורעם", + "id": 1177 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor: Cinta dan Guntur", + "id": 1178 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "마블 토르: 러브 앤 썬더", + "id": 1179 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "토르 러브 앤 썬더", + "id": 1180 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "ธอร์: ด้วยรักและอัสนี", + "id": 1181 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor 4 - Love and Thunder", + "id": 1182 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Θορ: Έρωτας και Κεραυνός", + "id": 1183 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor: Láska jako hrom", + "id": 1184 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Тор: Любовь и гром", + "id": 1185 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor IV", + "id": 1186 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "باوکی ڕوحی", + "id": 1187 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor IV: Love and Thunder (2022)", + "id": 1188 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "雷神奇俠 4:愛與雷霆", + "id": 1189 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor: Armastus ja kõu", + "id": 1190 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 156, + "title": "Thor Miłość i grom", + "id": 1191 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "thor love thunder", + "sizeOnDisk": 33267086045, + "status": "released", + "overview": "After his retirement is interrupted by Gorr the God Butcher, a galactic killer who seeks the extinction of the gods, Thor Odinson enlists the help of King Valkyrie, Korg, and ex-girlfriend Jane Foster, who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher’s vengeance and stop him before it’s too late.", + "inCinemas": "2022-07-06T00:00:00Z", + "physicalRelease": "2022-09-27T00:00:00Z", + "digitalRelease": "2022-09-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/113/poster.jpg?lastWrite=638325657999700164", + "remoteUrl": "https://image.tmdb.org/t/p/original/pIkRyD18kl4FhoCNQuWxWu5cBLM.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/113/fanart.jpg?lastWrite=638325658001250248", + "remoteUrl": "https://image.tmdb.org/t/p/original/vvObT0eIWGlArLQx3K5wZ0uT812.jpg" + } + ], + "website": "https://www.marvel.com/movies/thor-love-and-thunder", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "Go8nTmfrQd8", + "studio": "Marvel Studios", + "path": "/data/Thor Love and Thunder (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Thor Love and Thunder (2022)", + "runtime": 119, + "cleanTitle": "thorlovethunder", + "imdbId": "tt10648342", + "tmdbId": 616037, + "titleSlug": "616037", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Fantasy", + "Action", + "Comedy" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 380642, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 6574, + "value": 6.513, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 57, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 63, + "type": "user" + } + }, + "movieFile": { + "movieId": 113, + "relativePath": "Thor Love and Thunder (2022) Remux-1080p.mkv", + "path": "/data/Thor Love and Thunder (2022)/Thor Love and Thunder (2022) Remux-1080p.mkv", + "size": 33267086045, + "dateAdded": "2023-10-11T00:02:33Z", + "sceneName": "Thor.Love.and.Thunder.2022.1080p.Bluray.REMUX.AVC.DTS-HD.MA.7.1-GHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:58:44", + "scanType": "Progressive", + "subtitles": "eng/fre/ger/dut/dan/fin/nor/swe/eng/fre/ger/dut/fre/ger" + }, + "originalFilePath": "Thor.Love.and.Thunder.2022.1080p.Bluray.REMUX.AVC.DTS-HD.MA.7.1-GHD/Thor.Love.and.Thunder.2022.1080p.Bluray.REMUX.AVC.DTS-HD.MA.7.1-GHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "GHD", + "edition": "", + "id": 90 + }, + "collection": { + "title": "Thor Collection", + "tmdbId": 131296, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 139.705, + "id": 113 + }, + { + "title": "The King of Staten Island", + "originalTitle": "The King of Staten Island", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 157, + "title": "המלך של סטטן איילנד", + "id": 1114 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 157, + "title": "El rey del barrio", + "id": 1437 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "king staten island", + "sizeOnDisk": 5851840897, + "status": "released", + "overview": "Scott has been a case of arrested development ever since his firefighter father died when he was seven. He's now reached his mid-20s having achieved little, chasing a dream of becoming a tattoo artist that seems far out of reach. As his ambitious younger sister heads off to college, Scott is still living with his exhausted ER nurse mother and spends his days smoking weed, hanging with the guys — Oscar, Igor and Richie — and secretly hooking up with his childhood friend Kelsey. But when his mother starts dating a loudmouth firefighter named Ray, it sets off a chain of events that will force Scott to grapple with his grief and take his first tentative steps toward moving forward in life.", + "inCinemas": "2020-07-22T00:00:00Z", + "physicalRelease": "2021-04-22T00:00:00Z", + "digitalRelease": "2020-06-12T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/114/poster.jpg?lastWrite=638337158586911489", + "remoteUrl": "https://image.tmdb.org/t/p/original/zQFjMmE3K9AX5QrBL1SXIxYQ9jz.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/114/fanart.jpg?lastWrite=638337158587171503", + "remoteUrl": "https://image.tmdb.org/t/p/original/5rwcd24GGltKiqdPT4G2dmchLr9.jpg" + } + ], + "website": "https://www.thekingofstatenisland.com", + "year": 2020, + "hasFile": true, + "youTubeTrailerId": "azkVr0VUSTA", + "studio": "Universal Pictures", + "path": "/data/The King of Staten Island (2020)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The King of Staten Island (2020)", + "runtime": 137, + "cleanTitle": "thekingstatenisland", + "imdbId": "tt9686708", + "tmdbId": 579583, + "titleSlug": "579583", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 74405, + "value": 7.1, + "type": "user" + }, + "tmdb": { + "votes": 902, + "value": 7.012, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 67, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 76, + "type": "user" + } + }, + "movieFile": { + "movieId": 114, + "relativePath": "The King of Staten Island (2020) Remux-1080p.mkv", + "path": "/data/The King of Staten Island (2020)/The King of Staten Island (2020) Remux-1080p.mkv", + "size": 5851840897, + "dateAdded": "2023-10-10T23:32:33Z", + "sceneName": "The.King.of.Staten.Island.2020.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:17:15", + "scanType": "Progressive", + "subtitles": "rum/dut/eng/fre/ita/fre/ita/eng/fre/ita/hrv/slv/hun/pol" + }, + "originalFilePath": "The.King.of.Staten.Island.2020.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD/The.King.of.Staten.Island.2020.1080p.Remux.AVC.TrueHD.Atmos.7.1-playBD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playBD", + "edition": "", + "id": 86 + }, + "popularity": 19.366, + "id": 114 + }, + { + "title": "Cairo Conspiracy", + "originalTitle": "ولد من الجنة", + "originalLanguage": { + "id": 31, + "name": "Arabic" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Walad Min Al Janna", + "id": 1139 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Заговор в Каире", + "id": 1140 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "La conspiration du Caire", + "id": 1141 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "ولد من الجنة", + "id": 1142 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "صبي من الجنة Cairo Conspiracy", + "id": 1143 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Boy from Heaven", + "id": 1144 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "天堂来的男孩", + "id": 1145 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Die Kairo-Verschwörung", + "id": 1146 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Chłopiec z niebios", + "id": 1147 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Garoto dos Céus", + "id": 1148 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "A Conspiração do Cairo", + "id": 1149 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Момчето от Рая", + "id": 1150 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Chlapec z nebe", + "id": 1151 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Η συνωμοσία του Καΐρου", + "id": 1152 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Fiú a mennyből", + "id": 1153 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "स्वर्ग से लड़का", + "id": 1154 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "La cospirazione del Cairo", + "id": 1155 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "天国から来た少年", + "id": 1156 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Chico del Cielo", + "id": 1157 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "보이 프롬 헤븐", + "id": 1158 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Zavera u Kairu", + "id": 1159 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Conspiración en el Cairo", + "id": 1160 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Pojken fra himlen", + "id": 1161 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "Cennetten Gelen Çocuk", + "id": 1162 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 158, + "title": "開羅謀殺案", + "id": 1163 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "cairo conspiracy", + "sizeOnDisk": 6811502639, + "status": "released", + "overview": "A fisherman's son is offered the ultimate privilege to study at the Al-Azhar University in Cairo, the epicenter of power of Sunni Islam. Shortly after his arrival, the university’s highest ranking religious leader, the Grand Imam, dies and the young student becomes a pawn in a ruthless power struggle between Egypt's religious and political elite.", + "inCinemas": "2022-10-26T00:00:00Z", + "physicalRelease": "2023-03-07T00:00:00Z", + "digitalRelease": "2023-02-24T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/115/poster.jpg?lastWrite=638325657967848435", + "remoteUrl": "https://image.tmdb.org/t/p/original/dXGNABIoMWo8EOGUQH2651w9CWz.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/115/fanart.jpg?lastWrite=638325657970438575", + "remoteUrl": "https://image.tmdb.org/t/p/original/5pUJhaYpDdmOiyMvCh3G1R6G1wi.jpg" + } + ], + "website": "", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "EG8C70oQYd0", + "studio": "Atmo Production", + "path": "/data/Cairo Conspiracy (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Cairo Conspiracy (2022)", + "runtime": 121, + "cleanTitle": "cairoconspiracy", + "imdbId": "tt15452062", + "tmdbId": 788977, + "titleSlug": "788977", + "rootFolderPath": "/data/", + "genres": [ + "Thriller", + "Drama" + ], + "tags": [], + "added": "2023-10-10T20:16:04Z", + "ratings": { + "imdb": { + "votes": 6010, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 161, + "value": 6.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 85, + "type": "user" + } + }, + "movieFile": { + "movieId": 115, + "relativePath": "Cairo Conspiracy (2022) Bluray-1080p.mkv", + "path": "/data/Cairo Conspiracy (2022)/Cairo Conspiracy (2022) Bluray-1080p.mkv", + "size": 6811502639, + "dateAdded": "2023-10-11T00:01:16Z", + "sceneName": "Cairo.Conspiracy.2022.MULTi.1080p.BluRay.x264-UKDHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "fre/ara", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:00:37", + "scanType": "Progressive", + "subtitles": "fre/fre/fre/eng/eng/fre/fre/fre" + }, + "originalFilePath": "Cairo.Conspiracy.2022.MULTi.1080p.BluRay.x264-UKDHD/cairo.conspiracy.2022.multi.1080p.bluray.x264-ukdhd.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 31, + "name": "Arabic" + } + ], + "releaseGroup": "UKDHD", + "edition": "", + "id": 89 + }, + "popularity": 13.575, + "id": 115 + }, + { + "title": "The Sea Inside", + "originalTitle": "Mar adentro", + "originalLanguage": { + "id": 3, + "name": "Spanish" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "Moreto v men", + "id": 1196 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "씨 인사이드", + "id": 1197 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "Mar adentro", + "id": 1198 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "More u nama", + "id": 1199 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "I Thálassa Mésa mou", + "id": 1200 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "More vnutri", + "id": 1201 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "More vseredyni", + "id": 1202 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "Mare dentro", + "id": 1203 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 179, + "title": "Havet innenfor", + "id": 1204 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "sea inside", + "sizeOnDisk": 4130423235, + "status": "released", + "overview": "The Sea Inside is about Spaniard Ramón Sampedro, who fought a 30-year campaign to win the right to end his life with dignity. It is the story of Ramón’s relationships with two women: Julia a lawyer who supports his cause, and Rosa, a local woman who wants to convince him that life is worth living.", + "inCinemas": "2004-09-03T00:00:00Z", + "physicalRelease": "2005-08-24T00:00:00Z", + "digitalRelease": "2008-02-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/117/poster.jpg?lastWrite=638327545167418012", + "remoteUrl": "https://image.tmdb.org/t/p/original/mQW1JJKCUg02cmWBzr9JFu9vM1V.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/117/fanart.jpg?lastWrite=638327545167548019", + "remoteUrl": "https://image.tmdb.org/t/p/original/7XmDhCTkce5GH8KCdbMoTZdxn1p.jpg" + } + ], + "website": "", + "year": 2004, + "hasFile": true, + "youTubeTrailerId": "0qqvyzamlns", + "studio": "Canal+", + "path": "/data/The Sea Inside (2004)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/The Sea Inside (2004)", + "runtime": 125, + "cleanTitle": "theseainside", + "imdbId": "tt0369702", + "tmdbId": 1913, + "titleSlug": "1913", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-13T00:41:56Z", + "ratings": { + "imdb": { + "votes": 84080, + "value": 8, + "type": "user" + }, + "tmdb": { + "votes": 827, + "value": 7.584, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 74, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 85, + "type": "user" + } + }, + "movieFile": { + "movieId": 117, + "relativePath": "The Sea Inside (2004) Remux-1080p.mkv", + "path": "/data/The Sea Inside (2004)/The Sea Inside (2004) Remux-1080p.mkv", + "size": 4130423235, + "dateAdded": "2023-10-13T03:39:22Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "spa", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:05:52", + "scanType": "Progressive", + "subtitles": "ger/spa" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 3, + "name": "Spanish" + } + ], + "edition": "", + "id": 98 + }, + "popularity": 11.983, + "id": 117 + }, + { + "title": "Challengers", + "originalTitle": "Challengers", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "challengers", + "sizeOnDisk": 0, + "status": "announced", + "overview": "Tennis player turned coach Tashi has taken her husband, Art, and transformed him into a world-famous grand slam champion. To jolt him out of his recent losing streak, she makes him play a “Challenger” event — close to the lowest level of pro tournament — where he finds himself standing across the net from his former best friend and Tashi’s former boyfriend.", + "inCinemas": "2024-04-25T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/118/poster.jpg?lastWrite=638327833492586906", + "remoteUrl": "https://image.tmdb.org/t/p/original/f9SCnbt2zxRpxvoIJ4GGMANZviT.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/118/fanart.jpg?lastWrite=638327833492836919", + "remoteUrl": "https://image.tmdb.org/t/p/original/504GSaoxBA5nLlcMsJfjzLZEKUp.jpg" + } + ], + "website": "http://challengersmovie.com", + "year": 2024, + "hasFile": false, + "youTubeTrailerId": "T_rab3zK6gg", + "studio": "Pascal Pictures", + "path": "/data/Challengers (2024)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/Challengers (2024)", + "runtime": 0, + "cleanTitle": "challengers", + "imdbId": "tt16426418", + "tmdbId": 937287, + "titleSlug": "937287", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Romance", + "Comedy" + ], + "tags": [], + "added": "2023-10-13T08:42:28Z", + "ratings": { + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "popularity": 6.341, + "id": 118 + }, + { + "title": "Quiz Lady", + "originalTitle": "Quiz Lady", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "quiz lady", + "sizeOnDisk": 0, + "status": "announced", + "overview": "A brilliant but tightly wound, gameshow-obsessed young woman, Anne, and her estranged, train-wreck of a sister Jenny, must work together to help cover their mother’s gambling debts. When Anne’s beloved dog is kidnapped, they set out on a wild, cross-country trek to get the cash the only way they know how: by turning Anne into a bona-fide gameshow champion.", + "digitalRelease": "2023-11-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/119/poster.jpg?lastWrite=638329380099305200", + "remoteUrl": "https://image.tmdb.org/t/p/original/tqKiprkTUfXWi8bOjCl0lHtCwod.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/119/fanart.jpg?lastWrite=638329380099515212", + "remoteUrl": "https://image.tmdb.org/t/p/original/2KAzYU6d2o0hy7uRsl8bHDF5BRZ.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": false, + "youTubeTrailerId": "4OzaexEqDa8", + "studio": "20th Century Studios", + "path": "/data/Quiz Lady (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/Quiz Lady (2023)", + "runtime": 99, + "cleanTitle": "quizlady", + "imdbId": "tt13405810", + "tmdbId": 787781, + "titleSlug": "787781", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-13T08:42:28Z", + "ratings": { + "imdb": { + "votes": 61, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 1, + "value": 10, + "type": "user" + } + }, + "popularity": 8.471, + "id": 119 + }, + { + "title": "Past Lives", + "originalTitle": "Past Lives", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "ครั้งหนึ่ง...ซึ่งคิดถึงตลอดไป", + "id": 1207 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "怕死來福", + "id": 1208 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "패스트 라이브즈", + "id": 1209 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "パスト・ライブス", + "id": 1210 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "過去の人生", + "id": 1211 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "过往人生", + "id": 1212 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "Geçmiş Yaşamlar", + "id": 1213 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "Vidas Pasadas", + "id": 1413 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 182, + "title": "Keçmiş Yaşamlar", + "id": 1450 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "past lives", + "sizeOnDisk": 23461400724, + "status": "released", + "overview": "Two childhood friends are separated after one’s family emigrates from South Korea. Two decades later, they are reunited in New York for one week as they confront notions of destiny, love and the choices that make a life.", + "inCinemas": "2023-06-23T00:00:00Z", + "physicalRelease": "2023-09-19T00:00:00Z", + "digitalRelease": "2023-08-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/120/poster.jpg?lastWrite=638327833492106879", + "remoteUrl": "https://image.tmdb.org/t/p/original/rzO71VFu7CpJMfF5TQNMj0d1lSV.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/120/fanart.jpg?lastWrite=638327833492456898", + "remoteUrl": "https://image.tmdb.org/t/p/original/rron9HAuS9s7zBF8iCX1tsafxUo.jpg" + } + ], + "website": "https://a24films.com/films/past-lives", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "kA244xewjcI", + "studio": "A24", + "path": "/data/Past Lives (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Past Lives (2023)", + "runtime": 106, + "cleanTitle": "pastlives", + "imdbId": "tt13238346", + "tmdbId": 666277, + "titleSlug": "666277", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-13T08:42:28Z", + "ratings": { + "imdb": { + "votes": 33562, + "value": 8, + "type": "user" + }, + "tmdb": { + "votes": 238, + "value": 7.9, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 94, + "type": "user" + } + }, + "movieFile": { + "movieId": 120, + "relativePath": "Past Lives (2023) Remux-1080p.mkv", + "path": "/data/Past Lives (2023)/Past Lives (2023) Remux-1080p.mkv", + "size": 23461400724, + "dateAdded": "2023-10-13T08:52:55Z", + "sceneName": "Past.Lives.2023.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DataLass", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng/eng/eng", + "audioStreamCount": 4, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:45:28", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/chi/fin/fre/rus/spa/spa/ukr" + }, + "originalFilePath": "Past.Lives.2023.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DataLass/Past.Lives.2023.1080p.BluRay.REMUX.AVC.DTS-HD.MA.5.1-DataLass.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "DataLass", + "edition": "", + "id": 99 + }, + "popularity": 42.478, + "id": 120 + }, + { + "title": "Anyone But You", + "originalTitle": "Anyone But You", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 183, + "title": "Tutti Tranne Te", + "id": 1392 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "anyone but you", + "sizeOnDisk": 917125228, + "status": "announced", + "overview": "Bea and Ben look like the perfect couple, but after an amazing first date, something happens that turns their fiery hot attraction ice cold — until they find themselves unexpectedly thrust together at a destination wedding in Australia. So they do what any two mature adults would do - pretend to be a couple.", + "inCinemas": "2023-12-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/121/poster.jpg?lastWrite=638333701695971678", + "remoteUrl": "https://image.tmdb.org/t/p/original/dmnXEL2COX9ifdFvblV8iwJrZk4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/121/fanart.jpg?lastWrite=638327833491356837", + "remoteUrl": "https://image.tmdb.org/t/p/original/kWyQh9fCrgcMfhqZmqtp89Q0TrT.jpg" + } + ], + "website": "https://www.anyonebutyou.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "", + "studio": "Olive Bridge Entertainment", + "path": "/data/Anyone But You (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": false, + "folderName": "/data/Anyone But You (2023)", + "runtime": 0, + "cleanTitle": "anyonebutyou", + "imdbId": "tt26047818", + "tmdbId": 1072790, + "titleSlug": "1072790", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-13T08:42:28Z", + "ratings": { + "tmdb": { + "votes": 0, + "value": 0, + "type": "user" + } + }, + "movieFile": { + "movieId": 121, + "relativePath": "Anyone But You (2023) WEBDL-1080p.mkv", + "path": "/data/Anyone But You (2023)/Anyone But You (2023) WEBDL-1080p.mkv", + "size": 917125228, + "dateAdded": "2023-10-18T03:41:56Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "AAC", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x816", + "runTime": "1:51:29", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 147 + }, + "popularity": 21.642, + "id": 121 + }, + { + "title": "Dungeons & Dragons: Honor Among Thieves", + "originalTitle": "Dungeons & Dragons: Honor Among Thieves", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Dungeons & Dragons: Honour Among Thieves", + "id": 1217 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Dungeons & Dragons: Honor entre ladrones", + "id": 1218 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Calabozos y Dragones: Honor entre ladrones", + "id": 1219 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Dragones y mazmorras: El honor entre ladrones", + "id": 1220 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Подземелья и Драконы: Честь среди воров", + "id": 1221 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Ngục Tối & Rồng: Danh Dự Của Kẻ Trộm", + "id": 1222 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Тъмници & Дракони: Чест сред Крадците", + "id": 1223 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Лагуми и змајеви: Част међу лоповима", + "id": 1224 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Dungeons and Dragons: Betyárbecsület", + "id": 1225 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Zindanlar ve Ejderhalar: Hırsızlar Arasındaki Onur", + "id": 1226 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "龍與地下城:盜賊榮耀", + "id": 1227 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "龍與地下城:盜亦有道", + "id": 1228 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "ดันเจียนส์ & ดรากอนส์: เกียรติยศในหมู่โจร", + "id": 1229 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Donjons & Dragons L'Honneur des voleurs", + "id": 1230 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 184, + "title": "Dungeons & Dragons - Ehre unter Dieben (2023)", + "id": 1416 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "dungeons dragons honor among thieves", + "sizeOnDisk": 24555189800, + "status": "released", + "overview": "A charming thief and a band of unlikely adventurers undertake an epic heist to retrieve a lost relic, but things go dangerously awry when they run afoul of the wrong people.", + "inCinemas": "2023-03-23T00:00:00Z", + "physicalRelease": "2023-05-30T00:00:00Z", + "digitalRelease": "2023-05-02T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/122/poster.jpg?lastWrite=638329359327370121", + "remoteUrl": "https://image.tmdb.org/t/p/original/A7AoNT06aRAc4SV89Dwxj3EYAgC.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/122/fanart.jpg?lastWrite=638329359338860753", + "remoteUrl": "https://image.tmdb.org/t/p/original/AdBXP8e6K3FYdDrMx3Wr6WZqCYF.jpg" + } + ], + "website": "https://www.paramountmovies.com/movies/dungeons-dragons-honor-among-thieves", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "9LLOLEBlVIA", + "studio": "Entertainment One", + "path": "/data/Dungeons & Dragons Honor Among Thieves (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Dungeons & Dragons Honor Among Thieves (2023)", + "runtime": 134, + "cleanTitle": "dungeonsdragonshonoramongthieves", + "imdbId": "tt2906216", + "tmdbId": 493529, + "titleSlug": "493529", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Adventure", + "Fantasy", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 193227, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 2468, + "value": 7.433, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 122, + "relativePath": "Dungeons & Dragons Honor Among Thieves (2023) Bluray-1080p.mkv", + "path": "/data/Dungeons & Dragons Honor Among Thieves (2023)/Dungeons & Dragons Honor Among Thieves (2023) Bluray-1080p.mkv", + "size": 24555189800, + "dateAdded": "2023-10-15T16:33:31Z", + "sceneName": "Dungeons.and.Dragons.Honor.Among.Thieves.2023.1080p.BluRay.x265.10bit.TrueHD.7.1.Atmos-UnKn0wn", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 23.976, + "videoDynamicRange": "HDR", + "videoDynamicRangeType": "HLG", + "resolution": "1920x804", + "runTime": "2:14:08", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Dungeons.and.Dragons.Honor.Among.Thieves.2023.1080p.BluRay.x265.10bit.TrueHD.7.1.Atmos-UnKn0wn/Dungeons.and.Dragons.Honor.Among.Thieves.2023.1080p.BluRay.x265.10bit.TrueHD.7.1.Atmos-UnKn0wn.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "UnKn0wn", + "edition": "", + "id": 124 + }, + "popularity": 160.828, + "id": 122 + }, + { + "title": "Joy Ride", + "originalTitle": "Joy Ride", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 185, + "title": "แก๊งตัวเจ๊ เฟียสกีข้ามโลก", + "id": 1245 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 185, + "title": "Normāls trips", + "id": 1246 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "joy ride", + "sizeOnDisk": 31411317562, + "status": "released", + "overview": "When Audrey's business trip to Asia goes sideways, she enlists the aid of Lolo, her irreverent, childhood best friend who also happens to be a hot mess; Kat, her college friend turned Chinese soap star; and Deadeye, Lolo's eccentric cousin. Their no-holds-barred, epic experience becomes a journey of bonding, friendship, belonging, and wild debauchery that reveals the universal truth of what it means to know and love who you are.", + "inCinemas": "2023-06-22T00:00:00Z", + "digitalRelease": "2023-07-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/123/poster.jpg?lastWrite=638334565989556255", + "remoteUrl": "https://image.tmdb.org/t/p/original/lTZ3r9NBdbrR6NA90v3hFYqd6TC.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/123/fanart.jpg?lastWrite=638329359338860753", + "remoteUrl": "https://image.tmdb.org/t/p/original/fIQfdZ6fqf9mIbqBaexbgIEIk5K.jpg" + } + ], + "website": "https://www.joyride.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Nn28aZkrFn4", + "studio": "Lionsgate", + "path": "/data/Joy Ride (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Joy Ride (2023)", + "runtime": 95, + "cleanTitle": "joyride", + "imdbId": "tt15268244", + "tmdbId": 864168, + "titleSlug": "864168", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 15747, + "value": 6.5, + "type": "user" + }, + "tmdb": { + "votes": 175, + "value": 6.6, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 123, + "relativePath": "Joy Ride (2023) Remux-1080p.mkv", + "path": "/data/Joy Ride (2023)/Joy Ride (2023) Remux-1080p.mkv", + "size": 31411317562, + "dateAdded": "2023-10-15T03:18:56Z", + "sceneName": "Joy.Ride.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 30, + "name": "Remux-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "remux" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng/eng", + "audioStreamCount": 3, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "AVC", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:34:48", + "scanType": "Progressive", + "subtitles": "eng/spa/fre" + }, + "originalFilePath": "Joy.Ride.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N/Joy.Ride.2023.BluRay.1080p.REMUX.AVC.Atmos.DTS-HD.MA.7.1-LEGi0N.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LEGi0N", + "edition": "", + "id": 101 + }, + "popularity": 44.577, + "id": 123 + }, + { + "title": "A Good Person", + "originalTitle": "A Good Person", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 186, + "title": "یک انسان خوب", + "id": 1231 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 186, + "title": "یک شخص خوب", + "id": 1232 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 186, + "title": "Uma Boa Pessoa", + "id": 1233 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "good person", + "sizeOnDisk": 3965797930, + "status": "released", + "overview": "Allison's life falls apart following her involvement in a fatal accident. The unlikely relationship she forms with her would-be father-in-law helps her live a life worth living.", + "inCinemas": "2023-03-23T00:00:00Z", + "digitalRelease": "2023-04-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/124/poster.jpg?lastWrite=638329359320409738", + "remoteUrl": "https://image.tmdb.org/t/p/original/6toz74j1OgbQrsZUjgr2Ohs1AsE.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/124/fanart.jpg?lastWrite=638329359327600133", + "remoteUrl": "https://image.tmdb.org/t/p/original/1jCXk512KPr6MzXEZf7UH4fbtba.jpg" + } + ], + "website": "https://www.mgmstudios.com/a-good-person", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "phRXBLwcy5I", + "studio": "Killer Films", + "path": "/data/A Good Person (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/A Good Person (2023)", + "runtime": 128, + "cleanTitle": "agoodperson", + "imdbId": "tt14153080", + "tmdbId": 800787, + "titleSlug": "800787", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 14942, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 189, + "value": 7.042, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 50, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 58, + "type": "user" + } + }, + "movieFile": { + "movieId": 124, + "relativePath": "A Good Person (2023) Bluray-1080p.mkv", + "path": "/data/A Good Person (2023)/A Good Person (2023) Bluray-1080p.mkv", + "size": 3965797930, + "dateAdded": "2023-10-15T16:44:03Z", + "sceneName": "A.Good.Person.2023.1080p.BluRay.x264-MiMESiS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:08:12", + "scanType": "Progressive", + "subtitles": "eng/fre/spa" + }, + "originalFilePath": "A.Good.Person.2023.1080p.BluRay.x264-MiMESiS/a.good.person.2023.1080p.bluray.x264-mimesis.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "MiMESiS", + "edition": "", + "id": 125 + }, + "popularity": 16.698, + "id": 124 + }, + { + "title": "Ghosted", + "originalTitle": "Ghosted", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "घोस्टेड", + "id": 1234 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "Примарні", + "id": 1235 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "神出鬼没", + "id": 1236 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "真爱玩失踪", + "id": 1237 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "真愛搞失蹤", + "id": 1238 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 187, + "title": "真愛玩失蹤", + "id": 1239 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "ghosted", + "sizeOnDisk": 2193719876, + "status": "released", + "overview": "Salt-of-the-earth Cole falls head over heels for enigmatic Sadie — but then makes the shocking discovery that she’s a secret agent. Before they can decide on a second date, Cole and Sadie are swept away on an international adventure to save the world.", + "digitalRelease": "2023-04-20T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/125/poster.jpg?lastWrite=638329359327350119", + "remoteUrl": "https://image.tmdb.org/t/p/original/liLN69YgoovHVgmlHJ876PKi5Yi.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/125/fanart.jpg?lastWrite=638329359338860753", + "remoteUrl": "https://image.tmdb.org/t/p/original/b9UCfDzwiWw7mIFsIQR9ZJUeh7q.jpg" + } + ], + "website": "https://tv.apple.com/movie/umc.cmc.6nodv9rf3ltfk2ar3pfc8hced", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "IAdCsNtEuBU", + "studio": "Skydance", + "path": "/data/Ghosted (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Ghosted (2023)", + "runtime": 117, + "cleanTitle": "ghosted", + "imdbId": "tt15326988", + "tmdbId": 868759, + "titleSlug": "868759", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 53287, + "value": 5.8, + "type": "user" + }, + "tmdb": { + "votes": 1350, + "value": 7.044, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 34, + "type": "user" + } + }, + "movieFile": { + "movieId": 125, + "relativePath": "Ghosted (2023) WEBDL-1080p.mkv", + "path": "/data/Ghosted (2023)/Ghosted (2023) WEBDL-1080p.mkv", + "size": 2193719876, + "dateAdded": "2023-10-15T16:45:24Z", + "sceneName": "Ghosted.2023.MULTI.1080p.WEB.H264-LOST", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1038", + "runTime": "1:56:54", + "scanType": "Progressive", + "subtitles": "fre/fre" + }, + "originalFilePath": "Ghosted.2023.MULTI.1080p.WEB.H264-LOST/ghosted.2023.multi.1080p.web.h264-lost.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LOST", + "edition": "", + "id": 126 + }, + "popularity": 136.4, + "id": 125 + }, + { + "title": "Robots", + "originalTitle": "Robots", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 188, + "title": "Идеальные роботы", + "id": 1240 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 188, + "title": "Double Date", + "id": 1241 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 188, + "title": "Robotai", + "id": 1242 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 188, + "title": "Podrabiani zakochani", + "id": 1243 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 188, + "title": "Le robot qui me ressemblait", + "id": 1244 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "robots", + "sizeOnDisk": 1393454285, + "status": "released", + "overview": "A womanizer and a gold digger trick people into relationships with illegal robot doubles. When they unwittingly use this scam on each other, their robot doubles fall in love and elope, forcing the duo to team up to hunt them down before the authorities discover their secret.", + "inCinemas": "2023-04-26T00:00:00Z", + "physicalRelease": "2023-08-25T00:00:00Z", + "digitalRelease": "2023-06-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/126/poster.jpg?lastWrite=638329359327310117", + "remoteUrl": "https://image.tmdb.org/t/p/original/yf7aXA3qC3MA5fqnBmnFsrdZDDN.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/126/fanart.jpg?lastWrite=638329359338850752", + "remoteUrl": "https://image.tmdb.org/t/p/original/ujAHEr1smB5pzNYUMZpIj1Bm6uq.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "5-QlB-CCozc", + "studio": "Company Films", + "path": "/data/Robots (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Robots (2023)", + "runtime": 93, + "cleanTitle": "robots", + "imdbId": "tt12579470", + "tmdbId": 723347, + "titleSlug": "723347", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Science Fiction", + "Romance" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 5283, + "value": 5.5, + "type": "user" + }, + "tmdb": { + "votes": 129, + "value": 5.8, + "type": "user" + } + }, + "movieFile": { + "movieId": 126, + "relativePath": "Robots (2023) Bluray-1080p.mkv", + "path": "/data/Robots (2023)/Robots (2023) Bluray-1080p.mkv", + "size": 1393454285, + "dateAdded": "2023-10-15T16:16:57Z", + "sceneName": "Robots.2023.1080p.BluRay.DD+5.1.x264-playHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:33:10", + "scanType": "Progressive", + "subtitles": "eng/eng/rum" + }, + "originalFilePath": "Robots.2023.1080p.BluRay.DD+5.1.x264-playHD/Robots.2023.1080p.BluRay.DD+5.1.x264-playHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playHD", + "edition": "", + "id": 121 + }, + "popularity": 29.972, + "id": 126 + }, + { + "title": "Love Again", + "originalTitle": "Love Again", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "Text for You", + "id": 1255 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "It's All Coming Back to Me", + "id": 1256 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "Знову любов", + "id": 1257 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "Amor a primer mensaje", + "id": 1258 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "Люби снова", + "id": 1259 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "短信情缘", + "id": 1260 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "重新再爱", + "id": 1261 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "寄往天堂的情书", + "id": 1262 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "缘来可以爱多次", + "id": 1263 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 189, + "title": "O Amor Mandou Mensagem", + "id": 1264 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "love again", + "sizeOnDisk": 2458951404, + "status": "released", + "overview": "Mira Ray, dealing with the loss of her fiancé, sends a series of romantic texts to his old cell phone number… not realizing the number was reassigned to Rob Burns' new work phone. A journalist, Rob is captivated by the honesty in the beautifully confessional texts. When he’s assigned to write a profile of megastar Céline Dion, he enlists her help in figuring out how to meet Mira in person and win her heart.", + "inCinemas": "2023-05-04T00:00:00Z", + "physicalRelease": "2023-07-18T00:00:00Z", + "digitalRelease": "2023-05-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/127/poster.jpg?lastWrite=638329359325119997", + "remoteUrl": "https://image.tmdb.org/t/p/original/koswMk0y7jGcyofV1sBccnNtY0B.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/127/fanart.jpg?lastWrite=638329359333350450", + "remoteUrl": "https://image.tmdb.org/t/p/original/jv9WTuEk7kW8JxgpjQ872CyiifP.jpg" + } + ], + "website": "https://www.loveagain.movie", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "LbW1Yj6jHrk", + "studio": "Screen Gems", + "path": "/data/Love Again (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Love Again (2023)", + "runtime": 104, + "cleanTitle": "loveagain", + "imdbId": "tt10276482", + "tmdbId": 758336, + "titleSlug": "758336", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 9750, + "value": 5.9, + "type": "user" + }, + "tmdb": { + "votes": 195, + "value": 6.6, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 32, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 27, + "type": "user" + } + }, + "movieFile": { + "movieId": 127, + "relativePath": "Love Again (2023) Bluray-1080p.mkv", + "path": "/data/Love Again (2023)/Love Again (2023) Bluray-1080p.mkv", + "size": 2458951404, + "dateAdded": "2023-10-15T16:21:57Z", + "sceneName": "Love.Again.2023.BluRay.1080p.DTS-HD.MA.5.1.x264-MTeam", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1038", + "runTime": "1:44:22", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Love.Again.2023.BluRay.1080p.DTS-HD.MA.5.1.x264-MTeam/Love.Again.2023.BluRay.1080p.DTS-HD.MA.5.1.x264-MTeam.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "MTeam", + "edition": "", + "id": 122 + }, + "popularity": 33.839, + "id": 127 + }, + { + "title": "London Boulevard", + "originalTitle": "London Boulevard", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 190, + "title": "Telohranitel", + "id": 1247 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "london boulevard", + "sizeOnDisk": 923638961, + "status": "released", + "overview": "A parolee falls for a reclusive movie star while trying to evade a ruthless gangster.", + "inCinemas": "2010-11-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/128/poster.jpg?lastWrite=638329359325990045", + "remoteUrl": "https://image.tmdb.org/t/p/original/naQKmThKMtlur92CDgCP6b9aoQE.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/128/fanart.jpg?lastWrite=638329359333330449", + "remoteUrl": "https://image.tmdb.org/t/p/original/kuxLjp8ufk066O5YyNU116iVku7.jpg" + } + ], + "website": "http://www.ifcfilms.com/films/london-boulevard", + "year": 2010, + "hasFile": true, + "youTubeTrailerId": "Hsm9jQcq0Ms", + "studio": "London Boulevard", + "path": "/data/London Boulevard (2010)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/London Boulevard (2010)", + "runtime": 103, + "cleanTitle": "londonboulevard", + "imdbId": "tt1213648", + "tmdbId": 48838, + "titleSlug": "48838", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Crime" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 49838, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 665, + "value": 5.913, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 52, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 38, + "type": "user" + } + }, + "movieFile": { + "movieId": 128, + "relativePath": "London Boulevard (2010) Bluray-1080p.mkv", + "path": "/data/London Boulevard (2010)/London Boulevard (2010) Bluray-1080p.mkv", + "size": 923638961, + "dateAdded": "2023-10-18T03:42:00Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1040", + "runTime": "1:43:01", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 149 + }, + "popularity": 12.52, + "id": 128 + }, + { + "title": "White Men Can't Jump", + "originalTitle": "White Men Can't Jump", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "Homens Brancos Não Sabem Enterrar", + "id": 1248 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "Баскетбол - игра для черных", + "id": 1249 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "Les Blancs ne savent pas sauter", + "id": 1250 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "White Men Cant Jump - UR", + "id": 1251 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "Los Blancos no saben Saltar", + "id": 1252 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "Mustat donkkaa tykimmin", + "id": 1253 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 191, + "title": "덩크슛", + "id": 1254 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "white men can t jump", + "sizeOnDisk": 2188494021, + "status": "released", + "overview": "Two street basketball hustlers try to con each other, then team up for a bigger score.", + "inCinemas": "1992-03-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/129/poster.jpg?lastWrite=638329359321659806", + "remoteUrl": "https://image.tmdb.org/t/p/original/jnI05Z2Cm9ACEJo8FGen7tdHKLl.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/129/fanart.jpg?lastWrite=638329359328860203", + "remoteUrl": "https://image.tmdb.org/t/p/original/1ddbFAPdD0miHXuX7nIjcvtwDZK.jpg" + } + ], + "website": "", + "year": 1992, + "hasFile": true, + "youTubeTrailerId": "NHRvNAENaxk", + "studio": "20th Century Fox", + "path": "/data/White Men Can't Jump (1992)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/White Men Can't Jump (1992)", + "runtime": 115, + "cleanTitle": "whitemencantjump", + "imdbId": "tt0105812", + "tmdbId": 10158, + "titleSlug": "10158", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 95477, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 1197, + "value": 6.6, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 65, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 129, + "relativePath": "White Men Can't Jump (1992) Bluray-1080p.mkv", + "path": "/data/White Men Can't Jump (1992)/White Men Can't Jump (1992) Bluray-1080p.mkv", + "size": 2188494021, + "dateAdded": "2023-10-15T21:58:57Z", + "sceneName": "White.Men.Cant.Jump.1992.1080p.BluRay.X264-Obfuscated", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1040", + "runTime": "1:56:50", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "White.Men.Cant.Jump.1992.1080p.BluRay.X264-Obfuscated/White.Men.Cant.Jump.1992.1080p.BluRay.X264-Obfuscated.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 137 + }, + "popularity": 21.285, + "id": 129 + }, + { + "title": "White Men Can't Jump", + "originalTitle": "White Men Can't Jump", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 192, + "title": "Untitled White Men Can't Jump Reboot", + "id": 1272 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "white men can t jump", + "sizeOnDisk": 1327703753, + "status": "released", + "overview": "Seemingly opposite street hoopers, Jeremy, an injury prone former star, and Kamal, a has-been prodigy, team up to take one final shot at living out their dreams.", + "digitalRelease": "2023-05-19T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/130/poster.jpg?lastWrite=638329359327350119", + "remoteUrl": "https://image.tmdb.org/t/p/original/i83Ykng2HVY5EF043zMmeQdLUQY.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/130/fanart.jpg?lastWrite=638329359338880754", + "remoteUrl": "https://image.tmdb.org/t/p/original/oq597AkQ3AOcUO1RdaUS8N6fmrz.jpg" + } + ], + "website": "https://www.20thcenturystudios.com/movies/white-men-cant-jump", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "noxvcFVmG4E", + "studio": "20th Century Studios", + "path": "/data/White Men Can't Jump (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/White Men Can't Jump (2023)", + "runtime": 101, + "cleanTitle": "whitemencantjump", + "imdbId": "tt6436620", + "tmdbId": 920125, + "titleSlug": "920125", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 9155, + "value": 5.1, + "type": "user" + }, + "tmdb": { + "votes": 194, + "value": 6.582, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 40, + "type": "user" + } + }, + "movieFile": { + "movieId": 130, + "relativePath": "White Men Can't Jump (2023) WEBDL-1080p.mkv", + "path": "/data/White Men Can't Jump (2023)/White Men Can't Jump (2023) WEBDL-1080p.mkv", + "size": 1327703753, + "dateAdded": "2023-10-15T16:23:03Z", + "sceneName": "White.Men.Cant.Jump.2023.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-CMRG", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:41:14", + "scanType": "Progressive", + "subtitles": "eng/cze/dan/ger/gre/spa/spa/fin/fre/hun/ita/jpn/kor/dut/nor/pol/por/por/rum/slo/swe/tur/chi" + }, + "originalFilePath": "White.Men.Cant.Jump.2023.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-CMRG/White.Men.Cant.Jump.2023.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-CMRG.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "CMRG", + "edition": "", + "id": 123 + }, + "popularity": 40.687, + "id": 130 + }, + { + "title": "Mulan", + "originalTitle": "Mulan", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "花木蘭", + "id": 1265 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "វីរៈនារីមូឡាន", + "id": 1266 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "Мулан [Mulan]", + "id": 1267 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "มู่หลาน", + "id": 1268 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "木蘭", + "id": 1269 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "Mulan 2020", + "id": 1270 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 193, + "title": "Matchless Mulan", + "id": 1271 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "mulan", + "sizeOnDisk": 2851275449, + "status": "released", + "overview": "When the Emperor of China issues a decree that one man per family must serve in the Imperial Chinese Army to defend the country from Huns, Hua Mulan, the eldest daughter of an honored warrior, steps in to take the place of her ailing father. She is spirited, determined and quick on her feet. Disguised as a man by the name of Hua Jun, she is tested every step of the way and must harness her innermost strength and embrace her true potential.", + "inCinemas": "2020-09-04T00:00:00Z", + "physicalRelease": "2020-11-10T00:00:00Z", + "digitalRelease": "2020-09-04T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/131/poster.jpg?lastWrite=638331973219413586", + "remoteUrl": "https://image.tmdb.org/t/p/original/aKx1ARwG55zZ0GpRvU2WrGrCG9o.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/131/fanart.jpg?lastWrite=638329359340280831", + "remoteUrl": "https://image.tmdb.org/t/p/original/zMrk2G3XsnfYKiIp1NEfdtvDyBH.jpg" + } + ], + "website": "https://movies.disney.com/mulan-2020", + "year": 2020, + "hasFile": true, + "youTubeTrailerId": "R-eFm--k21c", + "studio": "Walt Disney Pictures", + "path": "/data/Mulan (2020)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Mulan (2020)", + "runtime": 115, + "cleanTitle": "mulan", + "imdbId": "tt4566758", + "tmdbId": 337401, + "titleSlug": "337401", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Adventure", + "Fantasy", + "Drama" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 155931, + "value": 5.8, + "type": "user" + }, + "tmdb": { + "votes": 6296, + "value": 6.903, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 66, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 131, + "relativePath": "Mulan (2020) Bluray-1080p.mkv", + "path": "/data/Mulan (2020)/Mulan (2020) Bluray-1080p.mkv", + "size": 2851275449, + "dateAdded": "2023-10-15T17:15:10Z", + "sceneName": "Mulan.2020.EAC3.DL.1080p.BluRay.x264-miHD+miHD-mulan.dts-1080", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "DTS", + "audioLanguages": "ger/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "1:55:11", + "scanType": "Progressive", + "subtitles": "ger/ger/eng/eng" + }, + "originalFilePath": "Mulan.2020.EAC3.DL.1080p.BluRay.x264-miHD+miHD-mulan.dts-1080/miHD-mulan.dts-1080.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 4, + "name": "German" + }, + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 129 + }, + "popularity": 58.988, + "id": 131 + }, + { + "title": "Tangled", + "originalTitle": "Tangled", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "tangled", + "sizeOnDisk": 965301915, + "status": "released", + "overview": "Katherine refuses to fall for playboy Drew Evan's tactical skills to seduce her, making him desire her more.", + "digitalRelease": "2022-02-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/132/poster.jpg?lastWrite=638329359325119997", + "remoteUrl": "https://image.tmdb.org/t/p/original/qyO0pA5VsPCes3jnzIpxAZhY9Sr.jpg" + } + ], + "website": "https://watch.passionflix.com/watch/f04ce3b2-ef27-4316-8531-b3a3a7a25b01", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "", + "studio": "PassionFlix", + "path": "/data/Tangled (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Tangled (2022)", + "runtime": 106, + "cleanTitle": "tangled", + "imdbId": "tt15173232", + "tmdbId": 924307, + "titleSlug": "924307", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 456, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 12, + "value": 7.5, + "type": "user" + } + }, + "movieFile": { + "movieId": 132, + "relativePath": "Tangled (2022) WEBDL-1080p.mkv", + "path": "/data/Tangled (2022)/Tangled (2022) WEBDL-1080p.mkv", + "size": 965301915, + "dateAdded": "2023-10-17T03:41:26Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 384000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1916x1076", + "runTime": "1:34:46", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 146 + }, + "popularity": 7.211, + "id": 132 + }, + { + "title": "Grease", + "originalTitle": "Grease", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "Grease – Schmiere", + "id": 1273 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "火爆浪子", + "id": 1274 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "Nos Tempos da Brilhantina", + "id": 1275 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "Grease Brillantina", + "id": 1276 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "กรีส", + "id": 1277 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 195, + "title": "Vaselina", + "id": 1278 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "grease", + "sizeOnDisk": 2281876796, + "status": "released", + "overview": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", + "inCinemas": "1978-07-07T00:00:00Z", + "physicalRelease": "2002-09-23T00:00:00Z", + "digitalRelease": "2002-03-19T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/133/poster.jpg?lastWrite=638336294263388878", + "remoteUrl": "https://image.tmdb.org/t/p/original/czVhhAaSBFpakur7U8pOIDV9NUG.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/133/fanart.jpg?lastWrite=638336294263598890", + "remoteUrl": "https://image.tmdb.org/t/p/original/pdhDFmVQSA0f5i5IL0gpWROjgZ5.jpg" + } + ], + "website": "", + "year": 1978, + "hasFile": true, + "youTubeTrailerId": "THd96gHV7Tg", + "studio": "Paramount", + "path": "/data/Grease (1978)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Grease (1978)", + "runtime": 110, + "cleanTitle": "grease", + "imdbId": "tt0077631", + "tmdbId": 621, + "titleSlug": "621", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Romance", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T03:05:29Z", + "ratings": { + "imdb": { + "votes": 292710, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 6775, + "value": 7.395, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 70, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 78, + "type": "user" + } + }, + "movieFile": { + "movieId": 133, + "relativePath": "Grease (1978) Bluray-1080p.mkv", + "path": "/data/Grease (1978)/Grease (1978) Bluray-1080p.mkv", + "size": 2281876796, + "dateAdded": "2023-10-15T21:48:51Z", + "sceneName": "Grease 1978 1080p UHD BluRay DD+5.1 x264-LoRD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:50:27", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/tur" + }, + "originalFilePath": "Grease 1978 1080p UHD BluRay DD+5.1 x264-LoRD/Grease 1978 1080p UHD BluRay DD+5.1 x264-LoRD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LoRD", + "edition": "", + "id": 135 + }, + "collection": { + "title": "Grease Collection", + "tmdbId": 86083, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 43.135, + "id": 133 + }, + { + "title": "Bullet Train", + "originalTitle": "Bullet Train", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "Швидкісний потяг", + "id": 1285 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "弾丸列車", + "id": 1286 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "Скоростной поезд", + "id": 1287 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "Быстрее пули", + "id": 1288 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "พลิกขบวนล่า นักฆ่ามหากาฬ", + "id": 1289 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "רכבת קליע", + "id": 1290 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 197, + "title": "子弹列车", + "id": 1291 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "bullet train", + "sizeOnDisk": 3716172873, + "status": "released", + "overview": "Unlucky assassin Ladybug is determined to do his job peacefully after one too many gigs gone off the rails. Fate, however, may have other plans, as Ladybug's latest mission puts him on a collision course with lethal adversaries from around the globe—all with connected, yet conflicting, objectives—on the world's fastest train.", + "inCinemas": "2022-08-03T00:00:00Z", + "physicalRelease": "2022-10-18T00:00:00Z", + "digitalRelease": "2022-09-27T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/134/poster.jpg?lastWrite=638329507484129720", + "remoteUrl": "https://image.tmdb.org/t/p/original/j8szC8OgrejDQjjMKSVXyaAjw3V.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/134/fanart.jpg?lastWrite=638329507484479739", + "remoteUrl": "https://image.tmdb.org/t/p/original/y2Ca1neKke2mGPMaHzlCNDVZqsK.jpg" + } + ], + "website": "https://www.bullettrainmovie.com", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "EGeJczJvWns", + "studio": "87North Productions", + "path": "/data/Bullet Train (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Bullet Train (2022)", + "runtime": 126, + "cleanTitle": "bullettrain", + "imdbId": "tt12593682", + "tmdbId": 718930, + "titleSlug": "718930", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Action", + "Comedy", + "Thriller" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 389396, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 4871, + "value": 7.5, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 49, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 54, + "type": "user" + } + }, + "movieFile": { + "movieId": 134, + "relativePath": "Bullet Train (2022) Bluray-1080p Proper REAL.mkv", + "path": "/data/Bullet Train (2022)/Bullet Train (2022) Bluray-1080p Proper REAL.mkv", + "size": 3716172873, + "dateAdded": "2023-10-15T07:36:40Z", + "sceneName": "Bullet.Train.2022.REAL.RERIP.1080p.BluRay.x264-BDOE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 1, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:06:31", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/eng/chi/chi/chi/fre/fre/kor/kor/por/por/spa/spa/tha/tha" + }, + "originalFilePath": "Bullet.Train.2022.REAL.RERIP.1080p.BluRay.x264-BDOE/Bullet.Train.2022.REAL.RERIP.1080p.BluRay.x264-BDOE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "BDOE", + "edition": "", + "id": 106 + }, + "popularity": 97.661, + "id": 134 + }, + { + "title": "Sweet Home Alabama", + "originalTitle": "Sweet Home Alabama", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "Doce Lar", + "id": 1299 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "No me olvides", + "id": 1300 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "אין כמו אלבמה", + "id": 1301 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "美麗蹺家人", + "id": 1302 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "Mindenütt nő", + "id": 1303 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "Fashion victime", + "id": 1304 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "情归阿拉巴马", + "id": 1305 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "Nunca me olvides", + "id": 1306 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 198, + "title": "KKK: Mergina iš Alabamos", + "id": 1307 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "sweet home alabama", + "sizeOnDisk": 1326932061, + "status": "released", + "overview": "New York fashion designer, Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But her past holds many secrets—including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.", + "inCinemas": "2002-09-26T00:00:00Z", + "physicalRelease": "2003-10-21T00:00:00Z", + "digitalRelease": "2005-09-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/135/poster.jpg?lastWrite=638329507485619802", + "remoteUrl": "https://image.tmdb.org/t/p/original/698cbxq0SRwCdOPG5Bwi7JDk12d.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/135/fanart.jpg?lastWrite=638329507485759809", + "remoteUrl": "https://image.tmdb.org/t/p/original/xE0ouu4yVA4fBojdHg2UkfvRxY4.jpg" + } + ], + "website": "", + "year": 2002, + "hasFile": true, + "youTubeTrailerId": "E2ySMc4iT04", + "studio": "Touchstone Pictures", + "path": "/data/Sweet Home Alabama (2002)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Sweet Home Alabama (2002)", + "runtime": 108, + "cleanTitle": "sweethomealabama", + "imdbId": "tt0256415", + "tmdbId": 11529, + "titleSlug": "11529", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Comedy", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 120224, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 1389, + "value": 6.387, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 45, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 38, + "type": "user" + } + }, + "movieFile": { + "movieId": 135, + "relativePath": "Sweet Home Alabama (2002) Bluray-1080p.mkv", + "path": "/data/Sweet Home Alabama (2002)/Sweet Home Alabama (2002) Bluray-1080p.mkv", + "size": 1326932061, + "dateAdded": "2023-10-15T07:26:07Z", + "sceneName": "Sweet.Home.Alabama.2002.1080p.BluRay.x264-CiNEFiLE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x816", + "runTime": "1:49:05", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Sweet.Home.Alabama.2002.1080p.BluRay.x264-CiNEFiLE/)2002( amabalA emoH teewS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "CiNEFiLE", + "edition": "", + "id": 104 + }, + "popularity": 18.972, + "id": 135 + }, + { + "title": "My Policeman", + "originalTitle": "My Policeman", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 199, + "title": "마이 폴리스맨", + "id": 1282 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 199, + "title": "ขอเพียงหัวใจได้มีรัก", + "id": 1283 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 199, + "title": "ぼくのじゅんさ", + "id": 1284 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "my policeman", + "sizeOnDisk": 1912235734, + "status": "released", + "overview": "In the late 1990s, the arrival of elderly invalid Patrick into Marion and Tom’s home triggers the exploration of seismic events from 40 years previous: the passionate relationship between Tom and Patrick at a time when homosexuality was illegal.", + "inCinemas": "2022-10-20T00:00:00Z", + "digitalRelease": "2022-11-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/136/poster.jpg?lastWrite=638329507483969711", + "remoteUrl": "https://image.tmdb.org/t/p/original/wdbiMjXd4CxPfCx4r4Jfy8cGec0.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/136/fanart.jpg?lastWrite=638329507484209724", + "remoteUrl": "https://image.tmdb.org/t/p/original/s5MLcxbdFqvIzTLNLU5yQFFYALR.jpg" + } + ], + "website": "https://www.amazon.com/dp/B09Y8SHDPD", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "xAEgWXOH1mY", + "studio": "Amazon Studios", + "path": "/data/My Policeman (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/My Policeman (2022)", + "runtime": 113, + "cleanTitle": "mypoliceman", + "imdbId": "tt13139228", + "tmdbId": 744114, + "titleSlug": "744114", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 20280, + "value": 6.5, + "type": "user" + }, + "tmdb": { + "votes": 581, + "value": 7.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 50, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 45, + "type": "user" + } + }, + "movieFile": { + "movieId": 136, + "relativePath": "My Policeman (2022) WEBDL-1080p.mkv", + "path": "/data/My Policeman (2022)/My Policeman (2022) WEBDL-1080p.mkv", + "size": 1912235734, + "dateAdded": "2023-10-15T07:16:35Z", + "sceneName": "My.Policeman.2022.MULTi.1080p.WEB.H264-LOST", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1040", + "runTime": "1:54:10", + "scanType": "Progressive", + "subtitles": "fre/fre/eng" + }, + "originalFilePath": "My.Policeman.2022.MULTi.1080p.WEB.H264-LOST/my.policeman.2022.multi.1080p.web.h264-lost.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "LOST", + "edition": "", + "id": 102 + }, + "popularity": 15.167, + "id": 136 + }, + { + "title": "Where the Crawdads Sing", + "originalTitle": "Where the Crawdads Sing", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "가재가 노래하는 곳", + "id": 1292 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "蝲蛄吟唱的地方", + "id": 1293 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "Suon villi laulu", + "id": 1294 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "La ragazza della palude", + "id": 1295 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "Bataklık Kızı", + "id": 1296 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "Um Lugar Bem Longe Daqui", + "id": 1297 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 200, + "title": "Xa Ngoài Kia Nơi Loài Tôm Hát", + "id": 1298 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "where crawdads sing", + "sizeOnDisk": 1911022507, + "status": "released", + "overview": "Abandoned by her family, Kya raises herself all alone in the marshes outside of her small town. When her former boyfriend is found dead, Kya is instantly branded by the local townspeople and law enforcement as the prime suspect for his murder.", + "inCinemas": "2022-07-14T00:00:00Z", + "physicalRelease": "2022-09-13T00:00:00Z", + "digitalRelease": "2022-09-06T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/137/poster.jpg?lastWrite=638329507484719752", + "remoteUrl": "https://image.tmdb.org/t/p/original/6h5OCqRnWH7Dcm4IeP4JypBdtuI.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/137/fanart.jpg?lastWrite=638329507485009768", + "remoteUrl": "https://image.tmdb.org/t/p/original/4js6A53tpvUbCEcUsKwuetRnVGb.jpg" + } + ], + "website": "https://www.sonypictures.com/movies/wherethecrawdadssing", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "hoSHYfCqgK0", + "studio": "3000 Pictures", + "path": "/data/Where the Crawdads Sing (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Where the Crawdads Sing (2022)", + "runtime": 126, + "cleanTitle": "wherecrawdadssing", + "imdbId": "tt9411972", + "tmdbId": 682507, + "titleSlug": "682507", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Mystery", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 108615, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 1334, + "value": 7.557, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 43, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 35, + "type": "user" + } + }, + "movieFile": { + "movieId": 137, + "relativePath": "Where the Crawdads Sing (2022) Bluray-1080p.mkv", + "path": "/data/Where the Crawdads Sing (2022)/Where the Crawdads Sing (2022) Bluray-1080p.mkv", + "size": 1911022507, + "dateAdded": "2023-10-15T07:21:36Z", + "sceneName": "Where.the.Crawdads.Sing.2022.1080p.BluRay.DDP5.1.x264-iFT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:05:25", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/spa" + }, + "originalFilePath": "Where.the.Crawdads.Sing.2022.1080p.BluRay.DDP5.1.x264-iFT/Where.the.Crawdads.Sing.2022.1080p.BluRay.DDP5.1.x264-iFT.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "iFT", + "edition": "", + "id": 103 + }, + "popularity": 35.543, + "id": 137 + }, + { + "title": "Emily", + "originalTitle": "Emily", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "emily", + "sizeOnDisk": 1966425415, + "status": "released", + "overview": "The imagined life of one of the world’s most famous authors, Emily Brontë, as she finds her voice and writes the literary classic Wuthering Heights. Explore the relationships that inspired her – her raw, passionate sisterhood with Charlotte and Anne; her first aching, forbidden love for Weightman and her care for her maverick brother whom she idolises.", + "inCinemas": "2022-10-14T00:00:00Z", + "physicalRelease": "2023-03-03T00:00:00Z", + "digitalRelease": "2023-02-23T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/138/poster.jpg?lastWrite=638329507485189778", + "remoteUrl": "https://image.tmdb.org/t/p/original/tgVBMIiJczfBWINRRd9yxE8ESln.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/138/fanart.jpg?lastWrite=638329507485519796", + "remoteUrl": "https://image.tmdb.org/t/p/original/wizYHZzSr0wJmB3Oo6LTFaP4HzY.jpg" + } + ], + "website": "https://www.warnerbros.co.uk/movies/emily", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "lCa5rx_8WCc", + "studio": "Tempo Productions", + "path": "/data/Emily (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Emily (2022)", + "runtime": 130, + "cleanTitle": "emily", + "imdbId": "tt12374656", + "tmdbId": 707103, + "titleSlug": "707103", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "History", + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 6914, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 144, + "value": 7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 138, + "relativePath": "Emily (2022) Bluray-1080p Proper.mkv", + "path": "/data/Emily (2022)/Emily (2022) Bluray-1080p Proper.mkv", + "size": 1966425415, + "dateAdded": "2023-10-15T07:30:41Z", + "sceneName": "Emily.2022.1080p.repack.BluRay.DDP5.1.x264-PTer", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:10:10", + "scanType": "Progressive", + "subtitles": "eng/eng/chi/chi/ger/ger" + }, + "originalFilePath": "Emily.2022.1080p.repack.BluRay.DDP5.1.x264-PTer/Emily.2022.1080p.repack.BluRay.DDP5.1.x264-PTer.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "PTer", + "edition": "", + "id": 105 + }, + "popularity": 11.953, + "id": 138 + }, + { + "title": "Something from Tiffany's", + "originalTitle": "Something from Tiffany's", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 202, + "title": "蒂芙尼的礼物", + "id": 1314 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 202, + "title": "Algo de Tiffany’s", + "id": 1315 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 202, + "title": "แหวนสื่อรักอลวน", + "id": 1316 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 202, + "title": "Weihnachtsgeschenke von Tiffany", + "id": 1317 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 202, + "title": "섬씽 프롬 티파니스", + "id": 1318 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "something from tiffany s", + "sizeOnDisk": 1444473639, + "status": "released", + "overview": "Doesn't every girl dream of getting... something from Tiffany's? On 5th Avenue in New York City, where nothing compares to the magic and excitement of the holidays, where the streets blaze with lights, and windows dazzle, a special box from Tiffany could change the course of a person's life. Or several lives. Rachel and Gary are happy enough but not quite ready for that big commitment. Ethan and Vanessa, the perfect picture, are just about to make it official. When a simple mix-up of gifts causes all of their paths to cross, it sets off a series of twists and unexpected discoveries that lead them where they're truly meant to be. Because love -- like life -- is full of surprises.", + "digitalRelease": "2022-12-08T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/139/poster.jpg?lastWrite=638329507487189888", + "remoteUrl": "https://image.tmdb.org/t/p/original/hzQV66zQHqWKRjLVphISNOqadIp.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/139/fanart.jpg?lastWrite=638329507487589910", + "remoteUrl": "https://image.tmdb.org/t/p/original/wug15qrt09vllipUKXr6SNf74QT.jpg" + } + ], + "website": "https://www.amazon.com/dp/B0B6D7N8WH", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "G5u8oySXNTk", + "studio": "Hello Sunshine", + "path": "/data/Something from Tiffany's (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Something from Tiffany's (2022)", + "runtime": 87, + "cleanTitle": "somethingfromtiffanys", + "imdbId": "tt16233952", + "tmdbId": 916053, + "titleSlug": "916053", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Romance", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 8473, + "value": 6.2, + "type": "user" + }, + "tmdb": { + "votes": 205, + "value": 6.9, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 46, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 139, + "relativePath": "Something from Tiffany's (2022) WEBDL-1080p.mkv", + "path": "/data/Something from Tiffany's (2022)/Something from Tiffany's (2022) WEBDL-1080p.mkv", + "size": 1444473639, + "dateAdded": "2023-10-15T07:43:59Z", + "sceneName": "Something.From.Tiffanys.2022.NORDiC.1080p.WEB-DL.H.264.DD+5.1.Atmos-TWA", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:27:42", + "scanType": "Progressive", + "subtitles": "dan/eng/fin/nor/swe" + }, + "originalFilePath": "Something.From.Tiffanys.2022.NORDiC.1080p.WEB-DL.H.264.DD+5.1.Atmos-TWA/Something.From.Tiffanys.2022.NORDiC.1080p.WEB-DL.H.264.DD+5.1.Atmos-TWA.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "TWA", + "edition": "", + "id": 108 + }, + "popularity": 14.804, + "id": 139 + }, + { + "title": "Roald Dahl's Matilda the Musical", + "originalTitle": "Roald Dahl's Matilda the Musical", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "Matilda the Musical", + "id": 1308 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "마틸다", + "id": 1309 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "Matilda", + "id": 1310 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "มาทิลด้า เดอะ มิวสิคัล", + "id": 1311 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "Matilda - La comédie musicale", + "id": 1312 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 203, + "title": "Matilda de Roald Dahl: O Musical", + "id": 1313 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "roald dahl s matilda musical", + "sizeOnDisk": 1422157004, + "status": "released", + "overview": "An extraordinary young girl discovers her superpower and summons the remarkable courage, against all odds, to help others change their stories, whilst also taking charge of her own destiny. Standing up for what's right, she's met with miraculous results.", + "inCinemas": "2022-11-25T00:00:00Z", + "digitalRelease": "2022-12-25T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/140/poster.jpg?lastWrite=638329507486319840", + "remoteUrl": "https://image.tmdb.org/t/p/original/ga8R3OiOMMgSvZ4cOj8x7prUNYZ.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/140/fanart.jpg?lastWrite=638329507486439847", + "remoteUrl": "https://image.tmdb.org/t/p/original/nWs0auTqn2UaFGfTKtUE5tlTeBu.jpg" + } + ], + "website": "https://www.sonypictures.co.uk/movies/roald-dahls-matilda-musical", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "mEEMbNS6fzY", + "studio": "Working Title Films", + "path": "/data/Roald Dahl's Matilda the Musical (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Roald Dahl's Matilda the Musical (2022)", + "runtime": 117, + "cleanTitle": "roalddahlsmatildamusical", + "imdbId": "tt3447590", + "tmdbId": 668482, + "titleSlug": "668482", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Family", + "Comedy", + "Fantasy" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 26194, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 640, + "value": 6.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 72, + "type": "user" + } + }, + "movieFile": { + "movieId": 140, + "relativePath": "Roald Dahl's Matilda the Musical (2022) Bluray-1080p Proper.mkv", + "path": "/data/Roald Dahl's Matilda the Musical (2022)/Roald Dahl's Matilda the Musical (2022) Bluray-1080p Proper.mkv", + "size": 1422157004, + "dateAdded": "2023-10-15T07:42:42Z", + "sceneName": "Roald.Dahl's.Matilda.the.Musical.2022.1080p.REPACK.Bluray.DD5.1.x264-playHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x960", + "runTime": "1:57:26", + "scanType": "Progressive", + "subtitles": "rum" + }, + "originalFilePath": "Roald.Dahl's.Matilda.the.Musical.2022.1080p.REPACK.Bluray.DD5.1.x264-playHD/Roald.Dahl's.Matilda.the.Musical.2022.1080p.REPACK.Bluray.DD5.1.x264-playHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playHD", + "edition": "", + "id": 107 + }, + "popularity": 62.407, + "id": 140 + }, + { + "title": "The Menu", + "originalTitle": "The Menu", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Ēdienkarte", + "id": 1340 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Menu", + "id": 1341 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Die Speisekarte", + "id": 1342 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "El menú", + "id": 1343 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Menüü", + "id": 1344 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "منوی غذا", + "id": 1345 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "صورت‌غذا", + "id": 1346 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "O Menu", + "id": 1347 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Менюто", + "id": 1348 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Le Menu", + "id": 1349 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Meni", + "id": 1350 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Το μενού", + "id": 1351 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "五腥級盛宴", + "id": 1352 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "A menü", + "id": 1353 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Ha'Tafrit", + "id": 1354 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "ザ・メニュー", + "id": 1355 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Meniu", + "id": 1356 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Меню", + "id": 1357 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "더 메뉴", + "id": 1358 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "五星饗魘", + "id": 1359 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Menyu", + "id": 1360 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "Thực Đơn Bí Ẩn", + "id": 1361 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 204, + "title": "ザ・メニュー:2022", + "id": 1362 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "menu", + "sizeOnDisk": 31676824850, + "status": "released", + "overview": "A young couple travels to a remote island to eat at an exclusive restaurant where the chef has prepared a lavish menu, with some shocking surprises.", + "inCinemas": "2022-11-17T00:00:00Z", + "physicalRelease": "2023-01-17T00:00:00Z", + "digitalRelease": "2023-01-03T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/141/poster.jpg?lastWrite=638329507495940369", + "remoteUrl": "https://image.tmdb.org/t/p/original/v31MsWhF9WFh7Qooq6xSBbmJxoG.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/141/fanart.jpg?lastWrite=638329507496300389", + "remoteUrl": "https://image.tmdb.org/t/p/original/mSyQoValhBsJdq3JNGXJww2Q5yL.jpg" + } + ], + "website": "https://searchlightpictures.com/the-menu", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "C_uTkUGcHv4", + "studio": "Hyperobject Industries", + "path": "/data/The Menu (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Menu (2022)", + "runtime": 107, + "cleanTitle": "themenu", + "imdbId": "tt9764362", + "tmdbId": 593643, + "titleSlug": "593643", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Horror", + "Thriller", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 354672, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 3770, + "value": 7.192, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 71, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 88, + "type": "user" + } + }, + "movieFile": { + "movieId": 141, + "relativePath": "The Menu (2022) Bluray-1080p.mkv", + "path": "/data/The Menu (2022)/The Menu (2022) Bluray-1080p.mkv", + "size": 31676824850, + "dateAdded": "2023-10-16T03:40:47Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h264", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:47:08", + "scanType": "Progressive", + "subtitles": "eng/fre/spa/fre/spa" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 139 + }, + "popularity": 47.289, + "id": 141 + }, + { + "title": "Persuasion", + "originalTitle": "Persuasion", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Persuasion: A Jane Austen Classic", + "id": 1319 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Uvjeravanje", + "id": 1320 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Jane Austen's Persuasion", + "id": 1321 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Viisasteleva sydän", + "id": 1322 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Övertalning", + "id": 1323 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Peitho", + "id": 1324 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Nagovor", + "id": 1325 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Tartózkodó érzelem", + "id": 1326 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Persuasione", + "id": 1327 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Perswazje", + "id": 1328 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Persuasiune", + "id": 1329 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 205, + "title": "Доводы рассудка", + "id": 1330 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "persuasion", + "sizeOnDisk": 1735299888, + "status": "released", + "overview": "Royal Navy captain Wentworth was haughtily turned down eight years ago as suitor of pompous baronet Sir Walter Elliot's daughter Anne, despite true love. Now he visits their former seaside country estate, rented by his brother-in-law, admiral Croft, so the financially stressed baronet can afford a fashionable, cheaper residence in trendy Bath. First the former lovers meet again on the estate, where they feel vibes again, but neither dares admit them until it seems too late.", + "physicalRelease": "2008-01-10T00:00:00Z", + "digitalRelease": "2007-04-01T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/142/poster.jpg?lastWrite=638334565996856655", + "remoteUrl": "https://image.tmdb.org/t/p/original/p0SAkCFD02wj2gekOvFilMjzs3j.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/142/fanart.jpg?lastWrite=638329507487819923", + "remoteUrl": "https://image.tmdb.org/t/p/original/wYuuvNzIcQPKGoK03JgPZ2IkB0A.jpg" + } + ], + "website": "", + "year": 2007, + "hasFile": true, + "youTubeTrailerId": "", + "studio": "Clerkenwell Films", + "path": "/data/Persuasion (2007)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Persuasion (2007)", + "runtime": 93, + "cleanTitle": "persuasion", + "imdbId": "tt0844330", + "tmdbId": 13949, + "titleSlug": "13949", + "rootFolderPath": "/data/", + "genres": [ + "Romance", + "Drama", + "TV Movie" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 16160, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 255, + "value": 7.3, + "type": "user" + } + }, + "movieFile": { + "movieId": 142, + "relativePath": "Persuasion (2007) Bluray-1080p.mkv", + "path": "/data/Persuasion (2007)/Persuasion (2007) Bluray-1080p.mkv", + "size": 1735299888, + "dateAdded": "2023-10-15T07:47:47Z", + "sceneName": "Persuasion.2007.1080p.BluRay.x264-TiTANS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1536000, + "audioChannels": 2, + "audioCodec": "DTS", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 25, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:32:45", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Persuasion.2007.1080p.BluRay.x264-TiTANS/persuasion.2007.1080p-titans.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "TiTANS", + "edition": "", + "id": 109 + }, + "popularity": 11.555, + "id": 142 + }, + { + "title": "Amsterdam", + "originalTitle": "Amsterdam", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 206, + "title": "Amsterdama", + "id": 1331 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 206, + "title": "阿姆斯特丹", + "id": 1332 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 206, + "title": "Амстердам", + "id": 1333 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "amsterdam", + "sizeOnDisk": 16243211621, + "status": "released", + "overview": "In the 1930s, three friends—a doctor, a nurse, and an attorney—witness a murder, become suspects themselves and uncover one of the most outrageous plots in American history.", + "inCinemas": "2022-10-06T00:00:00Z", + "physicalRelease": "2022-12-05T00:00:00Z", + "digitalRelease": "2022-11-11T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/143/poster.jpg?lastWrite=638329507488319950", + "remoteUrl": "https://image.tmdb.org/t/p/original/6sJcVzGCwrDCBMV0DU6eRzA2UxM.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/143/fanart.jpg?lastWrite=638329507489079992", + "remoteUrl": "https://image.tmdb.org/t/p/original/79PcXPpbDWql74h8Y00mNwbYMbS.jpg" + } + ], + "website": "https://www.20thcenturystudios.com/movies/amsterdam", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "GLs2xxM0e78", + "studio": "DreamCrew", + "path": "/data/Amsterdam (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Amsterdam (2022)", + "runtime": 134, + "cleanTitle": "amsterdam", + "imdbId": "tt10304142", + "tmdbId": 664469, + "titleSlug": "664469", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Mystery", + "History", + "Thriller" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 84779, + "value": 6.1, + "type": "user" + }, + "tmdb": { + "votes": 1172, + "value": 6.07, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 48, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 32, + "type": "user" + } + }, + "movieFile": { + "movieId": 143, + "relativePath": "Amsterdam (2022) Bluray-1080p Proper.mkv", + "path": "/data/Amsterdam (2022)/Amsterdam (2022) Bluray-1080p Proper.mkv", + "size": 16243211621, + "dateAdded": "2023-10-15T08:00:55Z", + "sceneName": "Amsterdam.2022.REPACK.1080p.BluRay.x264-KNiVES", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:14:14", + "scanType": "Progressive", + "subtitles": "eng/eng/fre/ger/ita/spa/dut/dan/fin/nor/swe/eng/fre/ger/ita/spa" + }, + "originalFilePath": "Amsterdam.2022.REPACK.1080p.BluRay.x264-KNiVES/Amsterdam.2022.REPACK.1080p.BluRay.x264-KNiVES.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "KNiVES", + "edition": "", + "id": 111 + }, + "popularity": 18.86, + "id": 143 + }, + { + "title": "One True Loves", + "originalTitle": "One True Loves", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 207, + "title": "L'amour en double", + "id": 1334 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 207, + "title": "Los Dos Amores De Mi Vida", + "id": 1335 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "one true loves", + "sizeOnDisk": 1008831644, + "status": "released", + "overview": "Emma and Jesse are living the perfect life together, until Jesse disappears in a tragic helicopter crash on their first wedding anniversary. Four years later, Emma has found happiness again and is about to marry her best friend when Jesse resurfaces, turning her world upside down and leaving her torn between two great loves.", + "inCinemas": "2023-04-13T00:00:00Z", + "physicalRelease": "2023-05-02T00:00:00Z", + "digitalRelease": "2023-04-14T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/144/poster.jpg?lastWrite=638329507494030264", + "remoteUrl": "https://image.tmdb.org/t/p/original/6MF3JvIZkluUijw9rvDKNqPT8kC.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/144/fanart.jpg?lastWrite=638329507494410285", + "remoteUrl": "https://image.tmdb.org/t/p/original/omkxkjj0IEhzOc9CBOwK2lrmHSk.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Ai4zkFmoNEc", + "studio": "Volition Media Partners", + "path": "/data/One True Loves (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/One True Loves (2023)", + "runtime": 100, + "cleanTitle": "onetrueloves", + "imdbId": "tt14770620", + "tmdbId": 846961, + "titleSlug": "846961", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Romance", + "Drama", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 1366, + "value": 5.4, + "type": "user" + }, + "tmdb": { + "votes": 44, + "value": 6.83, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 35, + "type": "user" + } + }, + "movieFile": { + "movieId": 144, + "relativePath": "One True Loves (2023) Bluray-1080p.mkv", + "path": "/data/One True Loves (2023)/One True Loves (2023) Bluray-1080p.mkv", + "size": 1008831644, + "dateAdded": "2023-10-16T03:40:48Z", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 5.1, + "audioCodec": "AAC", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1036", + "runTime": "1:40:25", + "scanType": "Progressive", + "subtitles": "" + }, + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 140 + }, + "popularity": 11.232, + "id": 144 + }, + { + "title": "What's Love Got to Do with It?", + "originalTitle": "What's Love Got to Do with It?", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 208, + "title": "O Que o Amor Tem a Ver Com Isso?", + "id": 1336 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 208, + "title": "Kāds mīlai ar to sakars?", + "id": 1337 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 208, + "title": "Et l'amour dans tout ça ?", + "id": 1338 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 208, + "title": "關我Love事?", + "id": 1339 + } + ], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "what s love got to do with it", + "sizeOnDisk": 1635941687, + "status": "released", + "overview": "Two childhood friends now in their thirties must decide whether to follow their heads or their hearts once the man decides to follow his parents' advice and enter into an arranged marriage in Pakistan.", + "inCinemas": "2023-01-26T00:00:00Z", + "physicalRelease": "2023-05-15T00:00:00Z", + "digitalRelease": "2023-05-26T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/145/poster.jpg?lastWrite=638329507495150326", + "remoteUrl": "https://image.tmdb.org/t/p/original/14fGGPAL5PQxuesjO4CFoDJEH5G.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/145/fanart.jpg?lastWrite=638329507495420341", + "remoteUrl": "https://image.tmdb.org/t/p/original/6CTHr1V5pi7PyZEyOyqmElsiHAO.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "WUKj-_e-rcY", + "studio": "Working Title Films", + "path": "/data/What's Love Got to Do with It! (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/What's Love Got to Do with It! (2023)", + "runtime": 109, + "cleanTitle": "whatslovegottodowithit", + "imdbId": "tt13430858", + "tmdbId": 800301, + "titleSlug": "800301", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Romance", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:27Z", + "ratings": { + "imdb": { + "votes": 7413, + "value": 6.3, + "type": "user" + }, + "tmdb": { + "votes": 118, + "value": 6.068, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 59, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 71, + "type": "user" + } + }, + "movieFile": { + "movieId": 145, + "relativePath": "What's Love Got to Do with It! (2023) Bluray-1080p Proper.mkv", + "path": "/data/What's Love Got to Do with It! (2023)/What's Love Got to Do with It! (2023) Bluray-1080p Proper.mkv", + "size": 1635941687, + "dateAdded": "2023-10-15T07:51:16Z", + "sceneName": "What's.Love.Got.to.Do.with.It.2022.REPACK.1080p.BluRay.DD+5.1.x264-playHD", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 2, + "real": 0, + "isRepack": true + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:49:08", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/rum" + }, + "originalFilePath": "What's.Love.Got.to.Do.with.It.2022.REPACK.1080p.BluRay.DD+5.1.x264-playHD/What's.Love.Got.to.Do.with.It.2022.REPACK.1080p.BluRay.DD+5.1.x264-playHD.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "playHD", + "edition": "", + "id": 110 + }, + "popularity": 19.601, + "id": 145 + }, + { + "title": "Plan 75", + "originalTitle": "PLAN 75", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 209, + "title": "岁月自珍", + "id": 1363 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 209, + "title": "七五计划", + "id": 1364 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "plan 75", + "sizeOnDisk": 1337939478, + "status": "released", + "overview": "In a Japan of the near future, the government program Plan 75 encourages senior citizens to be voluntarily euthanized to remedy a super-aged society. An elderly woman whose means of survival are vanishing, a pragmatic Plan 75 salesman, and a young Filipino laborer face choices of life and death.", + "inCinemas": "2022-06-17T00:00:00Z", + "physicalRelease": "2023-02-07T00:00:00Z", + "digitalRelease": "2023-01-12T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/146/poster.jpg?lastWrite=638329518258552858", + "remoteUrl": "https://image.tmdb.org/t/p/original/dWmmZayMOLC8zCz59TcwsiAjYmT.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/146/fanart.jpg?lastWrite=638329518258722868", + "remoteUrl": "https://image.tmdb.org/t/p/original/bBhAh2fVMttjgjQMxL6Jp6HNOsI.jpg" + } + ], + "website": "https://www.urbandistrib.com/films/plan-75/", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "K4VaoNCsj_0", + "studio": "Loaded Films", + "path": "/data/Plan 75 (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/Plan 75 (2022)", + "runtime": 113, + "cleanTitle": "plan75", + "imdbId": "tt19719904", + "tmdbId": 958487, + "titleSlug": "958487", + "rootFolderPath": "/data/", + "genres": [ + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-15T07:30:24Z", + "ratings": { + "imdb": { + "votes": 1616, + "value": 6.6, + "type": "user" + }, + "tmdb": { + "votes": 63, + "value": 6.7, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 70, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 93, + "type": "user" + } + }, + "movieFile": { + "movieId": 146, + "relativePath": "Plan 75 (2022) WEBRip-1080p.mkv", + "path": "/data/Plan 75 (2022)/Plan 75 (2022) WEBRip-1080p.mkv", + "size": 1337939478, + "dateAdded": "2023-10-15T15:41:19Z", + "sceneName": "PLAN.75.2022.JAPANESE.1080p.AMZN.WEBRip.DDP5.1.x264-NOGRP", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 15, + "name": "WEBRip-1080p", + "source": "webrip", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "jpn", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:52:44", + "scanType": "Progressive", + "subtitles": "eng/jpn" + }, + "originalFilePath": "PLAN.75.2022.JAPANESE.1080p.AMZN.WEBRip.DDP5.1.x264-NOGRP/PLAN.75.2022.JAPANESE.1080p.AMZN.WEBRip.DDP5.1.x264-NOGRP.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + } + ], + "releaseGroup": "NOGRP", + "edition": "", + "id": 114 + }, + "popularity": 12.566, + "id": 146 + }, + { + "title": "Afire", + "originalTitle": "Roter Himmel", + "originalLanguage": { + "id": 4, + "name": "German" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "Die Glücklichen", + "id": 1365 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "더 레드 스카이", + "id": 1366 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "Kızıl Gökyüzü", + "id": 1367 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "红色天空", + "id": 1368 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "The Lucky Ones", + "id": 1369 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "Wenn sie lieben", + "id": 1370 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "When They Love", + "id": 1371 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 210, + "title": "野火蔓延時", + "id": 1403 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "afire", + "sizeOnDisk": 835984669, + "status": "released", + "overview": "A seaside vacation takes an unexpected turn when Leon and Felix show up at Felix's family's holiday home to discover Nadja, a mysterious woman, already there. As an ever-encroaching forest fire threatens their well-being, relationships are tested and romances are kindled.", + "inCinemas": "2023-04-20T00:00:00Z", + "digitalRelease": "2023-08-25T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/147/poster.jpg?lastWrite=638329518561799513", + "remoteUrl": "https://image.tmdb.org/t/p/original/k8NYzD01zAUsdqocjhLXbO9BSS8.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/147/fanart.jpg?lastWrite=638329518562929575", + "remoteUrl": "https://image.tmdb.org/t/p/original/wbW4w4HvvzDavQCjUKtLMosyNn5.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "KzdO_J10kEg", + "studio": "Schramm Film", + "path": "/data/Afire (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/Afire (2023)", + "runtime": 103, + "cleanTitle": "afire", + "imdbId": "tt26440619", + "tmdbId": 900379, + "titleSlug": "900379", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:30:47Z", + "ratings": { + "imdb": { + "votes": 2666, + "value": 7.3, + "type": "user" + }, + "tmdb": { + "votes": 38, + "value": 7.342, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 85, + "type": "user" + } + }, + "movieFile": { + "movieId": 147, + "relativePath": "Afire (2023) WEBDL-1080p.mkv", + "path": "/data/Afire (2023)/Afire (2023) WEBDL-1080p.mkv", + "size": 835984669, + "dateAdded": "2023-10-15T15:43:18Z", + "sceneName": "Afire.2023.WEB-DL.1080p.Dream", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "AAC", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:42:41", + "scanType": "Progressive", + "subtitles": "" + }, + "originalFilePath": "Afire.2023.WEB-DL.1080p.Dream/Afire.2023.WEB-DL.1080p.Dream.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "edition": "", + "id": 115 + }, + "popularity": 10.5, + "id": 147 + }, + { + "title": "The Draughtsman's Contract", + "originalTitle": "The Draughtsman's Contract", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 211, + "title": "Meurtre dans Un Jardin Anglais", + "id": 1372 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 211, + "title": "I misteri del giardino di Compton House", + "id": 1373 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 211, + "title": "Tegnerens kontrakt", + "id": 1374 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "draughtsman s contract", + "sizeOnDisk": 1846741674, + "status": "released", + "overview": "A young artist is commissioned by the wife of a wealthy landowner to make a series of drawings of the estate while her husband is away.", + "inCinemas": "1982-11-12T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/148/poster.jpg?lastWrite=638329518733308933", + "remoteUrl": "https://image.tmdb.org/t/p/original/ljeTWR2kowGXijMc8LMuy72ULM3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/148/fanart.jpg?lastWrite=638332837493090750", + "remoteUrl": "https://image.tmdb.org/t/p/original/6cfgXv2jEDTwTNlJyrkgEtPzxqz.jpg" + } + ], + "website": "", + "year": 1982, + "hasFile": true, + "youTubeTrailerId": "CmCMumlxfX0", + "studio": "BFI", + "path": "/data/The Draughtsman's Contract (1982)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/The Draughtsman's Contract (1982)", + "runtime": 108, + "cleanTitle": "thedraughtsmanscontract", + "imdbId": "tt0083851", + "tmdbId": 10831, + "titleSlug": "10831", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Mystery", + "History" + ], + "tags": [], + "added": "2023-10-15T07:31:08Z", + "ratings": { + "imdb": { + "votes": 10718, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 200, + "value": 7.108, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 97, + "type": "user" + } + }, + "movieFile": { + "movieId": 148, + "relativePath": "The Draughtsman's Contract (1982) Bluray-1080p.mkv", + "path": "/data/The Draughtsman's Contract (1982)/The Draughtsman's Contract (1982) Bluray-1080p.mkv", + "size": 1846741674, + "dateAdded": "2023-10-15T15:53:54Z", + "sceneName": "The.Draughtsmans.Contract.1982.1080P.BLURAY.H264-UNDERTAKERS", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 2, + "audioCodec": "DTS-HD MA", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:47:48", + "scanType": "Progressive", + "subtitles": "fre/fre" + }, + "originalFilePath": "The.Draughtsmans.Contract.1982.1080P.BLURAY.H264-UNDERTAKERS/The.Draughtsmans.Contract.1982.1080P.BLURAY.H264-UNDERTAKERS.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "UNDERTAKERS", + "edition": "", + "id": 116 + }, + "popularity": 10.372, + "id": 148 + }, + { + "title": "Full Time", + "originalTitle": "À plein temps", + "originalLanguage": { + "id": 2, + "name": "French" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 212, + "title": "Être en mouvement", + "id": 1375 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 212, + "title": "Tatt av tiden", + "id": 1376 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 212, + "title": "全职", + "id": 1377 + } + ], + "secondaryYear": 2021, + "secondaryYearSourceId": 0, + "sortTitle": "full time", + "sizeOnDisk": 1378354749, + "status": "released", + "overview": "Julie finally gets an interview for a job where she can raise her children better only to run into a national transit strike.", + "inCinemas": "2022-03-16T00:00:00Z", + "physicalRelease": "2022-08-11T00:00:00Z", + "digitalRelease": "2022-07-16T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/149/poster.jpg?lastWrite=638329519036905608", + "remoteUrl": "https://image.tmdb.org/t/p/original/nH6MyOu4wdHnI3Im7PtpaqVRGQB.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/149/fanart.jpg?lastWrite=638329519037595646", + "remoteUrl": "https://image.tmdb.org/t/p/original/gr2KgfjOfCA4lxCH7yk5bgPIMkp.jpg" + } + ], + "website": "", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "ax65fImmTyI", + "studio": "Novoprod", + "path": "/data/Full Time (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/Full Time (2022)", + "runtime": 87, + "cleanTitle": "fulltime", + "imdbId": "tt13269580", + "tmdbId": 833417, + "titleSlug": "833417", + "rootFolderPath": "/data/", + "genres": [ + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-15T07:31:29Z", + "ratings": { + "imdb": { + "votes": 3695, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 208, + "value": 7.1, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 83, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 98, + "type": "user" + } + }, + "movieFile": { + "movieId": 149, + "relativePath": "Full Time (2022) Bluray-1080p.mkv", + "path": "/data/Full Time (2022)/Full Time (2022) Bluray-1080p.mkv", + "size": 1378354749, + "dateAdded": "2023-10-15T15:58:52Z", + "sceneName": "Full.Time.2021.1080p.BluRay.DDP.5.1.x264-c0kE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:27:44", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "Full.Time.2021.1080p.BluRay.DDP.5.1.x264-c0kE/Full.Time.2021.1080p.BluRay.DDP.5.1.x264-c0kE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "c0kE", + "edition": "", + "id": 117 + }, + "popularity": 7.618, + "id": 149 + }, + { + "title": "Showing Up", + "originalTitle": "Showing Up", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 213, + "title": "開展在即", + "id": 1415 + } + ], + "secondaryYear": 2022, + "secondaryYearSourceId": 0, + "sortTitle": "showing up", + "sizeOnDisk": 1409919987, + "status": "released", + "overview": "In the days leading up to a possibly career-changing exhibition, a sculptor navigates her relationships with family, friends, and colleagues.", + "inCinemas": "2023-04-14T00:00:00Z", + "physicalRelease": "2023-09-05T00:00:00Z", + "digitalRelease": "2023-06-06T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/150/poster.jpg?lastWrite=638329519143471462", + "remoteUrl": "https://image.tmdb.org/t/p/original/iJw55oTb2MlG4NWjq3sbIFUVU76.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/150/fanart.jpg?lastWrite=638329519143971489", + "remoteUrl": "https://image.tmdb.org/t/p/original/wFZ0b8r8pGLubLUFO2SoNGzyRbp.jpg" + } + ], + "website": "https://a24films.com/films/showing-up", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "wELPTxJ2YZY", + "studio": "A24", + "path": "/data/Showing Up (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/Showing Up (2023)", + "runtime": 108, + "cleanTitle": "showingup", + "imdbId": "tt13923216", + "tmdbId": 790416, + "titleSlug": "790416", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-15T07:31:50Z", + "ratings": { + "imdb": { + "votes": 3006, + "value": 6.4, + "type": "user" + }, + "tmdb": { + "votes": 32, + "value": 5.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 85, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 88, + "type": "user" + } + }, + "movieFile": { + "movieId": 150, + "relativePath": "Showing Up (2023) WEBDL-1080p.mkv", + "path": "/data/Showing Up (2023)/Showing Up (2023) WEBDL-1080p.mkv", + "size": 1409919987, + "dateAdded": "2023-10-15T16:02:52Z", + "sceneName": "Showing.Up.2022.1080p.WEB.H264-SLOT", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1918x1078", + "runTime": "1:47:06", + "scanType": "Progressive", + "subtitles": "eng/spa" + }, + "originalFilePath": "Showing.Up.2022.1080p.WEB.H264-SLOT/showing.up.2022.1080p.web.h264-slot.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SLOT", + "edition": "", + "id": 118 + }, + "popularity": 10.977, + "id": 150 + }, + { + "title": "Ford v Ferrari", + "originalTitle": "Ford v Ferrari", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "Форд проти Феррарі", + "id": 1385 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "Форд против Феррари", + "id": 1386 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "Дерзкий вызов", + "id": 1387 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "Ford v Ferrari: Cuộc Đua Lịch Sử", + "id": 1388 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "FvF", + "id": 1389 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "Le Mans '66", + "id": 1390 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 214, + "title": "フォードvsフェラーリ:2019", + "id": 1391 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "ford v ferrari", + "sizeOnDisk": 23149577549, + "status": "released", + "overview": "American car designer Carroll Shelby and the British-born driver Ken Miles work together to battle corporate interference, the laws of physics, and their own personal demons to build a revolutionary race car for Ford Motor Company and take on the dominating race cars of Enzo Ferrari at the 24 Hours of Le Mans in France in 1966.", + "inCinemas": "2019-11-13T00:00:00Z", + "physicalRelease": "2020-03-11T00:00:00Z", + "digitalRelease": "2020-01-28T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/151/poster.jpg?lastWrite=638333429469539238", + "remoteUrl": "https://image.tmdb.org/t/p/original/dR1Ju50iudrOh3YgfwkAU1g2HZe.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/151/fanart.jpg?lastWrite=638333429469709248", + "remoteUrl": "https://image.tmdb.org/t/p/original/ydmZIafp66mHABs3QJDwvjRgZfE.jpg" + } + ], + "website": "https://www.foxmovies.com/movies/ford-v-ferrari", + "year": 2019, + "hasFile": true, + "youTubeTrailerId": "I3h9Z89U9ZA", + "studio": "20th Century Fox", + "path": "/data/Ford v Ferrari (2019)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Ford v Ferrari (2019)", + "runtime": 153, + "cleanTitle": "fordvferrari", + "imdbId": "tt1950186", + "tmdbId": 359724, + "titleSlug": "359724", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Drama", + "Action", + "History" + ], + "tags": [], + "added": "2023-10-19T20:09:06Z", + "ratings": { + "imdb": { + "votes": 439460, + "value": 8.1, + "type": "user" + }, + "tmdb": { + "votes": 7012, + "value": 8.011, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 81, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 92, + "type": "user" + } + }, + "movieFile": { + "movieId": 151, + "relativePath": "Ford v Ferrari (2019) Bluray-1080p.mkv", + "path": "/data/Ford v Ferrari (2019)/Ford v Ferrari (2019) Bluray-1080p.mkv", + "size": 23149577549, + "dateAdded": "2023-10-19T20:26:33Z", + "sceneName": "Ford.v.Ferrari.2019.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 0, + "audioChannels": 7.1, + "audioCodec": "TrueHD Atmos", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "x264", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:32:35", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/eng/chi/chi/fre/jpn/kor/spa" + }, + "originalFilePath": "Ford.v.Ferrari.2019.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ/Ford.v.Ferrari.2019.1080p.BluRay.x264.TrueHD.7.1.Atmos-SWTYBLZ.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SWTYBLZ", + "edition": "", + "id": 150 + }, + "popularity": 60.515, + "id": 151 + }, + { + "title": "They Cloned Tyrone", + "originalTitle": "They Cloned Tyrone", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 215, + "title": "他们克隆了蒂龙", + "id": 1395 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "they cloned tyrone", + "sizeOnDisk": 2336403825, + "status": "released", + "overview": "A series of eerie events thrusts an unlikely trio onto the trail of a nefarious government conspiracy lurking directly beneath their neighborhood.", + "digitalRelease": "2023-07-21T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/152/poster.jpg?lastWrite=638334081075096382", + "remoteUrl": "https://image.tmdb.org/t/p/original/omSa3oafsV7i5776FLFoOBI2Ho9.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/152/fanart.jpg?lastWrite=638334081075386398", + "remoteUrl": "https://image.tmdb.org/t/p/original/av2wp3R978lp1ZyCOHDHOh4FINM.jpg" + } + ], + "website": "https://www.netflix.com/title/80996324", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "2S3M1xFVdVg", + "studio": "MACRO", + "path": "/data/They Cloned Tyrone (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/They Cloned Tyrone (2023)", + "runtime": 122, + "cleanTitle": "theyclonedtyrone", + "imdbId": "tt9873892", + "tmdbId": 736769, + "titleSlug": "736769", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Comedy", + "Science Fiction", + "Mystery" + ], + "tags": [], + "added": "2023-10-20T14:15:07Z", + "ratings": { + "imdb": { + "votes": 30813, + "value": 6.6, + "type": "user" + }, + "tmdb": { + "votes": 357, + "value": 6.768, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 74, + "type": "user" + } + }, + "movieFile": { + "movieId": 152, + "relativePath": "They Cloned Tyrone (2023) WEBDL-1080p.mkv", + "path": "/data/They Cloned Tyrone (2023)/They Cloned Tyrone (2023) WEBDL-1080p.mkv", + "size": 2336403825, + "dateAdded": "2023-10-20T14:34:34Z", + "sceneName": "They.Cloned.Tyrone.2023.MULTI.1080p.WEB.x264-HiggsBoson", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "fre/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:04:10", + "scanType": "Progressive", + "subtitles": "fre/fre/fre/fre" + }, + "originalFilePath": "They.Cloned.Tyrone.2023.MULTI.1080p.WEB.x264-HiggsBoson/they.cloned.tyrone.2023.multi.1080p.web.x264-higgsboson.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 2, + "name": "French" + }, + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "HiggsBoson", + "edition": "", + "id": 152 + }, + "popularity": 32.841, + "id": 152 + }, + { + "title": "Fremont", + "originalTitle": "Fremont", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [], + "secondaryYearSourceId": 0, + "sortTitle": "fremont", + "sizeOnDisk": 805175222, + "status": "released", + "overview": "Donya, a lonely Afghan refugee and former translator, spends her twenties drifting through a meager existence in Fremont, California. Shuttling between her job writing fortunes for a fortune cookie factory and sessions with her eccentric therapist, Donya suffers from insomnia and survivor's guilt over those still left behind in Kabul as she desperately searches for love.", + "inCinemas": "2023-09-14T00:00:00Z", + "digitalRelease": "2023-10-10T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/153/poster.jpg?lastWrite=638334081080816691", + "remoteUrl": "https://image.tmdb.org/t/p/original/wJZovPXB3SWL1BL1GyLrCRrk4z9.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/153/fanart.jpg?lastWrite=638334081080966699", + "remoteUrl": "https://image.tmdb.org/t/p/original/jai2IePHlNTKwCNoOM5HQgMVUaj.jpg" + } + ], + "website": "https://www.musicboxfilms.com/film/fremont/", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "wu8CzVfik-4", + "studio": "Butimar Productions", + "path": "/data/Fremont (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Fremont (2023)", + "runtime": 92, + "cleanTitle": "fremont", + "imdbId": "tt8591526", + "tmdbId": 1048522, + "titleSlug": "1048522", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-20T14:15:07Z", + "ratings": { + "imdb": { + "votes": 646, + "value": 7.2, + "type": "user" + }, + "tmdb": { + "votes": 10, + "value": 5.4, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 74, + "type": "user" + } + }, + "movieFile": { + "movieId": 153, + "relativePath": "Fremont (2023) WEBDL-1080p.mkv", + "path": "/data/Fremont (2023)/Fremont (2023) WEBDL-1080p.mkv", + "size": 805175222, + "dateAdded": "2023-10-20T14:27:03Z", + "sceneName": "Fremont.2023.1080p.WEB-DL.DDP2.0.H264-AOC", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 224000, + "audioChannels": 2, + "audioCodec": "EAC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "1:31:53", + "scanType": "Progressive", + "subtitles": "eng/eng" + }, + "originalFilePath": "Fremont.2023.1080p.WEB-DL.DDP2.0.H264-AOC/Fremont.2023.1080p.WEB-DL.DDP2.0.H264-AOC.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "AOC", + "edition": "", + "id": 151 + }, + "popularity": 7.847, + "id": 153 + }, + { + "title": "Full River Red", + "originalTitle": "满江红", + "originalLanguage": { + "id": 10, + "name": "Chinese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 217, + "title": "精忠报国", + "id": 1396 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "full river red", + "sizeOnDisk": 6966333454, + "status": "released", + "overview": "During China's Song Dynasty, A mysterious murder occurs at Chancellor Quin Hui's residence after meeting delegates from the neighboring Jin Dynasty. The members become embroiled not just in a murder mystery, but a larger conspiracy concerning the fate of the empire.", + "inCinemas": "2023-01-22T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/154/poster.jpg?lastWrite=638334081075436401", + "remoteUrl": "https://image.tmdb.org/t/p/original/kOoxkXTYTi4OipM5G97gK9jnYIk.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/154/fanart.jpg?lastWrite=638334081075596409", + "remoteUrl": "https://image.tmdb.org/t/p/original/hcWXnOL7ScXpFQVjJruYUODeQxX.jpg" + } + ], + "website": "", + "year": 2023, + "hasFile": true, + "youTubeTrailerId": "Ju3iH89GeUI", + "studio": "Huanxi Media Group", + "path": "/data/Full River Red (2023)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Full River Red (2023)", + "runtime": 157, + "cleanTitle": "fullriverred", + "imdbId": "tt21148018", + "tmdbId": 1066298, + "titleSlug": "1066298", + "rootFolderPath": "/data/", + "certification": "NR", + "genres": [ + "Mystery", + "Comedy", + "Thriller" + ], + "tags": [], + "added": "2023-10-20T14:15:07Z", + "ratings": { + "imdb": { + "votes": 2589, + "value": 6.5, + "type": "user" + }, + "tmdb": { + "votes": 96, + "value": 5.8, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 75, + "type": "user" + } + }, + "movieFile": { + "movieId": 154, + "relativePath": "Full River Red (2023) Bluray-1080p.mkv", + "path": "/data/Full River Red (2023)/Full River Red (2023) Bluray-1080p.mkv", + "size": 6966333454, + "dateAdded": "2023-10-20T14:55:34Z", + "sceneName": "Full.River.Red.2023.BDRip.1080p.HEVC.EAC3.CHINESE.[E9E70B7B]", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "chi", + "audioStreamCount": 1, + "videoBitDepth": 10, + "videoBitrate": 0, + "videoCodec": "x265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "2:37:01", + "scanType": "Progressive", + "subtitles": "chi/eng" + }, + "originalFilePath": "Full.River.Red.2023.BDRip.1080p.HEVC.EAC3.CHINESE.[E9E70B7B]/Full.River.Red.2023.BDRip.1080p.HEVC.EAC3.CHINESE.[E9E70B7B].mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 10, + "name": "Chinese" + } + ], + "edition": "", + "id": 153 + }, + "popularity": 26.002, + "id": 154 + }, + { + "title": "We Made a Beautiful Bouquet", + "originalTitle": "花束みたいな恋をした", + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "她和他的恋爱花期", + "id": 1397 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "I Fell in Love Like a Flower Bouquet", + "id": 1398 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "เมื่อรักเคยงดงามดั่งช่อดอกไม้", + "id": 1399 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "Hanatabamitai na koi o shita", + "id": 1400 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "Hua Shu Mitainalian Woshita", + "id": 1401 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 218, + "title": "ما یک دسته گل زیبا درست کردیم", + "id": 1402 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "we made beautiful bouquet", + "sizeOnDisk": 1869111883, + "status": "released", + "overview": "Two people meet each other after missing the last train home, leading to a beautiful relationship over five years.", + "inCinemas": "2021-01-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/155/poster.jpg?lastWrite=638334515871737142", + "remoteUrl": "https://image.tmdb.org/t/p/original/73EMVPCQ3G2mTLgXJrFuOgxJfkp.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/155/fanart.jpg?lastWrite=638334515871947154", + "remoteUrl": "https://image.tmdb.org/t/p/original/893hqH2OLQo1Vv0dwHtQmrfP3fT.jpg" + } + ], + "website": "https://www.tbscontents.com/en/program/wemadeabeautifulbouquet", + "year": 2021, + "hasFile": true, + "youTubeTrailerId": "l4BWZ8lwzYs", + "studio": "Little More", + "path": "/data/We Made a Beautiful Bouquet (2021)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/We Made a Beautiful Bouquet (2021)", + "runtime": 124, + "cleanTitle": "wemadebeautifulbouquet", + "imdbId": "tt11219254", + "tmdbId": 695932, + "titleSlug": "695932", + "rootFolderPath": "/data/", + "genres": [ + "Romance", + "Drama" + ], + "tags": [], + "added": "2023-10-21T02:19:46Z", + "ratings": { + "imdb": { + "votes": 3101, + "value": 7.4, + "type": "user" + }, + "tmdb": { + "votes": 61, + "value": 7.7, + "type": "user" + } + }, + "movieFile": { + "movieId": 155, + "relativePath": "We Made a Beautiful Bouquet (2021) Bluray-1080p.mkv", + "path": "/data/We Made a Beautiful Bouquet (2021)/We Made a Beautiful Bouquet (2021) Bluray-1080p.mkv", + "size": 1869111883, + "dateAdded": "2023-10-21T03:15:13Z", + "sceneName": "We.Made.a.Beautiful.Bouquet.2021.1080p.BluRay.DD+5.1.x264-c0kE", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 1024000, + "audioChannels": 5.1, + "audioCodec": "EAC3", + "audioLanguages": "jpn", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1038", + "runTime": "2:03:31", + "scanType": "Progressive", + "subtitles": "eng/kor" + }, + "originalFilePath": "We.Made.a.Beautiful.Bouquet.2021.1080p.BluRay.DD+5.1.x264-c0kE/We.Made.a.Beautiful.Bouquet.2021.1080p.BluRay.DD+5.1.x264-c0kE.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 8, + "name": "Japanese" + } + ], + "releaseGroup": "c0kE", + "edition": "", + "id": 154 + }, + "popularity": 11.761, + "id": 155 + }, + { + "title": "Enola Holmes 2", + "originalTitle": "Enola Holmes 2", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "Енола Холмс 2", + "id": 1417 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "Енола Голмс 2", + "id": 1418 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "เอโนลา โฮล์มส์ 2", + "id": 1419 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "天才少女福尔摩斯2", + "id": 1420 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "에놀라 홈즈 2", + "id": 1421 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "福尔摩斯小姐:伦敦厄运", + "id": 1422 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 219, + "title": "Энола Холмс 2", + "id": 1423 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "enola holmes 2", + "sizeOnDisk": 2311342825, + "status": "released", + "overview": "Now a detective-for-hire like her infamous brother, Enola Holmes takes on her first official case to find a missing girl, as the sparks of a dangerous conspiracy ignite a mystery that requires the help of friends — and Sherlock himself — to unravel.", + "inCinemas": "2022-11-04T00:00:00Z", + "digitalRelease": "2022-11-04T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/156/poster.jpg?lastWrite=638336430169226144", + "remoteUrl": "https://image.tmdb.org/t/p/original/tegBpjM5ODoYoM1NjaiHVLEA0QM.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/156/fanart.jpg?lastWrite=638336430172606327", + "remoteUrl": "https://image.tmdb.org/t/p/original/n2OaA7Je0fgcVnfJM7xDJoPny7x.jpg" + } + ], + "website": "https://www.netflix.com/title/81406219", + "year": 2022, + "hasFile": true, + "youTubeTrailerId": "0DIftINqIjo", + "studio": "Legendary Pictures", + "path": "/data/Enola Holmes 2 (2022)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "announced", + "isAvailable": true, + "folderName": "/data/Enola Holmes 2 (2022)", + "runtime": 129, + "cleanTitle": "enolaholmes2", + "imdbId": "tt14641788", + "tmdbId": 829280, + "titleSlug": "829280", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Adventure", + "Mystery", + "Comedy" + ], + "tags": [], + "added": "2023-10-23T07:30:16Z", + "ratings": { + "imdb": { + "votes": 92957, + "value": 6.8, + "type": "user" + }, + "tmdb": { + "votes": 2176, + "value": 7.547, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 64, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 93, + "type": "user" + } + }, + "movieFile": { + "movieId": 156, + "relativePath": "Enola Holmes 2 (2022) WEBDL-1080p.mkv", + "path": "/data/Enola Holmes 2 (2022)/Enola Holmes 2 (2022) WEBDL-1080p.mkv", + "size": 2311342825, + "dateAdded": "2023-10-23T07:34:16Z", + "sceneName": "Enola.Holmes.2.2022.1080p.WEB-DL.DUAL.x264-AC3", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 3, + "name": "WEBDL-1080p", + "source": "webdl", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 768000, + "audioChannels": 5.1, + "audioCodec": "EAC3 Atmos", + "audioLanguages": "eng/tur", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 24, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x1080", + "runTime": "2:10:57", + "scanType": "Progressive", + "subtitles": "eng/tur/tur" + }, + "originalFilePath": "Enola.Holmes.2.2022.1080p.WEB-DL.DUAL.x264-AC3/Enola.Holmes.2.2022.1080p.WEB-DL.DUAL.x264-AC3.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + }, + { + "id": 17, + "name": "Turkish" + } + ], + "releaseGroup": "AC3", + "edition": "", + "id": 155 + }, + "collection": { + "title": "Enola Holmes Collection", + "tmdbId": 829314, + "monitored": false, + "qualityProfileId": 0, + "searchOnAdd": false, + "minimumAvailability": "tba", + "images": [], + "added": "0001-01-01T00:00:00Z", + "tags": [], + "id": 0 + }, + "popularity": 38.448, + "id": 156 + }, + { + "title": "The Lookout", + "originalTitle": "The Lookout", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 221, + "title": "Обман", + "id": 1429 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 221, + "title": "El vigía", + "id": 1430 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 221, + "title": "A Kulcsfigura", + "id": 1431 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 221, + "title": "Die Regeln der Gewalt", + "id": 1432 + } + ], + "secondaryYearSourceId": 0, + "sortTitle": "lookout", + "sizeOnDisk": 1333309627, + "status": "released", + "overview": "Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist.", + "inCinemas": "2007-03-09T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/157/poster.jpg?lastWrite=638336910025580892", + "remoteUrl": "https://image.tmdb.org/t/p/original/wTYyXCoIBy2TDxetoGS4Sc0VBP1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/157/fanart.jpg?lastWrite=638336910025680897", + "remoteUrl": "https://image.tmdb.org/t/p/original/cv43gJEuiwgclsA1pV0mXXEcdyK.jpg" + } + ], + "website": "http://video.movies.go.com/thelookout/", + "year": 2007, + "hasFile": true, + "youTubeTrailerId": "e9oyHy_ZigY", + "studio": "Spyglass Entertainment", + "path": "/data/The Lookout (2007)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/The Lookout (2007)", + "runtime": 99, + "cleanTitle": "thelookout", + "imdbId": "tt0427470", + "tmdbId": 8270, + "titleSlug": "8270", + "rootFolderPath": "/data/", + "certification": "R", + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-23T20:50:01Z", + "ratings": { + "imdb": { + "votes": 60062, + "value": 7, + "type": "user" + }, + "tmdb": { + "votes": 577, + "value": 6.6, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 73, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 87, + "type": "user" + } + }, + "movieFile": { + "movieId": 157, + "relativePath": "The Lookout (2007) Bluray-1080p.mkv", + "path": "/data/The Lookout (2007)/The Lookout (2007) Bluray-1080p.mkv", + "size": 1333309627, + "dateAdded": "2023-10-23T21:16:27Z", + "sceneName": "The.Lookout.2007.1080p.BluRay.DD5.1.x264-EbP", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng/eng", + "audioStreamCount": 2, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x800", + "runTime": "1:38:40", + "scanType": "Progressive", + "subtitles": "eng" + }, + "originalFilePath": "The.Lookout.2007.1080p.BluRay.DD5.1.x264-EbP/The.Lookout.2007.1080p.BluRay.DD5.1.x264-EbP.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "EbP", + "edition": "", + "id": 157 + }, + "popularity": 10.807, + "id": 157 + }, + { + "title": "Bilal: A New Breed of Hero", + "originalTitle": "Bilal: A New Breed of Hero", + "originalLanguage": { + "id": 1, + "name": "English" + }, + "alternateTitles": [ + { + "sourceType": "tmdb", + "movieMetadataId": 222, + "title": "Bilal: A Legend Breaks Free", + "id": 1424 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 222, + "title": "Bilal", + "id": 1425 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 222, + "title": "Bilal : La Naissance d'une légende", + "id": 1426 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 222, + "title": "슬레이브 워", + "id": 1427 + }, + { + "sourceType": "tmdb", + "movieMetadataId": 222, + "title": "노예 전쟁", + "id": 1428 + } + ], + "secondaryYear": 2015, + "secondaryYearSourceId": 0, + "sortTitle": "bilal new breed hero", + "sizeOnDisk": 1337056092, + "status": "released", + "overview": "A thousand years ago, one boy with a dream of becoming a great warrior is abducted with his sister and taken to a land far away from home. Thrown into a world where greed and injustice rule all, Bilal finds the courage to raise his voice and make a change. Inspired by true events, this is a story of a real hero who earned his remembrance in time and history.", + "inCinemas": "2016-09-08T00:00:00Z", + "digitalRelease": "2018-11-29T00:00:00Z", + "images": [ + { + "coverType": "poster", + "url": "/MediaCover/158/poster.jpg?lastWrite=638336910025640895", + "remoteUrl": "https://image.tmdb.org/t/p/original/ncWuEzxnXqssxRfHghZuUAIezCo.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/158/fanart.jpg?lastWrite=638336910025750901", + "remoteUrl": "https://image.tmdb.org/t/p/original/tBY8hN4inRzOwUwfvhBUHo00pIQ.jpg" + } + ], + "website": "http://www.bilalmovie.com/", + "year": 2016, + "hasFile": true, + "youTubeTrailerId": "memYLNa-7wQ", + "studio": "Barajoun Entertainment", + "path": "/data/Bilal A New Breed of Hero (2016)", + "qualityProfileId": 6, + "monitored": true, + "minimumAvailability": "released", + "isAvailable": true, + "folderName": "/data/Bilal A New Breed of Hero (2016)", + "runtime": 105, + "cleanTitle": "bilalnewbreedhero", + "imdbId": "tt3576728", + "tmdbId": 332718, + "titleSlug": "332718", + "rootFolderPath": "/data/", + "certification": "PG-13", + "genres": [ + "Action", + "Adventure", + "Animation" + ], + "tags": [], + "added": "2023-10-23T20:50:01Z", + "ratings": { + "imdb": { + "votes": 19089, + "value": 7.6, + "type": "user" + }, + "tmdb": { + "votes": 139, + "value": 6.856, + "type": "user" + }, + "metacritic": { + "votes": 0, + "value": 52, + "type": "user" + }, + "rottenTomatoes": { + "votes": 0, + "value": 59, + "type": "user" + } + }, + "movieFile": { + "movieId": 158, + "relativePath": "Bilal A New Breed of Hero (2016) Bluray-1080p.mkv", + "path": "/data/Bilal A New Breed of Hero (2016)/Bilal A New Breed of Hero (2016) Bluray-1080p.mkv", + "size": 1337056092, + "dateAdded": "2023-10-23T20:57:27Z", + "sceneName": "Bilal.A.New.Breed.of.Hero.2015.1080p.BluRay.DD5.1.x264-SPEED", + "indexerFlags": 0, + "quality": { + "quality": { + "id": 7, + "name": "Bluray-1080p", + "source": "bluray", + "resolution": 1080, + "modifier": "none" + }, + "revision": { + "version": 1, + "real": 0, + "isRepack": false + } + }, + "customFormatScore": 0, + "mediaInfo": { + "audioBitrate": 640000, + "audioChannels": 5.1, + "audioCodec": "AC3", + "audioLanguages": "eng", + "audioStreamCount": 1, + "videoBitDepth": 8, + "videoBitrate": 0, + "videoCodec": "h265", + "videoFps": 23.976, + "videoDynamicRange": "", + "videoDynamicRangeType": "", + "resolution": "1920x804", + "runTime": "1:49:38", + "scanType": "Progressive", + "subtitles": "eng/eng/eng/fre" + }, + "originalFilePath": "Bilal.A.New.Breed.of.Hero.2015.1080p.BluRay.DD5.1.x264-SPEED/Bilal.A.New.Breed.of.Hero.2015.1080p.BluRay.DD5.1.x264-SPEED.mkv", + "qualityCutoffNotMet": false, + "languages": [ + { + "id": 1, + "name": "English" + } + ], + "releaseGroup": "SPEED", + "edition": "", + "id": 156 + }, + "popularity": 7.26, + "id": 158 + } +] \ No newline at end of file diff --git a/src/test/resources/sonarr-missingshow.json b/src/test/resources/sonarr-missingshow.json new file mode 100644 index 0000000..cf8cce6 --- /dev/null +++ b/src/test/resources/sonarr-missingshow.json @@ -0,0 +1,10466 @@ +[ + { + "title": "RuPaul's Drag Race UK", + "alternateTitles": [], + "sortTitle": "rupauls drag race uk", + "status": "continuing", + "ended": false, + "overview": "UK version of RuPaul's hit reality competition show where RuPaul searches for the country's next drag superstar.", + "nextAiring": "2023-10-26T20:00:00Z", + "previousAiring": "2023-10-19T20:00:00Z", + "network": "BBC Three", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/2/banner.jpg?lastWrite=638321889060413028", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/356338/banners/64ffc26268897.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/2/poster.jpg?lastWrite=638321889060633040", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/356338/posters/650203d63c4ee.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/2/fanart.jpg?lastWrite=638321889060803049", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/356338/backgrounds/6318840970711.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/2/clearlogo.png?lastWrite=638321889060883054", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/356338/clearlogo/611c8b9c8d614.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-11-21T21:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 4491508188, + "releaseGroups": [ + "TEPES" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-03-18T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 6109276424, + "releaseGroups": [ + "SLAG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2021-11-25T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 6155079997, + "releaseGroups": [ + "SECRETOS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2022-11-24T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 6173243302, + "releaseGroups": [ + "BUSSY", + "SLAG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-26T20:00:00Z", + "previousAiring": "2023-10-19T20:00:00Z", + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 10, + "sizeOnDisk": 2685015916, + "releaseGroups": [ + "AKU", + "BUSSY" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2019, + "path": "/data/RuPaul's Drag Race UK", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 67, + "tvdbId": 356338, + "tvRageId": 0, + "tvMazeId": 40861, + "firstAired": "2019-10-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "rupaulsdragraceuk", + "imdbId": "tt9780442", + "titleSlug": "rupauls-drag-race-uk", + "rootFolderPath": "/data/", + "genres": [ + "Game Show", + "Reality" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 5, + "episodeFileCount": 42, + "episodeCount": 42, + "totalEpisodeCount": 56, + "sizeOnDisk": 25614123827, + "releaseGroups": [ + "TEPES", + "SLAG", + "SECRETOS", + "BUSSY", + "AKU" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 2 + }, + { + "title": "Billions", + "alternateTitles": [ + { + "title": "Milliárdok nyomában", + "seasonNumber": -1 + } + ], + "sortTitle": "billions", + "status": "continuing", + "ended": false, + "overview": "U.S. Attorney Chuck Rhoades goes after hedge fund king, Bobby \"Axe\" Axelrod in a battle between two powerful New York figures.", + "nextAiring": "2023-10-30T00:00:00Z", + "previousAiring": "2023-10-23T00:00:00Z", + "network": "Showtime", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/3/banner.jpg?lastWrite=638321889061253073", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/279536-g4.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/3/poster.jpg?lastWrite=638321889061413082", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/279536-6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/3/fanart.jpg?lastWrite=638321889061603092", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/279536-8.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/3/clearlogo.png?lastWrite=638321889061893108", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/279536/clearlogo/611b9559e40e5.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2016-04-11T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 8255712689, + "releaseGroups": [ + "WiKi" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2017-05-08T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 8342831067, + "releaseGroups": [ + "W4NK3R" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2018-06-11T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 8231557710, + "releaseGroups": [ + "DEFLATE", + "NTb", + "OMGDONTMAKEMEDOTHISPLZ" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2019-06-10T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 8366384504, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2021-10-04T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 8356670118, + "releaseGroups": [ + "BTX", + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2022-04-11T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 7748664049, + "releaseGroups": [ + "GOSSIP", + "NTb", + "PECULATE" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-30T00:00:00Z", + "previousAiring": "2023-10-23T00:00:00Z", + "episodeFileCount": 11, + "episodeCount": 11, + "totalEpisodeCount": 12, + "sizeOnDisk": 7967038551, + "releaseGroups": [ + "AMB3R", + "MeM", + "NTb", + "playWEB", + "PLZPROPER" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2016, + "path": "/data/Billions", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 55, + "tvdbId": 279536, + "tvRageId": 0, + "tvMazeId": 3606, + "firstAired": "2016-01-17T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "billions", + "imdbId": "tt4270492", + "titleSlug": "billions", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 7, + "episodeFileCount": 83, + "episodeCount": 83, + "totalEpisodeCount": 92, + "sizeOnDisk": 57268858688, + "releaseGroups": [ + "WiKi", + "W4NK3R", + "DEFLATE", + "NTb", + "OMGDONTMAKEMEDOTHISPLZ", + "BTX", + "GOSSIP", + "PECULATE", + "AMB3R", + "MeM", + "playWEB", + "PLZPROPER" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 3 + }, + { + "title": "American Crime Story", + "alternateTitles": [], + "sortTitle": "american crime story", + "status": "continuing", + "ended": false, + "overview": "An award-winning anthology series that examines some of America's most famous crimes. Each season is presented as a self-contained mini-series following unrelated true events.", + "previousAiring": "2021-11-10T03:00:00Z", + "network": "FX", + "airTime": "22:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/4/banner.jpg?lastWrite=638321889063953219", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/289108-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/4/poster.jpg?lastWrite=638321889064093227", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/289108/posters/6109ea0da09f4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/4/fanart.jpg?lastWrite=638321889078914025", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/289108-31.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/4/clearlogo.png?lastWrite=638321889079064033", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/289108/clearlogo/611baa9f4e935.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2016-04-06T02:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9321827250, + "releaseGroups": [ + "TURMOiL" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2018-03-22T02:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 5853662971, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2021-11-10T03:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 7167430802, + "releaseGroups": [ + "GOSSIP", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2016, + "path": "/data/American Crime Story", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 56, + "tvdbId": 289108, + "tvRageId": 47016, + "tvMazeId": 2029, + "firstAired": "2016-02-02T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "americancrimestory", + "imdbId": "tt2788432", + "titleSlug": "american-crime-story", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 3, + "episodeFileCount": 29, + "episodeCount": 29, + "totalEpisodeCount": 29, + "sizeOnDisk": 22342921023, + "releaseGroups": [ + "TURMOiL", + "NTb", + "GOSSIP" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 4 + }, + { + "title": "Meet the Richardsons", + "alternateTitles": [], + "sortTitle": "meet the richardsons", + "status": "continuing", + "ended": false, + "overview": "Stand-up comedians Richardson and Beaumont play exaggerated versions of themselves as viewers get a glimpse into their home and work lives, surrounded by their celebrity friends and their Hebden Bridge neighbours.", + "previousAiring": "2023-06-08T21:00:00Z", + "network": "Dave", + "airTime": "22:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/5/banner.jpg?lastWrite=638321889062543143", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/376709/banners/62103045.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/5/poster.jpg?lastWrite=638321889062663149", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/376709/posters/5f2f2e9ca98e5.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/5/fanart.jpg?lastWrite=638321889069053494", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/376709/backgrounds/62095675.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 3, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-04-02T21:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 4314482363, + "releaseGroups": [ + "NAF" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-05-27T21:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 5343218343, + "releaseGroups": [ + "NAF" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2022-07-28T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 6595456431, + "releaseGroups": [ + "NAF" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2023-06-08T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 2855492275, + "releaseGroups": [ + "DARKFLiX" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/Meet the Richardsons", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 30, + "tvdbId": 376709, + "tvRageId": 0, + "tvMazeId": 46198, + "firstAired": "2020-02-27T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "meetrichardsons", + "imdbId": "tt11824218", + "titleSlug": "meet-the-richardsons", + "rootFolderPath": "/data/", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 4, + "episodeFileCount": 34, + "episodeCount": 34, + "totalEpisodeCount": 37, + "sizeOnDisk": 19108649412, + "releaseGroups": [ + "NAF", + "DARKFLiX" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 5 + }, + { + "title": "Jury Duty", + "alternateTitles": [], + "sortTitle": "jury duty", + "status": "ended", + "ended": true, + "overview": "The series chronicles the inner workings of an American jury trial through the eyes of one particular juror, Ronald Gladden. What Gladden doesn't know is that the entire case is fake, everyone except him is an actor, including James Marsden, and everything that happens - inside the courtroom and out - is carefully planned.", + "previousAiring": "2023-04-21T04:29:00Z", + "network": "Amazon Freevee", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/6/banner.jpg?lastWrite=638321889062613147", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/432093/banners/64281ecf28268.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/6/poster.jpg?lastWrite=638321889062783156", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/432093/posters/64349de8db042.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/6/fanart.jpg?lastWrite=638321889062973166", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/432093/backgrounds/64ee2a6e904c8.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/6/clearlogo.png?lastWrite=638321889063123174", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/432093/clearlogo/6444493eb2db6.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-04-21T04:29:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2722103275, + "releaseGroups": [ + "CAKES", + "GGWP" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Jury Duty", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 29, + "tvdbId": 432093, + "tvRageId": 0, + "tvMazeId": 67367, + "firstAired": "2023-04-07T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "juryduty", + "imdbId": "tt22074164", + "titleSlug": "jury-duty", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Documentary", + "Reality" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 16, + "sizeOnDisk": 2722103275, + "releaseGroups": [ + "CAKES", + "GGWP" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 6 + }, + { + "title": "Succession", + "alternateTitles": [], + "sortTitle": "succession", + "status": "ended", + "ended": true, + "overview": "A drama about a dysfunctional media family dynasty in the 21st century.\r\nThe Roy family – Logan Roy and his four children – controls one of the biggest media and entertainment conglomerates in the world. \"Succession\" tracks their lives as they contemplate what the future will hold for them once their aging father begins to step back from the company.", + "previousAiring": "2023-05-29T01:00:00Z", + "network": "HBO", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/7/banner.jpg?lastWrite=638321889063183178", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5d5af1ad52f4a.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/7/poster.jpg?lastWrite=638321889063353187", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/338186/posters/62089567.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/7/fanart.jpg?lastWrite=638321889063603200", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5afa0cb54ef86.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/7/clearlogo.png?lastWrite=638321889063713206", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/338186/clearlogo/611c4d4df3146.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 12, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-08-06T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 10983164893, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-10-14T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 7518568735, + "releaseGroups": [ + "NTb", + "STARZ" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2021-12-13T02:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 6331177642, + "releaseGroups": [ + "NOSiViD", + "NTb", + "PECULATE" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-29T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9139132021, + "releaseGroups": [ + "AMB3R", + "HiggsBoson", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Succession", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 61, + "tvdbId": 338186, + "tvRageId": 0, + "tvMazeId": 23470, + "firstAired": "2018-06-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "succession", + "imdbId": "tt7660850", + "titleSlug": "succession", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 4, + "episodeFileCount": 39, + "episodeCount": 39, + "totalEpisodeCount": 51, + "sizeOnDisk": 33972043291, + "releaseGroups": [ + "SHORTBREHD", + "NTb", + "STARZ", + "NOSiViD", + "PECULATE", + "AMB3R", + "HiggsBoson" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 7 + }, + { + "title": "JoJo and Gran Gran", + "alternateTitles": [], + "sortTitle": "jojo and gran gran", + "status": "continuing", + "ended": false, + "overview": "JoJo is almost five, and Gran Gran is her wise and loving grandmother. They live close to each other, and Gran Gran always has something fun planned to do when JoJo comes to visit.", + "previousAiring": "2023-10-08T23:00:00Z", + "network": "CBeebies", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/8/banner.jpg?lastWrite=638321889076893916", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/379062/banners/626c808661665.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/8/poster.jpg?lastWrite=638321889088004515", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/379062/posters/5f304f83dc6c4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/8/fanart.jpg?lastWrite=638321889100825206", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/379062/backgrounds/5e7df4c1d7efb.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "previousAiring": "2023-02-12T00:00:00Z", + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 3, + "sizeOnDisk": 1724338669, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-03-27T00:11:00Z", + "episodeFileCount": 11, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 3809565400, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2020-07-30T23:11:00Z", + "episodeFileCount": 11, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 3898594290, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2020-12-05T00:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 4241830277, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2021-02-05T00:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3495775702, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2022-03-21T00:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4279493301, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2022-06-30T23:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4275756304, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2022-10-31T00:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4272813681, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 8, + "monitored": true, + "statistics": { + "previousAiring": "2023-01-23T00:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4288823782, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 9, + "monitored": true, + "statistics": { + "previousAiring": "2023-04-06T23:00:00Z", + "episodeFileCount": 4, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 1723376593, + "releaseGroups": [], + "percentOfEpisodes": 36.363636363636363636363636360 + } + }, + { + "seasonNumber": 10, + "monitored": true, + "statistics": { + "previousAiring": "2023-08-13T23:00:00Z", + "episodeFileCount": 0, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 11, + "monitored": true, + "statistics": { + "previousAiring": "2023-10-08T23:00:00Z", + "episodeFileCount": 0, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + } + ], + "year": 2020, + "path": "/data/JoJo and Gran Gran", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 11, + "tvdbId": 379062, + "tvRageId": 0, + "tvMazeId": 46710, + "firstAired": "2020-03-16T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "jojograngran", + "imdbId": "tt12313126", + "titleSlug": "jojo-and-gran-gran", + "rootFolderPath": "/data/", + "certification": "U", + "genres": [ + "Animation", + "Children", + "Family" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 11, + "episodeFileCount": 91, + "episodeCount": 119, + "totalEpisodeCount": 119, + "sizeOnDisk": 36010367999, + "releaseGroups": [], + "percentOfEpisodes": 76.470588235294117647058823530 + }, + "languageProfileId": 1, + "id": 8 + }, + { + "title": "Parental Guidance", + "alternateTitles": [], + "sortTitle": "parental guidance", + "status": "continuing", + "ended": false, + "overview": "Brave mums and dads who believe their parenting style is the best will be put to the ultimate test in Parental Guidance.\r\n\r\nIn this controversial new series, opinionated mums and dads will take turns judging each other’s parenting styles. Helicopter parents, tiger parents, free-range parents, designer parents and strict authoritarians will all show how they bring up their families with a view to convincing the group that their way is best.", + "previousAiring": "2023-06-20T09:30:00Z", + "network": "Nine Network", + "airTime": "19:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/9/banner.jpg?lastWrite=638321889076203879", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/410734/banners/618119b5e2707.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/9/poster.jpg?lastWrite=638321889076353887", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/410734/posters/618065fd4a7d5.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/9/fanart.jpg?lastWrite=638321889076643903", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/410734/backgrounds/648ccf5845081.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/9/clearlogo.png?lastWrite=638321889090004623", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/410734/clearlogo/647775e50a40c.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-11-16T08:30:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 4122978815, + "releaseGroups": [ + "GBone" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-06-20T09:30:00Z", + "episodeFileCount": 7, + "episodeCount": 7, + "totalEpisodeCount": 7, + "sizeOnDisk": 3875924665, + "releaseGroups": [ + "GBone" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2021, + "path": "/data/Parental Guidance", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 60, + "tvdbId": 410734, + "tvRageId": 0, + "tvMazeId": 58718, + "firstAired": "2021-11-01T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "parentalguidance", + "imdbId": "tt15680188", + "titleSlug": "parental-guidance", + "rootFolderPath": "/data/", + "certification": "PG", + "genres": [ + "Reality" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 16, + "sizeOnDisk": 7998903480, + "releaseGroups": [ + "GBone" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 9 + }, + { + "title": "The Parent Test", + "alternateTitles": [], + "sortTitle": "parent test", + "status": "ended", + "ended": true, + "overview": "Follows comedian Ali Wentworth along with parenting expert Dr. Adolph Brown, as they have conversations with parents about how we're raising our kids, while 12 families run through various situations.", + "previousAiring": "2023-02-17T02:42:00Z", + "network": "ABC (US)", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/10/banner.jpg?lastWrite=638321889082694229", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/428020/banners/63988f79169fa.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/10/poster.jpg?lastWrite=638321889094304855", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/428020/posters/6425a0f5bcca2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/10/fanart.jpg?lastWrite=638321889108515621", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/428020/backgrounds/639c85ca568b7.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-02-17T02:42:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3858889071, + "releaseGroups": [ + "EDITH", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/The Parent Test", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 42, + "tvdbId": 428020, + "tvRageId": 0, + "tvMazeId": 64801, + "firstAired": "2022-12-15T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theparenttest", + "imdbId": "tt23026906", + "titleSlug": "the-parent-test", + "rootFolderPath": "/data/", + "genres": [ + "Family", + "Game Show", + "Reality" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3858889071, + "releaseGroups": [ + "EDITH", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 10 + }, + { + "title": "Daniel Tiger's Neighborhood", + "alternateTitles": [ + { + "title": "Daniel Tigers Neighborhood", + "seasonNumber": -1 + }, + { + "title": "Daniel Tiger", + "seasonNumber": -1 + } + ], + "sortTitle": "daniel tigers neighborhood", + "status": "continuing", + "ended": false, + "overview": "A new animated continuation to Mr. Rogers' Neighborhood, where all the original characters are now grown up with their own preschool-aged children.", + "previousAiring": "2023-08-17T18:56:00Z", + "network": "PBS", + "airTime": "14:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/11/banner.jpg?lastWrite=638321889068533466", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/261511-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/11/poster.jpg?lastWrite=638321889068703475", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/261511-1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/11/fanart.jpg?lastWrite=638321889068883485", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/261511-2.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/11/clearlogo.png?lastWrite=638321889069083495", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/261511/clearlogo/611c88cbda68f.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 4, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2014-02-21T19:56:00Z", + "episodeFileCount": 78, + "episodeCount": 78, + "totalEpisodeCount": 78, + "sizeOnDisk": 11331024134, + "releaseGroups": [ + "AJP69", + "iNSPiRiT" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2016-07-04T18:56:00Z", + "episodeFileCount": 38, + "episodeCount": 38, + "totalEpisodeCount": 38, + "sizeOnDisk": 4767398746, + "releaseGroups": [ + "RTN" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2018-07-10T18:56:00Z", + "episodeFileCount": 48, + "episodeCount": 48, + "totalEpisodeCount": 48, + "sizeOnDisk": 5945996444, + "releaseGroups": [ + "BTN" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2020-01-08T19:56:00Z", + "episodeFileCount": 36, + "episodeCount": 36, + "totalEpisodeCount": 36, + "sizeOnDisk": 4051622278, + "releaseGroups": [ + "BTN", + "KROOT", + "LAZY", + "PoF" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2022-05-18T18:56:00Z", + "episodeFileCount": 36, + "episodeCount": 36, + "totalEpisodeCount": 36, + "sizeOnDisk": 7425462866, + "releaseGroups": [ + "LAZY" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2023-08-17T18:56:00Z", + "episodeFileCount": 14, + "episodeCount": 27, + "totalEpisodeCount": 27, + "sizeOnDisk": 3165010045, + "releaseGroups": [ + "PoF" + ], + "percentOfEpisodes": 51.851851851851851851851851850 + } + } + ], + "year": 2012, + "path": "/data/Daniel Tiger's Neighborhood", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 26, + "tvdbId": 261511, + "tvRageId": 32504, + "tvMazeId": 691, + "firstAired": "2012-09-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "danieltigersneighborhood", + "imdbId": "tt2014553", + "titleSlug": "daniel-tigers-neighborhood", + "rootFolderPath": "/data/", + "certification": "TV-Y", + "genres": [ + "Animation", + "Children", + "Family", + "Fantasy", + "Musical" + ], + "tags": [], + "added": "2023-10-06T11:35:02Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 6, + "episodeFileCount": 250, + "episodeCount": 263, + "totalEpisodeCount": 267, + "sizeOnDisk": 36686514513, + "releaseGroups": [ + "AJP69", + "iNSPiRiT", + "RTN", + "BTN", + "KROOT", + "LAZY", + "PoF" + ], + "percentOfEpisodes": 95.05703422053231939163498099 + }, + "languageProfileId": 1, + "id": 11 + }, + { + "title": "The Great British Bake Off", + "alternateTitles": [ + { + "title": "The Great British Bake Off", + "seasonNumber": -1 + } + ], + "sortTitle": "great british bake off", + "status": "continuing", + "ended": false, + "overview": "Britain's best amateur bakers compete in the iconic white tent - all united in their aim to prove their baking skills and impress judges Paul Hollywood and Prue Leith.", + "nextAiring": "2023-10-31T20:00:00Z", + "previousAiring": "2023-10-24T19:00:00Z", + "network": "Channel 4", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/12/banner.jpg?lastWrite=638322700046861285", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/184871-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/12/poster.jpg?lastWrite=638322700047051296", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/184871-6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/12/fanart.jpg?lastWrite=638322700047241306", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/184871-3.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/12/clearlogo.png?lastWrite=638322700047371314", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/184871/clearlogo/611c05d0513ef.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 73, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 6, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 2, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 3, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 4, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 5, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 6, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 7, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 8, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 9, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 10, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 11, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 12, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 13, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 14, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-31T20:00:00Z", + "previousAiring": "2023-10-24T19:00:00Z", + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 10, + "sizeOnDisk": 2624383394, + "releaseGroups": [ + "EDITH" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2010, + "path": "/data/The Great British Bake Off", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 60, + "tvdbId": 184871, + "tvRageId": 26332, + "tvMazeId": 2950, + "firstAired": "2010-08-17T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thegreatbritishbakeoff", + "imdbId": "tt1877368", + "titleSlug": "the-great-british-bake-off", + "rootFolderPath": "/data/", + "certification": "TV-PG", + "genres": [ + "Food", + "Game Show", + "Reality" + ], + "tags": [], + "added": "2023-10-07T10:06:43Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 14, + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 207, + "sizeOnDisk": 2624383394, + "releaseGroups": [ + "EDITH" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 12 + }, + { + "title": "The Great", + "alternateTitles": [], + "sortTitle": "great", + "status": "ended", + "ended": true, + "overview": "A genre-bending, anti-historical ride through 18th Century Russia following the wildly comic rise of Catherine the Nothing to Catherine the Great.", + "previousAiring": "2023-05-12T04:00:00Z", + "network": "Hulu", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/13/banner.jpg?lastWrite=638322812349445002", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/369301/banners/5eb4c60ab818d.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/13/poster.jpg?lastWrite=638322812349595011", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/369301/posters/618f6e6e8cb62.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/13/fanart.jpg?lastWrite=638322812349825023", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/369301/backgrounds/6096a6510311e.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/13/clearlogo.png?lastWrite=638322812349915028", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/369301/clearlogo/611cb6ec781ac.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 3, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-05-15T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 11126233085, + "releaseGroups": [ + "PRESENT" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-11-19T05:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8065618660, + "releaseGroups": [ + "SbR" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-12T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8620759829, + "releaseGroups": [ + "gattopollo" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/The Great", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 52, + "tvdbId": 369301, + "tvRageId": 0, + "tvMazeId": 38412, + "firstAired": "2020-05-15T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thegreat", + "imdbId": "tt2235759", + "titleSlug": "the-great", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Drama", + "History" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 3, + "episodeFileCount": 30, + "episodeCount": 30, + "totalEpisodeCount": 33, + "sizeOnDisk": 27812611574, + "releaseGroups": [ + "PRESENT", + "SbR", + "gattopollo" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 13 + }, + { + "title": "The Wheel of Time", + "alternateTitles": [ + { + "title": "La ruota del tempo", + "seasonNumber": -1 + }, + { + "title": "Das Rad der Zeit", + "seasonNumber": -1 + }, + { + "title": "La rueda del tiempo", + "seasonNumber": -1 + } + ], + "sortTitle": "wheel of time", + "status": "continuing", + "ended": false, + "overview": "The lives of five young villagers change forever when a strange and powerful woman arrives, claiming one of them is the child of an ancient prophecy with the power to tip the balance between Light and Dark forever. They must choose whether to trust this stranger – and each other – with the fate of the world before the Dark One breaks out of His prison, and the Last Battle begins.", + "previousAiring": "2023-10-06T04:00:00Z", + "network": "Prime Video", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/14/banner.jpg?lastWrite=638322812352705181", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/355730/banners/619da764490dc.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/14/poster.jpg?lastWrite=638322812352855189", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/355730/posters/6160085dd9c5e.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/14/fanart.jpg?lastWrite=638322812353075201", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/355730/backgrounds/6160ca8960795.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/14/clearlogo.png?lastWrite=638322812353185207", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/355730/clearlogo/6192d29564eb1.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 25, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-12-24T05:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 48628673814, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-10-06T04:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 7752334450, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2021, + "path": "/data/The Wheel of Time", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 63, + "tvdbId": 355730, + "tvRageId": 0, + "tvMazeId": 35083, + "firstAired": "2021-11-19T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thewheeltime", + "imdbId": "tt7462410", + "titleSlug": "the-wheel-of-time", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Action", + "Adventure", + "Drama", + "Fantasy" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 41, + "sizeOnDisk": 56381008264, + "releaseGroups": [ + "d3g", + "Pahe" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 14 + }, + { + "title": "Mr Inbetween", + "alternateTitles": [], + "sortTitle": "mr inbetween", + "status": "ended", + "ended": true, + "overview": "Hardened by the prison system and his experiences dealing with it, criminal for hire Ray Shoesmith learns how to deal with life in the real world away from the bars of prison, where actions always have consequences.", + "previousAiring": "2021-07-14T02:00:00Z", + "network": "FX", + "airTime": "22:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/15/banner.jpg?lastWrite=638322812349825023", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/349743/banners/608d540da0647.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/15/poster.jpg?lastWrite=638322812350125040", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/5b918305879b6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/15/fanart.jpg?lastWrite=638322812350355052", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/349743/backgrounds/60928e30c5899.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/15/clearlogo.png?lastWrite=638322812350445057", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/349743/clearlogo/611cb752c044f.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-10-10T02:25:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2692644591, + "releaseGroups": [ + "STASI" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-11-22T03:00:00Z", + "episodeFileCount": 11, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 4830527970, + "releaseGroups": [ + "STASI" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2021-07-14T02:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 7915733840, + "releaseGroups": [ + "HiQVE" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Mr Inbetween", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 349743, + "tvRageId": 0, + "tvMazeId": 34268, + "firstAired": "2018-09-25T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "mrinbetween", + "imdbId": "tt7472896", + "titleSlug": "mr-inbetween", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 3, + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 27, + "sizeOnDisk": 15438906401, + "releaseGroups": [ + "STASI", + "HiQVE" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 15 + }, + { + "title": "The Walk-In", + "alternateTitles": [], + "sortTitle": "walkin", + "status": "ended", + "ended": true, + "overview": "Forced to flee the UK and go into hiding in the 1990’s when he became a mole from within the BNP, Matthew Collins returned to Britain to make a new life for himself.\r\nThe drama focuses on Collins and his work to stop the radicalisation of young white men before it begins.", + "previousAiring": "2022-10-31T21:00:00Z", + "network": "ITV1", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/16/banner.jpg?lastWrite=638322812350655069", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425082/banners/633d7937dfffc.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/16/poster.jpg?lastWrite=638322812350795076", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425082/posters/633a1372f1558.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/16/fanart.jpg?lastWrite=638322812363065748", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425082/backgrounds/6406b250285e8.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/16/clearlogo.png?lastWrite=638322812363185754", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425082/clearlogo/6406b25e08d5a.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-10-31T21:00:00Z", + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 5, + "sizeOnDisk": 2044665022, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/The Walk-In", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 425082, + "tvRageId": 0, + "tvMazeId": 64258, + "firstAired": "2022-10-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thewalkin", + "imdbId": "tt22175166", + "titleSlug": "the-walk-in", + "rootFolderPath": "/data/", + "genres": [ + "Crime", + "Drama", + "Mini-Series" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 6, + "sizeOnDisk": 2044665022, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 16 + }, + { + "title": "Bad Sisters", + "alternateTitles": [ + { + "title": "Hermanas hasta la muerte", + "seasonNumber": -1 + } + ], + "sortTitle": "bad sisters", + "status": "continuing", + "ended": false, + "overview": "The tight-knit Garvey sisters have always looked out for each other. When their brother-in-law winds up dead, his life insurers launch an investigation to prove malicious intent, and set their sights on the sisters, all of whom had ample reason to kill him.", + "previousAiring": "2022-10-14T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/17/banner.jpg?lastWrite=638322812351075092", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418182/banners/62e7bda1e96ad.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/17/poster.jpg?lastWrite=638322812351205099", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418182/posters/62ecefd25190f.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/17/fanart.jpg?lastWrite=638322812351855134", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418182/backgrounds/645b65fc39d14.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/17/clearlogo.png?lastWrite=638322812352005142", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418182/clearlogo/62ffe810dbcb3.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-10-14T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8975371341, + "releaseGroups": [ + "HERC", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Bad Sisters", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 52, + "tvdbId": 418182, + "tvRageId": 0, + "tvMazeId": 61235, + "firstAired": "2022-08-19T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "badsisters", + "imdbId": "tt15469618", + "titleSlug": "bad-sisters", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Drama" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8975371341, + "releaseGroups": [ + "HERC", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 17 + }, + { + "title": "For All Mankind", + "alternateTitles": [ + { + "title": "Para toda la humanidad", + "seasonNumber": -1 + } + ], + "sortTitle": "for all mankind", + "status": "continuing", + "ended": false, + "overview": "The depiction of an 'alternate history' of the global space race after the USSR succeeds in achieving the first manned Moon landing.", + "nextAiring": "2023-11-10T05:00:00Z", + "previousAiring": "2022-08-12T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/18/banner.jpg?lastWrite=638322812351105093", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5d850474ed246.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/18/poster.jpg?lastWrite=638322812351395109", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/356202/posters/600304db98362.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/18/fanart.jpg?lastWrite=638322812351995142", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/356202/backgrounds/6035368ae4176.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/18/clearlogo.png?lastWrite=638322812352075146", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/356202/clearlogo/611bf94f751b5.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 2, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-12-20T05:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 17973418165, + "releaseGroups": [ + "YELLO" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-04-23T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 13904203159, + "releaseGroups": [ + "YELLO" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2022-08-12T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 10193820587, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "nextAiring": "2023-11-10T05:00:00Z", + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + } + ], + "year": 2019, + "path": "/data/For All Mankind", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 61, + "tvdbId": 356202, + "tvRageId": 0, + "tvMazeId": 41414, + "firstAired": "2019-11-01T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "forallmankind", + "imdbId": "tt7772588", + "titleSlug": "for-all-mankind", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 4, + "episodeFileCount": 30, + "episodeCount": 30, + "totalEpisodeCount": 42, + "sizeOnDisk": 42071441911, + "releaseGroups": [ + "YELLO", + "RARBG" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 18 + }, + { + "title": "The Crowded Room", + "alternateTitles": [], + "sortTitle": "crowded room", + "status": "ended", + "ended": true, + "overview": "A psychological thriller set in Manhattan in the summer of 1979, when a young man is arrested for a shocking crime, and an unlikely investigator must solve the mystery behind it.", + "previousAiring": "2023-07-28T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/19/banner.jpg?lastWrite=638322812351995142", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/400723/banners/6483cc4953028.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/19/poster.jpg?lastWrite=638322812352135150", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/400723/posters/6478f7f22d133.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/19/fanart.jpg?lastWrite=638322812352425165", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/400723/backgrounds/6479c7fe805b8.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/19/clearlogo.png?lastWrite=638322812352575174", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/400723/clearlogo/64836b8b3ce9b.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-07-28T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 34542620522, + "releaseGroups": [ + "d3g", + "HiggsBoson" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/The Crowded Room", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 47, + "tvdbId": 400723, + "tvRageId": 0, + "tvMazeId": 54643, + "firstAired": "2023-06-09T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thecrowdedroom", + "imdbId": "tt14417718", + "titleSlug": "the-crowded-room", + "rootFolderPath": "/data/", + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 34542620522, + "releaseGroups": [ + "d3g", + "HiggsBoson" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 19 + }, + { + "title": "The Afterparty", + "alternateTitles": [], + "sortTitle": "afterparty", + "status": "ended", + "ended": true, + "overview": "In this murder-mystery comedy set at a high school reunion afterparty, every episode features a chronicle of the same night told through a different character’s perspective, each with its own unique visual format and film genre to match the teller’s personality.", + "previousAiring": "2023-09-06T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/20/banner.jpg?lastWrite=638322812352345161", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/384495/banners/616db84e045b0.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/20/poster.jpg?lastWrite=638322812352515170", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/384495/posters/61b960ed0fdb3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/20/fanart.jpg?lastWrite=638322812352715181", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/384495/backgrounds/6480a56e55aef.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/20/clearlogo.png?lastWrite=638322812352855189", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/384495/clearlogo/61f16ca8e7345.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-03-04T05:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 25641909675, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-09-06T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 32617762525, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/The Afterparty", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 35, + "tvdbId": 384495, + "tvRageId": 0, + "tvMazeId": 48888, + "firstAired": "2022-01-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theafterparty", + "imdbId": "tt12614214", + "titleSlug": "the-afterparty", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Crime", + "Mystery" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 18, + "episodeCount": 18, + "totalEpisodeCount": 18, + "sizeOnDisk": 58259672200, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 20 + }, + { + "title": "Invasion (2021)", + "alternateTitles": [ + { + "title": "Invasion", + "seasonNumber": -1, + "comment": "Limited matching" + }, + { + "title": "Infiltration", + "seasonNumber": -1 + }, + { + "title": "Invasion -", + "seasonNumber": -1 + } + ], + "sortTitle": "invasion 2021", + "status": "continuing", + "ended": false, + "overview": "Earth is visited by an alien species that threatens humanity's existence. Events unfold in real time through the eyes of five ordinary people across the globe as they struggle to make sense of the chaos unraveling around them.", + "previousAiring": "2023-10-25T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/21/banner.jpg?lastWrite=638322812354385273", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/404492/banners/617244eb9f108.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/21/poster.jpg?lastWrite=638322812354505279", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/404492/posters/614cba2817b5e.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/21/fanart.jpg?lastWrite=638322812354675289", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/404492/backgrounds/64e5d19438cf9.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/21/clearlogo.png?lastWrite=638322812354745292", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/404492/clearlogo/617245b2412bc.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-12-10T05:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8925139352, + "releaseGroups": [ + "CAKES", + "NOMA", + "NovaRip" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-10-25T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 12448443419, + "releaseGroups": [ + "HiggsBoson", + "HONE", + "MeM", + "NHTFS", + "YELLO" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2021, + "path": "/data/Invasion (2021)", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 50, + "tvdbId": 404492, + "tvRageId": 0, + "tvMazeId": 49964, + "firstAired": "2021-10-21T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "invasion2021", + "imdbId": "tt9737326", + "titleSlug": "invasion-2021", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Fantasy", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 20, + "episodeCount": 20, + "totalEpisodeCount": 20, + "sizeOnDisk": 21373582771, + "releaseGroups": [ + "CAKES", + "NOMA", + "NovaRip", + "HiggsBoson", + "HONE", + "MeM", + "NHTFS", + "YELLO" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 21 + }, + { + "title": "Untold Stories of the ER", + "alternateTitles": [ + { + "title": "Verruecktes Krankenhaus", + "seasonNumber": -1 + } + ], + "sortTitle": "untold stories of the er", + "status": "ended", + "ended": true, + "overview": "Untold Stories of the ER follows real life stories of incidents occurring to doctors at real hospital emergency rooms and the troubles they face trying to help the various people that they encounter.", + "previousAiring": "2020-03-20T01:00:00Z", + "network": "TLC", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/22/banner.jpg?lastWrite=638322812355905356", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/78869-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/22/poster.jpg?lastWrite=638322812356055364", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/78869-3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/22/fanart.jpg?lastWrite=638322812370076131", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/78869-1.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 9, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2005-07-12T01:00:00Z", + "episodeFileCount": 0, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2005-07-05T01:00:00Z", + "episodeFileCount": 0, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2006-02-28T02:00:00Z", + "episodeFileCount": 0, + "episodeCount": 15, + "totalEpisodeCount": 15, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2006-12-28T02:00:00Z", + "episodeFileCount": 0, + "episodeCount": 18, + "totalEpisodeCount": 18, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2010-12-23T02:00:00Z", + "episodeFileCount": 0, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2012-02-25T02:00:00Z", + "episodeFileCount": 6, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2523140037, + "releaseGroups": [ + "CRiMSON", + "W4F" + ], + "percentOfEpisodes": 75.00 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2012-12-15T02:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 3767604190, + "releaseGroups": [ + "CRiMSON", + "W4F" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 8, + "monitored": true, + "statistics": { + "previousAiring": "2014-01-18T02:00:00Z", + "episodeFileCount": 13, + "episodeCount": 15, + "totalEpisodeCount": 15, + "sizeOnDisk": 5471980973, + "releaseGroups": [ + "CRiMSON", + "W4F" + ], + "percentOfEpisodes": 86.66666666666666666666666667 + } + }, + { + "seasonNumber": 9, + "monitored": true, + "statistics": { + "previousAiring": "2014-08-30T01:00:00Z", + "episodeFileCount": 6, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2525551388, + "releaseGroups": [ + "CRiMSON", + "W4F" + ], + "percentOfEpisodes": 75.00 + } + }, + { + "seasonNumber": 10, + "monitored": true, + "statistics": { + "previousAiring": "2015-01-24T02:00:00Z", + "episodeFileCount": 6, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 2509077230, + "releaseGroups": [ + "W4F" + ], + "percentOfEpisodes": 60.0 + } + }, + { + "seasonNumber": 11, + "monitored": true, + "statistics": { + "previousAiring": "2016-09-24T01:00:00Z", + "episodeFileCount": 5, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2105650259, + "releaseGroups": [ + "W4F" + ], + "percentOfEpisodes": 38.461538461538461538461538460 + } + }, + { + "seasonNumber": 12, + "monitored": true, + "statistics": { + "previousAiring": "2016-12-10T02:00:00Z", + "episodeFileCount": 8, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3358433857, + "releaseGroups": [ + "W4F" + ], + "percentOfEpisodes": 80.0 + } + }, + { + "seasonNumber": 13, + "monitored": true, + "statistics": { + "previousAiring": "2018-03-10T02:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4211030070, + "releaseGroups": [ + "CRiMSON", + "w4f", + "W4F" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 14, + "monitored": true, + "statistics": { + "previousAiring": "2019-08-16T01:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2096660845, + "releaseGroups": [ + "KOMPOST" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 15, + "monitored": true, + "statistics": { + "previousAiring": "2020-03-20T01:00:00Z", + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 1395680717, + "releaseGroups": [ + "KOMPOST" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2004, + "path": "/data/Untold Stories of the ER", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 45, + "tvdbId": 78869, + "tvRageId": 6960, + "tvMazeId": 4009, + "firstAired": "2004-04-26T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "untoldstorieser", + "imdbId": "tt0437043", + "titleSlug": "untold-stories-of-the-er", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Documentary", + "Drama", + "Reality" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 15, + "episodeFileCount": 73, + "episodeCount": 152, + "totalEpisodeCount": 161, + "sizeOnDisk": 29964809566, + "releaseGroups": [ + "CRiMSON", + "W4F", + "w4f", + "KOMPOST" + ], + "percentOfEpisodes": 48.026315789473684210526315790 + }, + "languageProfileId": 1, + "id": 22 + }, + { + "title": "One Born Every Minute", + "alternateTitles": [], + "sortTitle": "one born every minute", + "status": "ended", + "ended": true, + "overview": "Every minute of every day, a baby is born in Britain.\r\n\r\nOne Born Every Minute celebrates what it really feels like to become a parent, by taking a bustling maternity hospital and filling it with forty cameras.\r\n\r\nFilming from the reception desk to the neo-natal ward; from the operating theatre to the birthing pool, this ground-breaking and tender new series observes the dramatic, emotional and often funny moments that go hand in hand with bringing a new life into the world, from the perspective of the soon-to-be parents and family, as well as the hospital staff.", + "previousAiring": "2018-05-09T20:00:00Z", + "network": "Channel 4", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/23/banner.jpg?lastWrite=638322812368766060", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/142401-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/23/poster.jpg?lastWrite=638322812368926068", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/142401-2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/23/fanart.jpg?lastWrite=638322812369096078", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/142401-1.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/23/clearlogo.png?lastWrite=638322812378596596", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/142401/clearlogo/611e47757fb13.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 3, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2010-03-30T20:00:00Z", + "episodeFileCount": 0, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2011-04-04T20:00:00Z", + "episodeFileCount": 0, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2012-04-05T20:00:00Z", + "episodeFileCount": 0, + "episodeCount": 15, + "totalEpisodeCount": 15, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2013-04-03T20:00:00Z", + "episodeFileCount": 0, + "episodeCount": 14, + "totalEpisodeCount": 14, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2014-04-28T20:00:00Z", + "episodeFileCount": 9, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4313626093, + "releaseGroups": [ + "C4TV" + ], + "percentOfEpisodes": 90.0 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2014-08-13T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4553238593, + "releaseGroups": [ + "BARGE", + "C4TV" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2015-04-21T20:00:00Z", + "episodeFileCount": 7, + "episodeCount": 7, + "totalEpisodeCount": 8, + "sizeOnDisk": 3261397577, + "releaseGroups": [ + "BARGE", + "C4TV" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 8, + "monitored": true, + "statistics": { + "previousAiring": "2015-09-02T20:00:00Z", + "episodeFileCount": 6, + "episodeCount": 7, + "totalEpisodeCount": 7, + "sizeOnDisk": 2881197760, + "releaseGroups": [ + "C4TV" + ], + "percentOfEpisodes": 85.71428571428571428571428571 + } + }, + { + "seasonNumber": 9, + "monitored": true, + "statistics": { + "previousAiring": "2016-05-18T20:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 4246959233, + "releaseGroups": [ + "C4TV" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 10, + "monitored": true, + "statistics": { + "previousAiring": "2017-06-27T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 11, + "totalEpisodeCount": 11, + "sizeOnDisk": 4441582151, + "releaseGroups": [ + "CREED", + "DEADPOOL" + ], + "percentOfEpisodes": 90.90909090909090909090909091 + } + }, + { + "seasonNumber": 11, + "monitored": true, + "statistics": { + "previousAiring": "2018-05-09T20:00:00Z", + "episodeFileCount": 0, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + } + ], + "year": 2010, + "path": "/data/One Born Every Minute", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 60, + "tvdbId": 142401, + "tvRageId": 25014, + "tvMazeId": 3760, + "firstAired": "2010-02-09T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "oneborneveryminute", + "imdbId": "tt1623135", + "titleSlug": "one-born-every-minute", + "rootFolderPath": "/data/", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 11, + "episodeFileCount": 51, + "episodeCount": 114, + "totalEpisodeCount": 118, + "sizeOnDisk": 23698001407, + "releaseGroups": [ + "C4TV", + "BARGE", + "CREED", + "DEADPOOL" + ], + "percentOfEpisodes": 44.736842105263157894736842110 + }, + "languageProfileId": 1, + "id": 23 + }, + { + "title": "One Born Every Minute (AU)", + "alternateTitles": [ + { + "title": "One Born Every Minute Australia", + "seasonNumber": -1 + } + ], + "sortTitle": "one born every minute au", + "status": "ended", + "ended": true, + "previousAiring": "2019-12-11T01:30:00Z", + "network": "Network Ten", + "airTime": "20:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/24/banner.jpg?lastWrite=638322812368846064", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5db1b82a04f9b.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/24/poster.jpg?lastWrite=638322812381776770", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/5dbbac972b681.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/24/fanart.jpg?lastWrite=638322812397817645", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5dbbac88d79cb.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-12-11T01:30:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2913867393, + "releaseGroups": [ + "CCT" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2019, + "path": "/data/One Born Every Minute (AU)", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 60, + "tvdbId": 371340, + "tvRageId": 0, + "tvMazeId": 47799, + "firstAired": "2019-10-22T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "oneborneveryminuteau", + "imdbId": "tt11569382", + "titleSlug": "one-born-every-minute-au", + "rootFolderPath": "/data/", + "genres": [ + "Documentary", + "Reality" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2913867393, + "releaseGroups": [ + "CCT" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 24 + }, + { + "title": "Hijack", + "alternateTitles": [ + { + "title": "Secuestro en el aire", + "seasonNumber": -1 + } + ], + "sortTitle": "hijack", + "status": "ended", + "ended": true, + "overview": "When Flight KA29 is hijacked during its seven-hour journey from Dubai to London, Sam Nelson—an accomplished corporate negotiator—tries using his professional skills to save everyone on board. Will this high-risk strategy be his undoing?", + "previousAiring": "2023-08-02T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/25/banner.jpg?lastWrite=638322812360695618", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/419254/banners/6477db740fa14.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/25/poster.jpg?lastWrite=638322812360905630", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/419254/posters/646f6619b0e16.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/25/fanart.jpg?lastWrite=638322812361105641", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/419254/backgrounds/646f666880b9a.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/25/clearlogo.png?lastWrite=638322812361175644", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/419254/clearlogo/649c8f070ee03.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-08-02T04:00:00Z", + "episodeFileCount": 7, + "episodeCount": 7, + "totalEpisodeCount": 7, + "sizeOnDisk": 5490442877, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Hijack", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 47, + "tvdbId": 419254, + "tvRageId": 0, + "tvMazeId": 61739, + "firstAired": "2023-06-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "hijack", + "imdbId": "tt19854762", + "titleSlug": "hijack", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Mini-Series", + "Thriller" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 7, + "episodeCount": 7, + "totalEpisodeCount": 7, + "sizeOnDisk": 5490442877, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 25 + }, + { + "title": "Severance", + "alternateTitles": [ + { + "title": "Separación", + "seasonNumber": -1 + }, + { + "title": "Scissione", + "seasonNumber": -1 + } + ], + "sortTitle": "severance", + "status": "continuing", + "ended": false, + "overview": "Mark leads a team of office workers whose memories have been surgically divided between their work and personal lives. When a mysterious colleague appears outside of work, it begins a journey to discover the truth about their jobs.", + "previousAiring": "2022-04-08T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/26/banner.jpg?lastWrite=638322812362685727", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371980/banners/61bb729db0947.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/26/poster.jpg?lastWrite=638322812362785732", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371980/posters/61bc6bbbea3f4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/26/fanart.jpg?lastWrite=638322812362975743", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371980/backgrounds/61bdee7c62d99.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/26/clearlogo.png?lastWrite=638322812363055747", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371980/clearlogo/621094f90a4e4.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-04-08T04:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 6881209520, + "releaseGroups": [ + "novarip", + "NovaRip", + "TEPES", + "WAYNE" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Severance", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 48, + "tvdbId": 371980, + "tvRageId": 0, + "tvMazeId": 44933, + "firstAired": "2022-02-18T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "severance", + "imdbId": "tt11280740", + "titleSlug": "severance", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Mystery", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 6881209520, + "releaseGroups": [ + "novarip", + "NovaRip", + "TEPES", + "WAYNE" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 26 + }, + { + "title": "Silo", + "alternateTitles": [], + "sortTitle": "silo", + "status": "continuing", + "ended": false, + "overview": "In a ruined and toxic future, thousands live in a giant silo deep underground. After its sheriff breaks a cardinal rule and residents die mysteriously, engineer Juliette starts to uncover shocking secrets and the truth about the silo.", + "previousAiring": "2023-06-30T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/27/banner.jpg?lastWrite=638322812361525663", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/403245/banners/6449d56a60674.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/27/poster.jpg?lastWrite=638322812361655671", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/403245/posters/64432dea72673.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/27/fanart.jpg?lastWrite=638322812361845681", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/403245/backgrounds/640bc23f1fa80.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/27/clearlogo.png?lastWrite=638322812361975688", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/403245/clearlogo/6455710e48c96.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 2, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-06-30T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9088929429, + "releaseGroups": [ + "HiggsBoson", + "MeM", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Silo", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 49, + "tvdbId": 403245, + "tvRageId": 0, + "tvMazeId": 38052, + "firstAired": "2023-05-05T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "silo", + "imdbId": "tt14688458", + "titleSlug": "silo", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 12, + "sizeOnDisk": 9088929429, + "releaseGroups": [ + "HiggsBoson", + "MeM", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 27 + }, + { + "title": "Clarkson's Farm", + "alternateTitles": [ + { + "title": "Clarksons Farm", + "seasonNumber": -1 + } + ], + "sortTitle": "clarksons farm", + "status": "continuing", + "ended": false, + "overview": "An intense, arduous and frequently hilarious year in the life of Britain’s most unlikely farmer, Jeremy Clarkson. Join Jeremy and his rag-tag band of agricultural associates as they face-up to a backdrop of unhelpful weather, disobedient animals, unresponsive crops and an unexpected pandemic. This is Jeremy Clarkson as you’ve never seen him before.", + "previousAiring": "2023-02-10T13:00:00Z", + "network": "Prime Video", + "airTime": "08:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/28/banner.jpg?lastWrite=638322812363155753", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/378165/banners/61afbfcf7475b.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/28/poster.jpg?lastWrite=638322812363305761", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/378165/posters/60c46a797adfa.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/28/fanart.jpg?lastWrite=638322812363545774", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/378165/backgrounds/63e623dde323d.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/28/clearlogo.png?lastWrite=638322812363675781", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/378165/clearlogo/640ced740c2f9.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-06-11T12:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6416938087, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-02-10T13:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 4286573680, + "releaseGroups": [ + "PlayWEB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2021, + "path": "/data/Clarkson's Farm", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 378165, + "tvRageId": 0, + "tvMazeId": 55352, + "firstAired": "2021-06-11T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "clarksonsfarm", + "imdbId": "tt10541088", + "titleSlug": "clarksons-farm", + "rootFolderPath": "/data/", + "certification": "15", + "genres": [ + "Adventure", + "Comedy", + "Documentary", + "Reality" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 16, + "sizeOnDisk": 10703511767, + "releaseGroups": [ + "RARBG", + "PlayWEB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 28 + }, + { + "title": "The Outsider", + "alternateTitles": [ + { + "title": "El visitante", + "seasonNumber": -1 + }, + { + "title": "The Outsider", + "seasonNumber": -1 + } + ], + "sortTitle": "outsider", + "status": "ended", + "ended": true, + "overview": "Investigators are confounded over an unspeakable crime that's been committed.", + "previousAiring": "2020-03-09T01:00:00Z", + "network": "HBO", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/29/banner.jpg?lastWrite=638322812363785787", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/365480/banners/62051524.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/29/poster.jpg?lastWrite=638322812364025800", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/365480/posters/62042220.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/29/fanart.jpg?lastWrite=638322812364215811", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5dac8f56ca29d.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/29/clearlogo.png?lastWrite=638322812364325817", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/365480/clearlogo/611c1a8c21730.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-03-09T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 13529437033, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/The Outsider", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 55, + "tvdbId": 365480, + "tvRageId": 0, + "tvMazeId": 39956, + "firstAired": "2020-01-12T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theoutsider", + "imdbId": "tt8550800", + "titleSlug": "the-outsider", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Crime", + "Fantasy", + "Horror", + "Mystery" + ], + "tags": [], + "added": "2023-10-07T13:13:50Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 13529437033, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 29 + }, + { + "title": "The Offer", + "alternateTitles": [], + "sortTitle": "offer", + "status": "ended", + "ended": true, + "overview": "Oscar-winning producer Al Ruddy’s never before revealed experiences of making the iconic 1972 film The Godfather that Francis Coppola directed and adapted with Mario Puzo.", + "previousAiring": "2022-06-16T07:00:00Z", + "network": "Paramount+", + "airTime": "03:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/30/banner.jpg?lastWrite=638323683148171155", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/392770/banners/63af67e22ab52.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/30/poster.jpg?lastWrite=638323683148481171", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/392770/posters/623c5e9b7c7be.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/30/fanart.jpg?lastWrite=638323683149011199", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/392770/backgrounds/64de90279ba36.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-06-16T07:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 17672285282, + "releaseGroups": [ + "mimic" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/The Offer", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 59, + "tvdbId": 392770, + "tvRageId": 0, + "tvMazeId": 50416, + "firstAired": "2022-04-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theoffer", + "imdbId": "tt13111040", + "titleSlug": "the-offer", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Mini-Series" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 17672285282, + "releaseGroups": [ + "mimic" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 30 + }, + { + "title": "Too Old to Die Young", + "alternateTitles": [ + { + "title": "Demasiado viejo para morir joven", + "seasonNumber": -1 + } + ], + "sortTitle": "too old to die young", + "status": "ended", + "ended": true, + "overview": "In one tragic night, Los Angeles County Sheriff's Deputy Martin Jones's life is blown apart, and he is forced into a deadly underground of Cartel soldiers, Yakuza assassins, and mysterious vigilantes. Soon he finds himself lost on a surreal odyssey of murder, mysticism and vengeance, as his past sins close in on him.", + "previousAiring": "2019-06-14T04:00:00Z", + "network": "Amazon Prime Video", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/31/banner.jpg?lastWrite=638323683146221054", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5d0174ef36008.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/31/poster.jpg?lastWrite=638323683146601074", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/5cf3129619bd1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/31/fanart.jpg?lastWrite=638323683146941091", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5d2e2d8eafd60.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/31/clearlogo.png?lastWrite=638323683147111100", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/361979/clearlogo/611e89ec4e170.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-06-14T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9058025707, + "releaseGroups": [ + "METCON", + "NTG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2019, + "path": "/data/Too Old to Die Young", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 75, + "tvdbId": 361979, + "tvRageId": 0, + "tvMazeId": 25720, + "firstAired": "2019-06-14T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "toooldtodieyoung", + "imdbId": "tt6517320", + "titleSlug": "too-old-to-die-young", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Crime", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9058025707, + "releaseGroups": [ + "METCON", + "NTG" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 31 + }, + { + "title": "Vinyl", + "alternateTitles": [], + "sortTitle": "vinyl", + "status": "ended", + "ended": true, + "overview": "A New York music executive in the 1970s hustles to make a career out of the city's diverse music scene.", + "previousAiring": "2016-04-18T01:00:00Z", + "network": "HBO", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/32/banner.jpg?lastWrite=638323683146291057", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/299400-g5.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/32/poster.jpg?lastWrite=638323683146621075", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/299400-3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/32/fanart.jpg?lastWrite=638323683147371114", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/299400-3.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/32/clearlogo.png?lastWrite=638323683148091151", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/299400/clearlogo/611bde5096cbb.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2016-04-18T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 10037650753, + "releaseGroups": [ + "rovers", + "ROVERS", + "SA89" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2016, + "path": "/data/Vinyl", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 61, + "tvdbId": 299400, + "tvRageId": 50193, + "tvMazeId": 3603, + "firstAired": "2016-02-14T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "vinyl", + "imdbId": "tt3186130", + "titleSlug": "vinyl", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 10037650753, + "releaseGroups": [ + "rovers", + "ROVERS", + "SA89" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 32 + }, + { + "title": "Killing Eve", + "alternateTitles": [ + { + "title": "Megszállottak viadala", + "seasonNumber": -1 + } + ], + "sortTitle": "killing eve", + "status": "ended", + "ended": true, + "overview": "Two women — equally obsessed with each other — go head to head in an epic game of cat and mouse.", + "previousAiring": "2022-04-11T00:42:00Z", + "network": "BBC America", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/33/banner.jpg?lastWrite=638323683151811344", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/340959-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/33/poster.jpg?lastWrite=638323683152271368", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/340959/posters/5e8336febba23.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/33/fanart.jpg?lastWrite=638323683153311422", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/340959/backgrounds/5e83372f86eb0.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/33/clearlogo.png?lastWrite=638323683153461430", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/340959/clearlogo/611bb259853d5.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-05-28T00:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6770718650, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-05-27T00:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6343101809, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2020-06-01T00:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 7270020481, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2022-04-11T00:42:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6299608041, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Killing Eve", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 42, + "tvdbId": 340959, + "tvRageId": 0, + "tvMazeId": 22904, + "firstAired": "2018-04-08T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "killingeve", + "imdbId": "tt7016936", + "titleSlug": "killing-eve", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 4, + "episodeFileCount": 32, + "episodeCount": 32, + "totalEpisodeCount": 32, + "sizeOnDisk": 26683448981, + "releaseGroups": [ + "Pahe" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 33 + }, + { + "title": "Industry", + "alternateTitles": [], + "sortTitle": "industry", + "status": "continuing", + "ended": false, + "overview": "In the cutthroat world of international finance, a group of young graduates compete for a limited set of permanent positions at a top investment bank in London. The boundaries between colleague, friend, lover, and enemy soon blur as they immerse themselves in a company culture defined as much by sex, drugs and ego as it is by deals and dividends.", + "previousAiring": "2022-09-20T01:00:00Z", + "network": "HBO", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/34/banner.jpg?lastWrite=638323683153671441", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/371796/banners/5fa927fd158dc.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/34/poster.jpg?lastWrite=638323683153851450", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371796/posters/62e31c5d1d88a.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/34/fanart.jpg?lastWrite=638323683154391478", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/371796/backgrounds/5f9aa3b1b8754.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/34/clearlogo.png?lastWrite=638323683154471482", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/371796/clearlogo/611d08a6a9b46.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-12-22T02:52:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 4853763376, + "releaseGroups": [ + "GGWP", + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2022-09-20T01:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 5420117390, + "releaseGroups": [ + "FLUX", + "GGEZ", + "NTb", + "SHEEEIT" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/Industry", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 52, + "tvdbId": 371796, + "tvRageId": 0, + "tvMazeId": 45501, + "firstAired": "2020-11-09T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "industry", + "imdbId": "tt7671070", + "titleSlug": "industry", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 16, + "sizeOnDisk": 10273880766, + "releaseGroups": [ + "GGWP", + "NTb", + "FLUX", + "GGEZ", + "SHEEEIT" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 34 + }, + { + "title": "Ballers", + "alternateTitles": [ + { + "title": "Ballers 2014", + "seasonNumber": -1 + }, + { + "title": "Ballers 2015", + "seasonNumber": -1 + } + ], + "sortTitle": "ballers", + "status": "ended", + "ended": true, + "overview": "A series centered around a group of football players and their families, friends and handlers.", + "previousAiring": "2019-10-14T02:30:00Z", + "network": "HBO", + "airTime": "22:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/35/banner.jpg?lastWrite=638323683154481483", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/281714-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/35/poster.jpg?lastWrite=638323683154681493", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/281714-2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/35/fanart.jpg?lastWrite=638323683154931506", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/281714-7.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/35/clearlogo.png?lastWrite=638323683155351528", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/281714/clearlogo/611ba1a33b22e.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2015-08-24T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3489472566, + "releaseGroups": [ + "ROVERS", + "SERIOUSLY", + "Subs" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2016-09-26T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3489521397, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2017-09-25T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3724320814, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2018-10-08T02:30:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 3249051700, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2019-10-14T02:30:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2869688125, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2015, + "path": "/data/Ballers", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 29, + "tvdbId": 281714, + "tvRageId": 38517, + "tvMazeId": 1821, + "firstAired": "2015-06-21T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "ballers", + "imdbId": "tt2891574", + "titleSlug": "ballers", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Drama", + "Sport" + ], + "tags": [], + "added": "2023-10-08T13:25:10Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 5, + "episodeFileCount": 47, + "episodeCount": 47, + "totalEpisodeCount": 47, + "sizeOnDisk": 16822054602, + "releaseGroups": [ + "ROVERS", + "SERIOUSLY", + "Subs", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 35 + }, + { + "title": "Daisy Jones and The Six", + "alternateTitles": [ + { + "title": "Todos quieren a Daisy Jones", + "seasonNumber": -1 + } + ], + "sortTitle": "daisy jones and the six", + "status": "ended", + "ended": true, + "overview": "The series centers on the adventures of a fictional rock band in the 1970s, from their beginnings on the Los Angeles music scene to the incredible success that will make them one of the most legendary bands in the world.", + "previousAiring": "2023-03-24T04:50:00Z", + "network": "Amazon Prime Video", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/36/banner.jpg?lastWrite=638324345066300390", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/416580/banners/63f10416ee479.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/36/poster.jpg?lastWrite=638324345066430397", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/416580/posters/63ed102e2ae2f.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/36/fanart.jpg?lastWrite=638324345066660410", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/416580/backgrounds/63efe2aca4a35.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/36/clearlogo.png?lastWrite=638324345066870421", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/416580/clearlogo/63fa5915acb74.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-03-24T04:50:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 5675973304, + "releaseGroups": [ + "GLHF", + "playWEB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Daisy Jones and The Six", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 50, + "tvdbId": 416580, + "tvRageId": 0, + "tvMazeId": 37884, + "firstAired": "2023-03-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "daisyjonessix", + "imdbId": "tt8749198", + "titleSlug": "daisy-jones-and-the-six", + "rootFolderPath": "/data/", + "certification": "-16", + "genres": [ + "Drama", + "Mini-Series", + "Musical" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 5675973304, + "releaseGroups": [ + "GLHF", + "playWEB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 36 + }, + { + "title": "A Spy Among Friends", + "alternateTitles": [ + { + "title": "Un espía entre amigos", + "seasonNumber": -1 + }, + { + "title": "Una spia tra noi", + "seasonNumber": -1 + } + ], + "sortTitle": "spy among friends", + "status": "ended", + "ended": true, + "overview": "The series follows the defection of notorious British intelligence officer and KGB double agent, Kim Philby, through the lens of his complex relationship with MI6 colleague and close friend, Nicholas Elliott.\r\nThe show examines espionage through their friendship, the fallout of which affects East-West relations to this day.", + "previousAiring": "2022-12-08T21:00:00Z", + "network": "ITVX", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/37/banner.jpg?lastWrite=638324345066860420", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402296/banners/63f5a351a2cce.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/37/poster.jpg?lastWrite=638324345066990427", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402296/posters/6399751511734.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/37/fanart.jpg?lastWrite=638324345067430451", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402296/backgrounds/63922a308ac60.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/37/clearlogo.png?lastWrite=638324345067530456", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402296/clearlogo/63f5a3625d19c.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-12-08T21:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2969885154, + "releaseGroups": [ + "GGWP", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/A Spy Among Friends", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 55, + "tvdbId": 402296, + "tvRageId": 0, + "tvMazeId": 49118, + "firstAired": "2022-12-08T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "aspyamongfriends", + "imdbId": "tt15565872", + "titleSlug": "a-spy-among-friends", + "rootFolderPath": "/data/", + "genres": [ + "Drama", + "Mini-Series" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 7, + "sizeOnDisk": 2969885154, + "releaseGroups": [ + "GGWP", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 37 + }, + { + "title": "See", + "alternateTitles": [ + { + "title": "See - Reich der Blinden", + "seasonNumber": -1 + } + ], + "sortTitle": "see", + "status": "ended", + "ended": true, + "overview": "A virus has decimated humankind. Those who survived emerged blind. Centuries later when twins are born with the mythic ability to see, their father must protect his tribe against a threatened queen.", + "previousAiring": "2022-10-14T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/38/banner.jpg?lastWrite=638324345066440398", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5d7d7464cc1a6.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/38/poster.jpg?lastWrite=638324345066600406", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/361565/posters/61126bd10a396.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/38/fanart.jpg?lastWrite=638324345066870421", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5d7d736c44c80.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/38/clearlogo.png?lastWrite=638324345067020429", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/361565/clearlogo/611c03e1387ef.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-12-06T05:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 14530427002, + "releaseGroups": [ + "YAWNiX" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-10-14T04:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 5274128957, + "releaseGroups": [ + "PSA" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2022-10-14T04:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 5362597433, + "releaseGroups": [ + "PSA" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2019, + "path": "/data/See", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 53, + "tvdbId": 361565, + "tvRageId": 0, + "tvMazeId": 34345, + "firstAired": "2019-11-01T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "see", + "imdbId": "tt7949218", + "titleSlug": "see", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Action", + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 3, + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 24, + "sizeOnDisk": 25167153392, + "releaseGroups": [ + "YAWNiX", + "PSA" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 38 + }, + { + "title": "Barry", + "alternateTitles": [], + "sortTitle": "barry", + "status": "ended", + "ended": true, + "overview": "After following his intended target to an acting class, a hitman finds himself intrigued and decides to become an actor and change his life.", + "previousAiring": "2023-05-29T02:00:00Z", + "network": "HBO", + "airTime": "22:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/39/banner.jpg?lastWrite=638324345068170491", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/333072-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/39/poster.jpg?lastWrite=638324345068350501", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/333072-3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/39/fanart.jpg?lastWrite=638324345068650517", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/333072-3.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/39/clearlogo.png?lastWrite=638324345068720521", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/333072/clearlogo/611be3e7414ca.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-05-14T02:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2949611094, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-05-20T02:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 3081290056, + "releaseGroups": [ + "MEMENTO", + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2022-06-13T02:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2314538542, + "releaseGroups": [ + "DKV", + "KOGi", + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-29T02:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 3432719418, + "releaseGroups": [ + "HiggsBoson", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Barry", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 30, + "tvdbId": 333072, + "tvRageId": 0, + "tvMazeId": 11538, + "firstAired": "2018-03-25T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "barry", + "imdbId": "tt5348176", + "titleSlug": "barry", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy", + "Crime", + "Drama" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 4, + "episodeFileCount": 32, + "episodeCount": 32, + "totalEpisodeCount": 32, + "sizeOnDisk": 11778159110, + "releaseGroups": [ + "NTb", + "MEMENTO", + "DKV", + "KOGi", + "HiggsBoson" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 39 + }, + { + "title": "Hellsing", + "alternateTitles": [], + "sortTitle": "hellsing", + "status": "ended", + "ended": true, + "overview": "Hellsing is a Japanese manga series written and illustrated by Kouta Hirano. An Anime Series was produced by Gonzo. Directed by Umanosuke Iida, and it was broadcast on Japan's Fuji Televison. // Plot: Vampires exist. It is the duty of Hellsing, an organization sponsored by the British government, to hide that frightening fact and protect the blissfully unaware populace. Along with its own personal army, Hellsing also has a few secret weapons. Alucard, an incredibly powerful vampire, has been controlled by Hellsing for years. Although he dislikes being a servant to the Hellsing family, he certainly enjoys his job as Hellsing’s vampire exterminator. Seras is a fledgling vampire and a former police woman. Although reluctant to embrace her new self, she is still a valuable member of the organization. Integra Hellsing, the current leader, is usually fully capable of fulfilling her duty, but lately, vampire activity has been on the rise. Unfortunately, the cause is more alarming than anything she could have imagined...", + "previousAiring": "2002-01-16T03:00:00Z", + "network": "Fuji TV", + "airTime": "12:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/40/banner.jpg?lastWrite=638324345069610568", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/71278-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/40/poster.jpg?lastWrite=638324345069770577", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/71278-2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/40/fanart.jpg?lastWrite=638324345084541373", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/71278-14.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/40/clearlogo.png?lastWrite=638324345084651379", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/71278/clearlogo/611be0afe2a81.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2002-01-16T03:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 10523068287, + "releaseGroups": [ + "amb3r", + "CiNEFiLE", + "RedBlade" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2001, + "path": "/data/Hellsing", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 71278, + "tvRageId": 0, + "tvMazeId": 25, + "firstAired": "2001-10-10T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "hellsing", + "imdbId": "tt0325547", + "titleSlug": "hellsing", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Animation", + "Anime", + "Fantasy", + "Horror" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 14, + "sizeOnDisk": 10523068287, + "releaseGroups": [ + "amb3r", + "CiNEFiLE", + "RedBlade" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 40 + }, + { + "title": "Frasier (2023)", + "alternateTitles": [], + "sortTitle": "frasier 2023", + "status": "continuing", + "ended": false, + "overview": "This sequel to the venerable 1990s sitcom finds the titular character, psychiatrist-turned-radio host Frasier Crane, in a new city surrounded by a new cast of characters.", + "nextAiring": "2023-10-26T04:00:00Z", + "previousAiring": "2023-10-19T04:00:00Z", + "network": "Paramount+", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/41/banner.jpg?lastWrite=638324345071780685", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425711/banners/651c6a0752b39.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/41/poster.jpg?lastWrite=638330827118624433", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425711/posters/64e511a1b7fd9.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/41/fanart.jpg?lastWrite=638328665565605873", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425711/backgrounds/6519d92b7dc01.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-26T04:00:00Z", + "previousAiring": "2023-10-19T04:00:00Z", + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 10, + "sizeOnDisk": 987308306, + "releaseGroups": [ + "ETHEL" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Frasier (2023)", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 26, + "tvdbId": 425711, + "tvRageId": 0, + "tvMazeId": 53775, + "firstAired": "2023-10-12T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "frasier2023", + "imdbId": "tt14124236", + "titleSlug": "frasier-2023", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 11, + "sizeOnDisk": 987308306, + "releaseGroups": [ + "ETHEL" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 41 + }, + { + "title": "Bargain", + "alternateTitles": [], + "sortTitle": "bargain", + "status": "continuing", + "ended": false, + "overview": "No Hyung-Soo visits a motel room to see Park Joo-Young. He is pleased with her appearance and happy to pay for her services, but a surprise is waiting for No Hyung-Soo. He is soon surrounded by people who have come to buy his organs. They bargain over the price of his organs with Park Joo-Young conducting the auction, but an earthquake suddenly occurs. Within the collapsed building, they struggle to survive.", + "previousAiring": "2022-11-04T08:12:00Z", + "network": "TVING", + "airTime": "16:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/42/banner.jpg?lastWrite=638324345072170706", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424376/banners/6361ce00d8efe.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/42/poster.jpg?lastWrite=638324345072290713", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424376/posters/651ead86e97e6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/42/fanart.jpg?lastWrite=638324345072460722", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424376/backgrounds/64a3ce8855d94.jpg" + } + ], + "originalLanguage": { + "id": 21, + "name": "Korean" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-11-04T08:12:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 1954893661, + "releaseGroups": [ + "MeGusta" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Bargain", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 36, + "tvdbId": 424376, + "tvRageId": 0, + "tvMazeId": 64034, + "firstAired": "2022-10-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "bargain", + "imdbId": "tt23149640", + "titleSlug": "bargain", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Thriller" + ], + "tags": [], + "added": "2023-10-09T07:48:24Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 1954893661, + "releaseGroups": [ + "MeGusta" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 42 + }, + { + "title": "Steins;Gate", + "alternateTitles": [], + "sortTitle": "steinsgate", + "status": "ended", + "ended": true, + "overview": "Steins;Gate is about a group of friends who have customized their microwave into a device that can send text messages to the past. As they perform different experiments, an organization named SERN who has been doing their own research on time travel tracks them down and now the characters have to find a way to avoid being captured by them.", + "previousAiring": "2011-09-13T15:00:00Z", + "network": "TV Tokyo", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/43/banner.jpg?lastWrite=638325214146810169", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/244061-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/43/poster.jpg?lastWrite=638325214147100184", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/244061/posters/5f44d6fbaad70.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/43/fanart.jpg?lastWrite=638325214147260193", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/244061/backgrounds/5f44bef1d50a5.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/43/clearlogo.png?lastWrite=638325214147400201", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/244061/clearlogo/611b953687bb0.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 7, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2011-09-13T15:00:00Z", + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 24, + "sizeOnDisk": 8096117467, + "releaseGroups": [ + "ANiHLS", + "ENTE", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2011, + "path": "/data/Steins;Gate", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 244061, + "tvRageId": 28009, + "tvMazeId": 2051, + "firstAired": "2011-04-06T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "steinsgate", + "imdbId": "tt1910272", + "titleSlug": "steinsgate", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Animation", + "Anime", + "Comedy", + "Drama", + "Romance", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T07:56:51Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 31, + "sizeOnDisk": 8096117467, + "releaseGroups": [ + "ANiHLS", + "ENTE", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 43 + }, + { + "title": "The Animatrix", + "alternateTitles": [], + "sortTitle": "animatrix", + "status": "ended", + "ended": true, + "overview": "Straight from the creators of the groundbreaking Matrix trilogy, this collection of short animated films from the world's leading anime directors fuses computer graphics and Japanese anime to provide the background of the Matrix universe and the conflict between man and machines.", + "previousAiring": "2004-04-17T04:00:00Z", + "network": "Adult Swim", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/44/banner.jpg?lastWrite=638325214153800546", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/80468-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/44/poster.jpg?lastWrite=638325214154070561", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/80468-4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/44/fanart.jpg?lastWrite=638325214169121374", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/80468-2.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2004-04-17T04:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 5321835902, + "releaseGroups": [ + "Kawaiika-Raws" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2003, + "path": "/data/The Animatrix", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 12, + "tvdbId": 80468, + "tvRageId": 33243, + "tvMazeId": 67312, + "firstAired": "2003-03-21T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theanimatrix", + "imdbId": "tt0328832", + "titleSlug": "the-animatrix", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Animation", + "Drama", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T07:56:51Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 5321835902, + "releaseGroups": [ + "Kawaiika-Raws" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 44 + }, + { + "title": "Samurai Jack", + "alternateTitles": [], + "sortTitle": "samurai jack", + "status": "ended", + "ended": true, + "overview": "Made by Genndy Tartakovsky, this cartoon tells the story of a great warrior displaced to the distant future by the evil shape-shifting wizard Aku. The world has become a bleak place under the rule of Aku, segregated into fantastic tribes and ruled by Aku's evil robot warlords. Jack travels this foreign landscape in search of a time portal that can return him to his home time so he can \"undo the future that is Aku!\".", + "previousAiring": "2017-05-21T03:00:00Z", + "network": "Adult Swim", + "airTime": "23:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/45/banner.jpg?lastWrite=638325214142429932", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/75164-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/45/poster.jpg?lastWrite=638325214142589941", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/75164-4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/45/fanart.jpg?lastWrite=638325214142729948", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/75164-1.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/45/clearlogo.png?lastWrite=638325214142849955", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/75164/clearlogo/611bc08550a72.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 19, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2001-12-04T04:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2616914700, + "releaseGroups": [ + "pcroland", + "RedBlade" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2002-10-12T03:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2560130423, + "releaseGroups": [ + "pcroland" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2003-08-17T03:22:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2516222820, + "releaseGroups": [ + "pcroland" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2004-09-26T03:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2579034811, + "releaseGroups": [ + "pcroland" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2017-05-21T03:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 2151221890, + "releaseGroups": [ + "pcroland" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2001, + "path": "/data/Samurai Jack", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 22, + "tvdbId": 75164, + "tvRageId": 5094, + "tvMazeId": 1603, + "firstAired": "2001-08-10T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "samuraijack", + "imdbId": "tt0278238", + "titleSlug": "samurai-jack", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Adventure", + "Animation", + "Drama", + "Fantasy", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T07:56:51Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 5, + "episodeFileCount": 62, + "episodeCount": 62, + "totalEpisodeCount": 81, + "sizeOnDisk": 12423524644, + "releaseGroups": [ + "pcroland", + "RedBlade" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 45 + }, + { + "title": "Counterpart", + "alternateTitles": [], + "sortTitle": "counterpart", + "status": "ended", + "ended": true, + "overview": "After discovering that the spy agency he works for is hiding a gateway to a parallel dimension, a low-level UN bureaucrat in Berlin is thrust into a shadow world of intrigue and danger and must determine if he can trust his near-identical counterpart in the other world.", + "previousAiring": "2019-02-18T02:00:00Z", + "network": "STARZ", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/46/banner.jpg?lastWrite=638325214146130132", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/337302-g6.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/46/poster.jpg?lastWrite=638325214146270140", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/337302-4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/46/fanart.jpg?lastWrite=638325214146640160", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/337302-8.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/46/clearlogo.png?lastWrite=638325214146990178", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/337302/clearlogo/611bdb80d7729.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-04-02T01:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 6572284680, + "releaseGroups": [ + "YELLOWBiRD" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-02-18T02:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8660021150, + "releaseGroups": [ + "AMCON", + "CiELOS", + "MEMENTO", + "SiGMA" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Counterpart", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 55, + "tvdbId": 337302, + "tvRageId": 0, + "tvMazeId": 6456, + "firstAired": "2018-01-21T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "counterpart", + "imdbId": "tt4643084", + "titleSlug": "counterpart", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-10T07:56:51Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 20, + "episodeCount": 20, + "totalEpisodeCount": 20, + "sizeOnDisk": 15232305830, + "releaseGroups": [ + "YELLOWBiRD", + "AMCON", + "CiELOS", + "MEMENTO", + "SiGMA" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 46 + }, + { + "title": "Jujutsu Kaisen", + "alternateTitles": [ + { + "title": "Jujutsu Kaisen (TV)", + "sceneSeasonNumber": 1 + }, + { + "title": "Jujutsu Kaisen 2nd Season", + "sceneSeasonNumber": 2 + }, + { + "title": "Jujutsu Kaisen S2", + "sceneSeasonNumber": 2 + }, + { + "title": "Jujutsu Kaisen (2023)", + "sceneSeasonNumber": 2 + }, + { + "title": "Jujutsu Kaisen", + "seasonNumber": -1, + "sceneOrigin": "tvdb", + "comment": "SubsPlease" + } + ], + "sortTitle": "jujutsu kaisen", + "status": "continuing", + "ended": false, + "overview": "Yuji Itadori is a boy with tremendous physical strength, though he lives a completely ordinary high school life. One day, to save a friend who has been attacked by Curses, he eats a finger of Ryoumen Sukuna, taking the Curse into his own soul. From then on, he shares one body with Sukuna. Guided by the most powerful of sorcerers, Satoru Gojou, Itadori is admitted to the Tokyo Prefectural Jujutsu High School, an organization that fights the Curses... and thus begins the heroic tale of a boy who became a Curse to exorcise a Curse, a life from which he could never turn back.", + "nextAiring": "2023-10-26T14:45:00Z", + "previousAiring": "2023-10-19T14:45:00Z", + "network": "MBS", + "airTime": "23:45", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/47/banner.jpg?lastWrite=638325650088171203", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/377543/banners/5ff21083eda90.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/47/poster.jpg?lastWrite=638325650088331211", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/377543/posters/609cbb5bd37d8.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/47/fanart.jpg?lastWrite=638325650088571224", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/377543/backgrounds/5ffdc23c58fac.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/47/clearlogo.png?lastWrite=638325650088691231", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/377543/clearlogo/611c681d42ac0.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 4, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-03-27T14:45:00Z", + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 24, + "sizeOnDisk": 7371227126, + "releaseGroups": [ + "SHiNiGAMi", + "STARZ" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-26T14:45:00Z", + "previousAiring": "2023-10-19T14:45:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 23, + "sizeOnDisk": 5885323125, + "releaseGroups": [ + "AMB3R", + "LostYears", + "MUGiWARA", + "VARYG", + "Yameii" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/Jujutsu Kaisen", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": true, + "runtime": 24, + "tvdbId": 377543, + "tvRageId": 0, + "tvMazeId": 48450, + "firstAired": "2020-10-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "jujutsukaisen", + "imdbId": "tt12343534", + "titleSlug": "jujutsu-kaisen", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Adventure", + "Animation", + "Anime", + "Drama", + "Fantasy", + "Horror" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 37, + "episodeCount": 37, + "totalEpisodeCount": 51, + "sizeOnDisk": 13256550251, + "releaseGroups": [ + "SHiNiGAMi", + "STARZ", + "AMB3R", + "LostYears", + "MUGiWARA", + "VARYG", + "Yameii" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 47 + }, + { + "title": "Megalobox", + "alternateTitles": [ + { + "title": "NOMAD: Megalo Box 2", + "sceneSeasonNumber": 2 + }, + { + "title": "MEGALO BOX", + "sceneSeasonNumber": 1 + }, + { + "title": "Megalo Box 2 - Nomad", + "sceneSeasonNumber": 2 + }, + { + "title": "Megalo box", + "seasonNumber": -1 + } + ], + "sortTitle": "megalobox", + "status": "ended", + "ended": true, + "overview": "Junk Dog, an underground fighter with the alias of \"Gearless Joe\" sets out to join the worlds most prestigious mecha boxing championship, Megalonia.", + "previousAiring": "2021-06-27T14:00:00Z", + "network": "Tokyo MX", + "airTime": "23:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/48/banner.jpg?lastWrite=638325650090891350", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/341437-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/48/poster.jpg?lastWrite=638325650091011356", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/341437/posters/60b5fd94517a6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/48/fanart.jpg?lastWrite=638325650091171365", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/341437-2.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/48/clearlogo.png?lastWrite=638325650091301372", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/341437/clearlogo/611d4beb05eb8.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 4, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-06-29T14:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 3217551242, + "releaseGroups": [ + "ANiURL", + "KaiDubs" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2021-06-27T14:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 4212086855, + "releaseGroups": [ + "ASW", + "DKB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Megalobox", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": true, + "runtime": 24, + "tvdbId": 341437, + "tvRageId": 0, + "tvMazeId": 34729, + "firstAired": "2018-04-06T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "megalobox", + "imdbId": "tt7965802", + "titleSlug": "megalobox", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Action", + "Animation", + "Anime", + "Drama", + "Science Fiction", + "Sport" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 30, + "sizeOnDisk": 7429638097, + "releaseGroups": [ + "ANiURL", + "KaiDubs", + "ASW", + "DKB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 48 + }, + { + "title": "Beck: Mongolian Chop Squad", + "alternateTitles": [], + "sortTitle": "beck mongolian chop squad", + "status": "ended", + "ended": true, + "overview": "Tanaka Yukio, better known by his nickname Koyuki, is a 14-year-old who feels disconnected from life in general. Through the act of saving a mismatched dog, he meets guitarist Minami Ryuusuke, and becomes involved in Ryuusuke's new band BECK. Koyuki's life starts to change as the band struggles toward fame.", + "previousAiring": "2005-03-29T15:00:00Z", + "network": "TV Tokyo", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/49/banner.jpg?lastWrite=638325650086821130", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/75838-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/49/poster.jpg?lastWrite=638325650086941136", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/75838-3.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/49/fanart.jpg?lastWrite=638325650087051142", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/75838-1.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/49/clearlogo.png?lastWrite=638325650087151147", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/75838/clearlogo/611beee048f5e.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2005-03-29T15:00:00Z", + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 26, + "sizeOnDisk": 8853351104, + "releaseGroups": [ + "Reaktor" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2004, + "path": "/data/Beck - Mongolian Chop Squad", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 75838, + "tvRageId": 2747, + "tvMazeId": 12655, + "firstAired": "2004-10-06T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "beckmongolianchopsquad", + "imdbId": "tt0434662", + "titleSlug": "beck-mongolian-chop-squad", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Animation", + "Anime", + "Comedy", + "Drama", + "Romance" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 26, + "sizeOnDisk": 8853351104, + "releaseGroups": [ + "Reaktor" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 49 + }, + { + "title": "The Architect", + "alternateTitles": [], + "sortTitle": "architect", + "status": "ended", + "ended": true, + "overview": "When a project to build a thousand flats in Oslo is put out to tender, architect Julie has an idea: why not convert empty underground car parks into residential buildings? A pitch-black, keenly observed satire about an all-too-near future.", + "previousAiring": "2023-05-03T22:00:00Z", + "network": "Viaplay", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/50/banner.jpg?lastWrite=638325650103062009", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/434233/banners/64cd9cc4397c4.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/50/poster.jpg?lastWrite=638325650114262615", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/434233/posters/646310139f11f.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/50/fanart.jpg?lastWrite=638325650125333215", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/434233/backgrounds/644fea4cc9aab.jpg" + } + ], + "originalLanguage": { + "id": 15, + "name": "Norwegian" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-03T22:00:00Z", + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 747510888, + "releaseGroups": [ + "DB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/The Architect", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 19, + "tvdbId": 434233, + "tvRageId": 0, + "tvMazeId": 0, + "firstAired": "2023-05-04T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thearchitect", + "imdbId": "tt26340330", + "titleSlug": "the-architect", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Drama", + "Mini-Series" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 747510888, + "releaseGroups": [ + "DB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 50 + }, + { + "title": "A Cook's Tour", + "alternateTitles": [], + "sortTitle": "cooks tour", + "status": "ended", + "ended": true, + "overview": "A Cook's Tour: Global Adventures in Extreme Cuisines is a New York Times bestselling book written by chef and author Anthony Bourdain in 2001. It is Bourdain's account of his world travels — eating exotic local dishes and experiencing life as a native in each country. The book was simultaneously made into a television series featuring Bourdain for the Food Network.", + "previousAiring": "2003-06-27T04:00:00Z", + "network": "Food Network", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/51/banner.jpg?lastWrite=638325650093371484", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/81276-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/51/poster.jpg?lastWrite=638325650093501491", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/81276-1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/51/fanart.jpg?lastWrite=638325650093651499", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/81276-1.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2002-07-12T04:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 3740149792, + "releaseGroups": [ + "JiTB" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2003-06-27T04:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 2470624365, + "releaseGroups": [ + "JiTB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2002, + "path": "/data/A Cook's Tour", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 81276, + "tvRageId": 6908, + "tvMazeId": 18030, + "firstAired": "2002-01-08T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "acookstour", + "imdbId": "tt0306306", + "titleSlug": "a-cooks-tour", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Documentary", + "Reality" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 140, + "value": 9.0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 35, + "episodeCount": 35, + "totalEpisodeCount": 35, + "sizeOnDisk": 6210774157, + "releaseGroups": [ + "JiTB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 51 + }, + { + "title": "Gungrave", + "alternateTitles": [], + "sortTitle": "gungrave", + "status": "ended", + "ended": true, + "overview": "Brandon Heat, a silent and passive man, is living a laid back life with his friends. He`s got his eyes on Maria, but her father forbids their relationship. After the brutal murder of his friends and Maria`s father, Brandon is on the run together with the only friend he has left; Harry McDowell. When he finds out custody over Maria has been taken by Millennion, the largest mafia syndicate in town, he and Harry decide to join the syndicate. He goes through many hardships after joining the syndicate but he is willing to risk everything as long as he can be close to Maria.", + "previousAiring": "2004-03-28T15:00:00Z", + "network": "TV Tokyo", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/52/banner.jpg?lastWrite=638325650094961570", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/78963-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/52/poster.jpg?lastWrite=638325650095071576", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/78963-1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/52/fanart.jpg?lastWrite=638325650095181582", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/78963-1.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/52/clearlogo.png?lastWrite=638325650106532197", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/78963/clearlogo/611c346856235.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2004-03-28T15:00:00Z", + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 26, + "sizeOnDisk": 8781119150, + "releaseGroups": [ + "SiQ" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2003, + "path": "/data/Gungrave", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 78963, + "tvRageId": 1336, + "tvMazeId": 8201, + "firstAired": "2003-10-06T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "gungrave", + "imdbId": "tt0435961", + "titleSlug": "gungrave", + "rootFolderPath": "/data/", + "genres": [ + "Action", + "Animation", + "Anime", + "Crime", + "Drama", + "Horror", + "Mystery", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-10T20:03:27Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 26, + "episodeCount": 26, + "totalEpisodeCount": 26, + "sizeOnDisk": 8781119150, + "releaseGroups": [ + "SiQ" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 52 + }, + { + "title": "Lessons in Chemistry", + "alternateTitles": [ + { + "title": "Eine Frage der Chemie", + "seasonNumber": -1 + }, + { + "title": "Cocina con química", + "seasonNumber": -1 + } + ], + "sortTitle": "lessons in chemistry", + "status": "continuing", + "ended": false, + "overview": "In the 1950s, Elizabeth Zott’s dream of being a scientist is challenged by a society that says women belong in the domestic sphere. She accepts a job on a TV cooking show and sets out to teach a nation of overlooked housewives way more than recipes.", + "nextAiring": "2023-10-27T04:00:00Z", + "previousAiring": "2023-10-20T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/54/banner.jpg?lastWrite=638327824988335354", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/395685/banners/64777b2182af2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/54/poster.jpg?lastWrite=638328665586617031", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/395685/posters/64777d4b47650.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/54/fanart.jpg?lastWrite=638335150274251765", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/395685/backgrounds/6532bd13343ca.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/54/clearlogo.png?lastWrite=638327824988825382", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/395685/clearlogo/647a8b1373d16.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-27T04:00:00Z", + "previousAiring": "2023-10-20T04:00:00Z", + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 8, + "sizeOnDisk": 1880774411, + "releaseGroups": [ + "SuccessfulCrab" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Lessons in Chemistry", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 48, + "tvdbId": 395685, + "tvRageId": 0, + "tvMazeId": 53079, + "firstAired": "2023-10-13T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "lessonsinchemistry", + "imdbId": "tt13911628", + "titleSlug": "lessons-in-chemistry", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Mini-Series" + ], + "tags": [], + "added": "2023-10-13T08:28:18Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 9, + "sizeOnDisk": 1880774411, + "releaseGroups": [ + "SuccessfulCrab" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 54 + }, + { + "title": "Citadel", + "alternateTitles": [], + "sortTitle": "citadel", + "status": "continuing", + "ended": false, + "overview": "Eight years ago, Citadel, an independent global spy agency, was destroyed by a new syndicate, Manticore. With their memories wiped, elite agents Mason Kane and Nadia Sinh barely escaped with their lives. Eight years later, Mason’s former colleague, Bernard Orlic, asks for his help to prevent Manticore from establishing a new world order.", + "previousAiring": "2023-05-27T00:00:00Z", + "network": "Prime Video", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/55/banner.jpg?lastWrite=638329351206723447", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393268/banners/6406806e5cc3a.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/55/poster.jpg?lastWrite=638329351206923458", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393268/posters/640610115dbac.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/55/fanart.jpg?lastWrite=638329351207453487", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393268/backgrounds/640753e17c21b.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/55/clearlogo.png?lastWrite=638329351207623496", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393268/clearlogo/640c9703721b8.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 10, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-27T00:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 5087825803, + "releaseGroups": [ + "AMB3R", + "NTb", + "TURG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Citadel", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 42, + "tvdbId": 393268, + "tvRageId": 0, + "tvMazeId": 45834, + "firstAired": "2023-04-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "citadel", + "imdbId": "tt9794044", + "titleSlug": "citadel", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Drama", + "Science Fiction", + "Thriller" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 16, + "sizeOnDisk": 5087825803, + "releaseGroups": [ + "AMB3R", + "NTb", + "TURG" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 55 + }, + { + "title": "Race Across the World", + "alternateTitles": [], + "sortTitle": "race across the world", + "status": "continuing", + "ended": false, + "overview": "In a frenetic race across the world, travellers can choose any route they like - but no flights or smartphones allowed. Which pair will finish first?", + "previousAiring": "2023-05-10T20:59:00Z", + "network": "BBC One", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/56/banner.jpg?lastWrite=638329351206603440", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5d8f17c37884e.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/56/poster.jpg?lastWrite=638329351206923458", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/5ceed54eaf46b.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/56/fanart.jpg?lastWrite=638329351207573494", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/360116/backgrounds/5ec0424187f18.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2019-04-07T20:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 3215613420, + "releaseGroups": [ + "squalor" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2020-05-03T20:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 4813508567, + "releaseGroups": [ + "squalor" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-10T20:59:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 4270093653, + "releaseGroups": [ + "BTN", + "DARKFLiX", + "FFG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2019, + "path": "/data/Race Across the World", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 59, + "tvdbId": 360116, + "tvRageId": 0, + "tvMazeId": 38356, + "firstAired": "2019-03-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "raceacrossworld", + "imdbId": "tt9909248", + "titleSlug": "race-across-the-world", + "rootFolderPath": "/data/", + "genres": [ + "Documentary", + "Game Show", + "Reality", + "Travel" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 3, + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 25, + "sizeOnDisk": 12299215640, + "releaseGroups": [ + "squalor", + "BTN", + "DARKFLiX", + "FFG" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 56 + }, + { + "title": "Boardwalk Empire", + "alternateTitles": [], + "sortTitle": "boardwalk empire", + "status": "ended", + "ended": true, + "overview": "An Atlantic City politician plays both sides of the law by conspiring with gangsters during the Prohibition era.", + "previousAiring": "2014-10-27T01:00:00Z", + "network": "HBO", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/57/banner.jpg?lastWrite=638329351206653443", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/84947-g5.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/57/poster.jpg?lastWrite=638329351206813452", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/84947-4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/57/fanart.jpg?lastWrite=638329351207213474", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/84947-12.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/57/clearlogo.png?lastWrite=638329351207573494", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/84947/clearlogo/611b5aaf0fb49.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 24, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2010-12-06T02:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 51239341652, + "releaseGroups": [ + "BiRDHOUSE", + "d3g", + "decibeL" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2011-12-12T02:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 7128047613, + "releaseGroups": [ + "OFT" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2012-12-03T02:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 76824455842, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2013-11-25T02:00:00Z", + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 12, + "sizeOnDisk": 75214501251, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2014-10-27T01:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 49767525497, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2010, + "path": "/data/Boardwalk Empire", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 56, + "tvdbId": 84947, + "tvRageId": 23561, + "tvMazeId": 102, + "firstAired": "2010-09-19T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "boardwalkempire", + "imdbId": "tt0979432", + "titleSlug": "boardwalk-empire", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Crime", + "Drama", + "History" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 5, + "episodeFileCount": 56, + "episodeCount": 56, + "totalEpisodeCount": 80, + "sizeOnDisk": 260173871855, + "releaseGroups": [ + "BiRDHOUSE", + "d3g", + "decibeL", + "OFT" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 57 + }, + { + "title": "Taskmaster", + "alternateTitles": [], + "sortTitle": "taskmaster", + "status": "continuing", + "ended": false, + "overview": "Greg Davies is the Taskmaster, and with the help of his ever-loyal assistant Alex Horne, he will set out to test the wiles, wit, wisdom and skills of five celebrity contestants. At the end of the series, who will be crowned the Taskmaster champion?", + "nextAiring": "2023-10-26T20:00:00Z", + "previousAiring": "2023-10-19T20:00:00Z", + "network": "Channel 4", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/58/banner.jpg?lastWrite=638329351212793781", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/298905-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/58/poster.jpg?lastWrite=638329351212943789", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/5af6cb30c8ef7.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/58/fanart.jpg?lastWrite=638329351213203803", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/298905/backgrounds/62653ce9d4169.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/58/clearlogo.png?lastWrite=638329351213313809", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/298905/clearlogo/611c439bc7bc1.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 95, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2015-09-01T20:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2215605827, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2016-07-19T20:00:00Z", + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 5, + "sizeOnDisk": 1853504627, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2016-11-01T21:00:00Z", + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 5, + "sizeOnDisk": 1853313180, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2017-06-13T20:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2976676751, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2017-11-01T21:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2964183062, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2018-07-04T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3641151717, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2018-11-07T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3641817524, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 8, + "monitored": true, + "statistics": { + "previousAiring": "2019-07-10T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3644505338, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 9, + "monitored": true, + "statistics": { + "previousAiring": "2019-11-06T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3648411433, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 10, + "monitored": true, + "statistics": { + "previousAiring": "2020-12-17T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3886096540, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 11, + "monitored": true, + "statistics": { + "previousAiring": "2021-05-20T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3879825728, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 12, + "monitored": true, + "statistics": { + "previousAiring": "2021-11-25T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3883903360, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 13, + "monitored": true, + "statistics": { + "previousAiring": "2022-06-16T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3879540878, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 14, + "monitored": true, + "statistics": { + "previousAiring": "2022-12-01T21:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3860167668, + "releaseGroups": [ + "CBFM", + "PMP" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 15, + "monitored": true, + "statistics": { + "previousAiring": "2023-06-01T20:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3880044637, + "releaseGroups": [ + "RNG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 16, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-26T20:00:00Z", + "previousAiring": "2023-10-19T20:00:00Z", + "episodeFileCount": 5, + "episodeCount": 5, + "totalEpisodeCount": 10, + "sizeOnDisk": 1958260459, + "releaseGroups": [ + "EDITH", + "RNG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2015, + "path": "/data/Taskmaster", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 298905, + "tvRageId": 45162, + "tvMazeId": 2955, + "firstAired": "2015-07-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "taskmaster", + "imdbId": "tt4934214", + "titleSlug": "taskmaster", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Game Show" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 16, + "episodeFileCount": 137, + "episodeCount": 137, + "totalEpisodeCount": 237, + "sizeOnDisk": 51667008729, + "releaseGroups": [ + "NTb", + "CBFM", + "PMP", + "RNG", + "EDITH" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 58 + }, + { + "title": "Taste the Nation with Padma Lakshmi", + "alternateTitles": [ + { + "title": "Taste the Nation with Padma Lakshmi", + "seasonNumber": -1 + } + ], + "sortTitle": "taste the nation with padma lakshmi", + "status": "continuing", + "ended": false, + "overview": "Host Padma Lakshmi takes audiences on a journey across America, exploring the rich and diverse food culture of various immigrant groups, seeking out the people who have so heavily shaped what American food is today.", + "previousAiring": "2023-05-05T04:00:00Z", + "network": "Hulu", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/59/banner.jpg?lastWrite=638329351228674654", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/382650/banners/642e40a9c9968.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/59/poster.jpg?lastWrite=638329351228954669", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/382650/posters/5edf6c3aa7945.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/59/fanart.jpg?lastWrite=638329351229454697", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/382650/backgrounds/5edf6c517ef70.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 4, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2020-06-18T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 2911200098, + "releaseGroups": [ + "NTb", + "TRUMP" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-05T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 2989255996, + "releaseGroups": [ + "ETHEL", + "KOGi", + "SPAMnEGGS" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2020, + "path": "/data/Taste the Nation with Padma Lakshmi", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 32, + "tvdbId": 382650, + "tvRageId": 0, + "tvMazeId": 46600, + "firstAired": "2020-06-18T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "tastenationwithpadmalakshmi", + "imdbId": "tt12244950", + "titleSlug": "taste-the-nation-with-padma-lakshmi", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Adventure", + "Food", + "Reality" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 20, + "episodeCount": 20, + "totalEpisodeCount": 24, + "sizeOnDisk": 5900456094, + "releaseGroups": [ + "NTb", + "TRUMP", + "ETHEL", + "KOGi", + "SPAMnEGGS" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 59 + }, + { + "title": "Bob's Burgers", + "alternateTitles": [ + { + "title": "Bob Burger Falodaja", + "seasonNumber": -1 + }, + { + "title": "Bobs Burger", + "seasonNumber": -1 + }, + { + "title": "Bobs Burgers", + "seasonNumber": -1 + }, + { + "title": "Bobs Burgers (2011)", + "seasonNumber": -1 + } + ], + "sortTitle": "bobs burgers", + "status": "continuing", + "ended": false, + "overview": "Bob's Burgers follows a third-generation restaurateur, Bob, as he runs Bob's Burgers with the help of his wife and their three kids. Bob and his quirky family have big ideas about burgers, but fall short on service and sophistication. Despite the greasy counters, lousy location and a dearth of customers, Bob and his family are determined to make Bob's Burgers \"grand re-re-re-opening\" a success.", + "nextAiring": "2023-10-30T01:00:00Z", + "previousAiring": "2023-10-23T01:00:00Z", + "network": "FOX", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/60/banner.jpg?lastWrite=638329351217244025", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/194031-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/60/poster.jpg?lastWrite=638329351217524041", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/194031-2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/60/fanart.jpg?lastWrite=638329351217744053", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/194031-2.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/60/clearlogo.png?lastWrite=638329351217824057", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/194031/clearlogo/611b6f91c525b.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 9, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2011-05-23T01:00:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 3223342126, + "releaseGroups": [ + "PHOENiX", + "Proper-AsmoFuscated" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2012-05-21T01:00:00Z", + "episodeFileCount": 9, + "episodeCount": 9, + "totalEpisodeCount": 9, + "sizeOnDisk": 2220853019, + "releaseGroups": [ + "PHOENiX", + "Proper-AsmoFuscated" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2013-05-13T01:00:00Z", + "episodeFileCount": 23, + "episodeCount": 23, + "totalEpisodeCount": 23, + "sizeOnDisk": 5291246130, + "releaseGroups": [ + "iT00NZ", + "PHOCiS", + "Proper-AsmoFuscated" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2014-05-19T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 4915364807, + "releaseGroups": [ + "PHOCiS", + "Proper-AsmoFuscated" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2015-05-18T01:22:00Z", + "episodeFileCount": 21, + "episodeCount": 21, + "totalEpisodeCount": 21, + "sizeOnDisk": 5896450489, + "releaseGroups": [ + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2016-05-23T01:22:00Z", + "episodeFileCount": 19, + "episodeCount": 19, + "totalEpisodeCount": 19, + "sizeOnDisk": 5290011851, + "releaseGroups": [ + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2017-06-12T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 5742318343, + "releaseGroups": [ + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 8, + "monitored": true, + "statistics": { + "previousAiring": "2018-05-21T01:22:00Z", + "episodeFileCount": 21, + "episodeCount": 21, + "totalEpisodeCount": 21, + "sizeOnDisk": 5709727413, + "releaseGroups": [ + "AsmoFuscated", + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 9, + "monitored": true, + "statistics": { + "previousAiring": "2019-05-13T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 6499056723, + "releaseGroups": [ + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 10, + "monitored": true, + "statistics": { + "previousAiring": "2020-05-18T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 3817198186, + "releaseGroups": [ + "AsmoFuscated", + "PHOCiS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 11, + "monitored": true, + "statistics": { + "previousAiring": "2021-05-24T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 3372949471, + "releaseGroups": [ + "Goki" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 12, + "monitored": true, + "statistics": { + "previousAiring": "2022-05-23T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 4019430689, + "releaseGroups": [ + "AsmoFuscated", + "CAKES" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 13, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-22T01:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 3386881520, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 14, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-30T01:00:00Z", + "previousAiring": "2023-10-23T01:00:00Z", + "episodeFileCount": 3, + "episodeCount": 3, + "totalEpisodeCount": 5, + "sizeOnDisk": 476343452, + "releaseGroups": [ + "BAE", + "EDITH" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2011, + "path": "/data/Bob's Burgers", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 22, + "tvdbId": 194031, + "tvRageId": 24607, + "tvMazeId": 107, + "firstAired": "2011-01-09T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "bobsburgers", + "imdbId": "tt1561755", + "titleSlug": "bobs-burgers", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Animation", + "Comedy" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 14, + "episodeFileCount": 263, + "episodeCount": 263, + "totalEpisodeCount": 274, + "sizeOnDisk": 59861174219, + "releaseGroups": [ + "PHOENiX", + "Proper-AsmoFuscated", + "iT00NZ", + "PHOCiS", + "AsmoFuscated", + "Goki", + "CAKES", + "BAE", + "EDITH" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 60 + }, + { + "title": "Black Bird", + "alternateTitles": [ + { + "title": "Encerrado con el diablo", + "seasonNumber": -1 + }, + { + "title": "In With the Devil", + "seasonNumber": -1 + } + ], + "sortTitle": "black bird", + "status": "ended", + "ended": true, + "overview": "Inspired by actual events. As Jimmy Keene begins a 10-year prison sentence, he gets an incredible offer: If he can elicit a confession from suspected killer Larry Hall, Jimmy will be freed. Completing this mission becomes the challenge of a lifetime.", + "previousAiring": "2022-08-05T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/61/banner.jpg?lastWrite=638329351220884225", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/401998/banners/64b1028fea58a.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/61/poster.jpg?lastWrite=638329351221024233", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/401998/posters/6284393face6a.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/61/fanart.jpg?lastWrite=638329351221194242", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/401998/backgrounds/62a0d9f3da7a2.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/61/clearlogo.png?lastWrite=638329351221304248", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/401998/clearlogo/62b213c9671ab.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-08-05T04:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 15370632783, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Black Bird", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 58, + "tvdbId": 401998, + "tvRageId": 0, + "tvMazeId": 53147, + "firstAired": "2022-07-08T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "blackbird", + "imdbId": "tt4301160", + "titleSlug": "black-bird", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Crime", + "Drama", + "Mini-Series", + "Thriller" + ], + "tags": [], + "added": "2023-10-15T02:51:58Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 15370632783, + "releaseGroups": [ + "d3g" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 61 + }, + { + "title": "Blockbuster", + "alternateTitles": [], + "sortTitle": "blockbuster", + "status": "ended", + "ended": true, + "overview": "The staff of the last Blockbuster Video in America learns what it takes – and more specifically who it takes – for a small business to succeed against all odds.", + "previousAiring": "2022-11-03T04:00:00Z", + "network": "Netflix", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/62/banner.jpg?lastWrite=638329507797336950", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/414551/banners/6356946324381.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/62/poster.jpg?lastWrite=638329507797736972", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/414551/posters/634176f6a54df.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/62/fanart.jpg?lastWrite=638329507798076990", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/414551/backgrounds/63090368d8f0e.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-11-03T04:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 5427877697, + "releaseGroups": [ + "iVy" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Blockbuster", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 26, + "tvdbId": 414551, + "tvRageId": 0, + "tvMazeId": 58935, + "firstAired": "2022-11-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "blockbuster", + "imdbId": "tt16124614", + "titleSlug": "blockbuster", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 5427877697, + "releaseGroups": [ + "iVy" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 62 + }, + { + "title": "Parks and Recreation", + "alternateTitles": [], + "sortTitle": "parks and recreation", + "status": "ended", + "ended": true, + "overview": "The series follows Leslie Knope, the deputy head of the Parks and Recreation department in the fictional town of Pawnee, Indiana. Knope takes on a project with a nurse named Ann to turn a construction pit into a park, while trying to mentor a bored college-aged intern. However, Leslie must fight through the bureaucrats, problem neighbors, and developers in order to make her dream a reality, all with a camera crew recording her every gaff and mishap.", + "previousAiring": "2015-02-25T01:25:00Z", + "network": "NBC", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/63/banner.jpg?lastWrite=638329507791716641", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/84912-g8.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/63/poster.jpg?lastWrite=638329507792616690", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/84912-1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/63/fanart.jpg?lastWrite=638329507793026713", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/84912-14.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/63/clearlogo.png?lastWrite=638329507793186721", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/84912/clearlogo/611b5be99e332.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 13, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2009-05-15T00:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2252205422, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2010-05-21T00:00:00Z", + "episodeFileCount": 24, + "episodeCount": 24, + "totalEpisodeCount": 24, + "sizeOnDisk": 8967065533, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2011-05-20T00:25:00Z", + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 16, + "sizeOnDisk": 6056304174, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2012-05-11T00:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 8263847266, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2013-05-03T00:00:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 8106884142, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2014-04-25T00:25:00Z", + "episodeFileCount": 22, + "episodeCount": 22, + "totalEpisodeCount": 22, + "sizeOnDisk": 8279904243, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2015-02-25T01:25:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 5042607983, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2009, + "path": "/data/Parks and Recreation", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 25, + "tvdbId": 84912, + "tvRageId": 21686, + "tvMazeId": 174, + "firstAired": "2009-04-09T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "parksrecreation", + "imdbId": "tt1266020", + "titleSlug": "parks-and-recreation", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 7, + "episodeFileCount": 125, + "episodeCount": 125, + "totalEpisodeCount": 138, + "sizeOnDisk": 46968818763, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 63 + }, + { + "title": "Veep", + "alternateTitles": [ + { + "title": "Veep Die Vizepraesidentin", + "seasonNumber": -1 + } + ], + "sortTitle": "veep", + "status": "ended", + "ended": true, + "overview": "A look into American politics, revolving around former Senator Selina Meyer who finds being Vice President of the United States is nothing like she expected and everything everyone ever warned her about.", + "previousAiring": "2019-05-13T02:30:00Z", + "network": "HBO", + "airTime": "22:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/64/banner.jpg?lastWrite=638329507804317334", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/237831-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/64/poster.jpg?lastWrite=638329507804507344", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/237831-4.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/64/fanart.jpg?lastWrite=638329507805217383", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/237831-4.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/64/clearlogo.png?lastWrite=638329507805927422", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/237831/clearlogo/611b7c5925541.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2012-06-11T02:30:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 3709180674, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2013-06-24T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4675369820, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2014-06-09T03:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4739593622, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2015-06-15T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 4728883824, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2016-06-27T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9625464380, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2017-06-26T02:30:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 9197787248, + "releaseGroups": [ + "YELLOWBiRD" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 7, + "monitored": true, + "statistics": { + "previousAiring": "2019-05-13T02:30:00Z", + "episodeFileCount": 7, + "episodeCount": 7, + "totalEpisodeCount": 7, + "sizeOnDisk": 3797051964, + "releaseGroups": [ + "RARBG" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2012, + "path": "/data/Veep", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 30, + "tvdbId": 237831, + "tvRageId": 28149, + "tvMazeId": 142, + "firstAired": "2012-04-22T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "veep", + "imdbId": "tt1759761", + "titleSlug": "veep", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 7, + "episodeFileCount": 65, + "episodeCount": 65, + "totalEpisodeCount": 66, + "sizeOnDisk": 40473331532, + "releaseGroups": [ + "RARBG", + "YELLOWBiRD" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 64 + }, + { + "title": "SAS Rogue Heroes", + "alternateTitles": [ + { + "title": "Los hombres del S A S", + "seasonNumber": -1 + } + ], + "sortTitle": "sas rogue heroes", + "status": "continuing", + "ended": false, + "overview": "The dramatised account of how the world’s greatest Special Forces unit, the SAS, was formed under extraordinary circumstances in the darkest days of World War Two.", + "previousAiring": "2022-12-04T21:00:00Z", + "network": "BBC One", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/65/banner.jpg?lastWrite=638329507808157545", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/368401/banners/635fda607f50d.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/65/poster.jpg?lastWrite=638329507808717576", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/368401/posters/638d0989dd4c6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/65/fanart.jpg?lastWrite=638329507809777634", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/368401/backgrounds/63618b015cd60.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/65/clearlogo.png?lastWrite=638329507810257661", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/368401/clearlogo/639b7123ea385.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-12-04T21:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 11544140395, + "releaseGroups": [ + "YAWNiX" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/SAS Rogue Heroes", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 58, + "tvdbId": 368401, + "tvRageId": 0, + "tvMazeId": 43539, + "firstAired": "2022-10-30T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "sasrogueheroes", + "imdbId": "tt10405370", + "titleSlug": "sas-rogue-heroes", + "rootFolderPath": "/data/", + "genres": [ + "Action", + "Adventure", + "Drama", + "War" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 11544140395, + "releaseGroups": [ + "YAWNiX" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 65 + }, + { + "title": "Bake Off: The Professionals", + "alternateTitles": [], + "sortTitle": "bake off the professionals", + "status": "continuing", + "ended": false, + "overview": "Teams of professional pastry chefs do battle in the kitchen.\r\nChannel 4's replacement for BBC's Bake Off Crème de la Crème.", + "previousAiring": "2023-09-05T19:00:00Z", + "network": "Channel 4", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/66/banner.jpg?lastWrite=638329507805977425", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/5b248297a8acb.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/66/poster.jpg?lastWrite=638329507806437450", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/347046/posters/5edb5e08bc8e0.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/66/fanart.jpg?lastWrite=638329507806607460", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/5af6d64fe7676.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-07-08T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3750218815, + "releaseGroups": [ + "PLUTONiUM" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2019-06-14T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3877872216, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2020-07-28T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3877228151, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2021-07-27T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3876721991, + "releaseGroups": [ + "NTb" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2022-07-26T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 8143525861, + "releaseGroups": [ + "NGP", + "TEiLiFiS", + "WEBTUBE", + "WhiteHat" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2023-09-05T19:00:00Z", + "episodeFileCount": 10, + "episodeCount": 10, + "totalEpisodeCount": 10, + "sizeOnDisk": 3862149817, + "releaseGroups": [ + "CBFM", + "FaiLED" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/Bake Off - The Professionals", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 47, + "tvdbId": 347046, + "tvRageId": 0, + "tvMazeId": 34798, + "firstAired": "2018-05-06T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "bakeoffprofessionals", + "titleSlug": "bake-off-the-professionals", + "rootFolderPath": "/data/", + "genres": [ + "Food" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 6, + "episodeFileCount": 60, + "episodeCount": 60, + "totalEpisodeCount": 60, + "sizeOnDisk": 27387716851, + "releaseGroups": [ + "PLUTONiUM", + "NTb", + "NGP", + "TEiLiFiS", + "WEBTUBE", + "WhiteHat", + "CBFM", + "FaiLED" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 66 + }, + { + "title": "The Flatshare", + "alternateTitles": [], + "sortTitle": "flatshare", + "status": "ended", + "ended": true, + "overview": "Two twentysomethings try to get by – by sharing not only an apartment but a bed. Recovering from a controlling relationship, Tiffany spends her days earning minimum wage for minimum appreciation on a viral news website, while Leon works nightshifts in a hospice getting life advice from a terminally ill tween as he tries to free his wrongfully jailed brother. But, as the Post-its start to fly and each gets unexpectedly drawn into the other’s messy, complex life, an attraction evolves backwards. The question is – can you really fall in love with a person you’ve never set eyes on?", + "previousAiring": "2022-12-01T05:00:00Z", + "network": "Paramount+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/67/banner.jpg?lastWrite=638329507806577458", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425722/banners/638bfb931a14b.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/67/poster.jpg?lastWrite=638329507806767469", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425722/posters/642180f04b73b.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/67/fanart.jpg?lastWrite=638329507807207493", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/425722/backgrounds/638bab65d31d2.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2022-12-01T05:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 3311891882, + "releaseGroups": [ + "PlayWEB" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/The Flatshare", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 425722, + "tvRageId": 0, + "tvMazeId": 60736, + "firstAired": "2022-12-01T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "theflatshare", + "imdbId": "tt11714672", + "titleSlug": "the-flatshare", + "rootFolderPath": "/data/", + "genres": [ + "Comedy", + "Mini-Series", + "Romance" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 3311891882, + "releaseGroups": [ + "PlayWEB" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 67 + }, + { + "title": "Baking It", + "alternateTitles": [], + "sortTitle": "baking it", + "status": "continuing", + "ended": false, + "overview": "Contestant duos work together to create outstanding savoury and sweet creations for themed challenges with the hopes of winning a cash prize", + "previousAiring": "2023-01-09T08:00:00Z", + "network": "Peacock", + "airTime": "03:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/68/banner.jpg?lastWrite=638329507806977480", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402814/banners/6198b2bd7ddcd.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/68/poster.jpg?lastWrite=638329507807697520", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402814/posters/639dddf15ca21.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/68/fanart.jpg?lastWrite=638329507808427560", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402814/backgrounds/639dde1679bd5.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/68/clearlogo.png?lastWrite=638329507808807581", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/402814/clearlogo/61c3a69cda9d2.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 1, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2021-12-02T08:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 5546627807, + "releaseGroups": [ + "SiQ" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2023-01-09T08:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 5926891888, + "releaseGroups": [ + "SiQ" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2021, + "path": "/data/Baking It", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 47, + "tvdbId": 402814, + "tvRageId": 0, + "tvMazeId": 57106, + "firstAired": "2021-12-02T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "bakingit", + "imdbId": "tt15294684", + "titleSlug": "baking-it", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Food", + "Game Show", + "Reality" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 13, + "sizeOnDisk": 11473519695, + "releaseGroups": [ + "SiQ" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 68 + }, + { + "title": "Planet Sex with Cara Delevingne", + "alternateTitles": [], + "sortTitle": "planet sex with cara delevingne", + "status": "continuing", + "ended": false, + "overview": "On this immersive journey, Cara Delevingne puts her mind and body on the line in search of answers regarding human sexuality, its joys, mysteries, and constantly changing nature. In every episode, she shares her own personal experiences. Uniquely unfiltered and authentic, there's no limit on how far Cara's willing to go to explore what makes us all human.", + "previousAiring": "2023-01-05T22:00:00Z", + "network": "BBC Three", + "airTime": "22:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/69/banner.jpg?lastWrite=638329507808847583", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426222/banners/638e000a7f300.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/69/poster.jpg?lastWrite=638329507809837637", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426222/posters/6388dd20d65c2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/69/fanart.jpg?lastWrite=638329507810517675", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/426222/backgrounds/6388dc23b9e9a.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-01-05T22:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 4174063730, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + } + ], + "year": 2022, + "path": "/data/Planet Sex with Cara Delevingne", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 44, + "tvdbId": 426222, + "tvRageId": 0, + "tvMazeId": 65188, + "firstAired": "2022-12-01T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "planetsexwithcaradelevingne", + "imdbId": "tt13027412", + "titleSlug": "planet-sex-with-cara-delevingne", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 4174063730, + "releaseGroups": [], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 69 + }, + { + "title": "Maternal", + "alternateTitles": [], + "sortTitle": "maternal", + "status": "ended", + "ended": true, + "overview": "Maryam, a Paediatric Registrar, Catherine, a General and Trauma Surgeon, and Helen, a Registrar in Acute Medicine, each attempt to balance their increasingly demanding jobs in post-pandemic frontline medicine with their lives as new mothers.", + "previousAiring": "2023-02-20T21:00:00Z", + "network": "ITV1", + "airTime": "21:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/70/banner.jpg?lastWrite=638329507820518225", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424724/banners/63c6338ae08a3.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/70/poster.jpg?lastWrite=638329507832028858", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424724/posters/63c6f0d7bac34.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/70/fanart.jpg?lastWrite=638329507851999957", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/424724/backgrounds/63f904728dec3.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-02-20T21:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 4620174720, + "releaseGroups": [], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Maternal", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 424724, + "tvRageId": 0, + "tvMazeId": 65683, + "firstAired": "2023-01-16T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "maternal", + "imdbId": "tt21636214", + "titleSlug": "maternal", + "rootFolderPath": "/data/", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 4620174720, + "releaseGroups": [], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 70 + }, + { + "title": "Fawlty Towers", + "alternateTitles": [], + "sortTitle": "fawlty towers", + "status": "ended", + "ended": true, + "overview": "Hotel owner Basil Fawlty's incompetence, short fuse, and arrogance form a combination that ensures accidents and trouble are never far away.", + "previousAiring": "1979-10-25T19:00:00Z", + "network": "BBC Two", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/71/banner.jpg?lastWrite=638329507808537566", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/75932-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/71/poster.jpg?lastWrite=638329507808817581", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/75932-6.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/71/fanart.jpg?lastWrite=638329507809987646", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/75932-3.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/71/clearlogo.png?lastWrite=638329507810547676", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/75932/clearlogo/611b957ccada0.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 28, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "1975-10-24T19:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 3371025600, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "1979-10-25T19:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 3615358270, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 1975, + "path": "/data/Fawlty Towers", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 30, + "tvdbId": 75932, + "tvRageId": 3532, + "tvMazeId": 577, + "firstAired": "1975-09-19T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "fawltytowers", + "imdbId": "tt0072500", + "titleSlug": "fawlty-towers", + "rootFolderPath": "/data/", + "certification": "TV-PG", + "genres": [ + "Comedy" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 12, + "episodeCount": 12, + "totalEpisodeCount": 40, + "sizeOnDisk": 6986383870, + "releaseGroups": [ + "SHORTBREHD" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 71 + }, + { + "title": "Not Dead Yet", + "alternateTitles": [ + { + "title": "La muerte puede esperar", + "seasonNumber": -1 + } + ], + "sortTitle": "not dead yet", + "status": "continuing", + "ended": false, + "overview": "Nell Serrano, a broke, newly single and feeling old, self-described 40-something disaster, works to restart the life and career she left behind 10 years ago. When she lands the only job she can find – writing obituaries – Nell starts getting life advice from an unlikely source.", + "previousAiring": "2023-05-04T01:52:00Z", + "network": "ABC (US)", + "airTime": "21:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/72/banner.jpg?lastWrite=638329507809817636", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418389/banners/63d05801c8969.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/72/poster.jpg?lastWrite=638329507810297663", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418389/posters/63fe7a2a232f2.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/72/fanart.jpg?lastWrite=638329507810897696", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418389/backgrounds/63c9cdf614197.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/72/clearlogo.png?lastWrite=638329507811007702", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/418389/clearlogo/64016f51d5645.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-05-04T01:52:00Z", + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 3389211197, + "releaseGroups": [ + "LycanHD", + "NTb" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Not Dead Yet", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 22, + "tvdbId": 418389, + "tvRageId": 0, + "tvMazeId": 60502, + "firstAired": "2023-02-08T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "notdeadyet", + "imdbId": "tt18250904", + "titleSlug": "not-dead-yet", + "rootFolderPath": "/data/", + "certification": "TV-14", + "genres": [ + "Comedy", + "Fantasy" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 13, + "episodeCount": 13, + "totalEpisodeCount": 13, + "sizeOnDisk": 3389211197, + "releaseGroups": [ + "LycanHD", + "NTb" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 72 + }, + { + "title": "Extrapolations", + "alternateTitles": [ + { + "title": "Un futuro desafiante", + "seasonNumber": -1 + } + ], + "sortTitle": "extrapolations", + "status": "ended", + "ended": true, + "overview": "These intimate, interconnected stories explore how the upcoming changes to our planet will affect love, faith, work, and family.", + "previousAiring": "2023-04-21T04:00:00Z", + "network": "Apple TV+", + "airTime": "00:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/73/banner.jpg?lastWrite=638329507811907751", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393148/banners/6409ef00317a1.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/73/poster.jpg?lastWrite=638329507812597789", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393148/posters/640ee3f21b37a.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/73/fanart.jpg?lastWrite=638329507812977810", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393148/backgrounds/64479f57a2fbe.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/73/clearlogo.png?lastWrite=638329507813087816", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/393148/clearlogo/6442929993020.png" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2023-04-21T04:00:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6967160361, + "releaseGroups": [ + "iVy" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2023, + "path": "/data/Extrapolations", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 51, + "tvdbId": 393148, + "tvRageId": 0, + "tvMazeId": 58431, + "firstAired": "2023-03-17T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "extrapolations", + "imdbId": "tt13821126", + "titleSlug": "extrapolations", + "rootFolderPath": "/data/", + "certification": "TV-MA", + "genres": [ + "Drama", + "Mini-Series", + "Science Fiction" + ], + "tags": [], + "added": "2023-10-15T07:12:55Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 1, + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 6967160361, + "releaseGroups": [ + "iVy" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 73 + }, + { + "title": "State of Happiness", + "alternateTitles": [ + { + "title": "Lykkeland", + "seasonNumber": -1 + } + ], + "sortTitle": "state of happiness", + "status": "continuing", + "ended": false, + "overview": "The night before Christmas 1969, the gas flare at the Ocean Viking is lit. Phillips has found the largest sub sea oil basin in history. And everything is about to change.", + "previousAiring": "2022-02-20T19:15:00Z", + "network": "NRK1", + "airTime": "20:15", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/74/banner.jpg?lastWrite=638329519523372330", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/344464/banners/6420941daa114.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/74/poster.jpg?lastWrite=638329519523602343", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/344464/posters/64208daf0eb35.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/74/fanart.jpg?lastWrite=638329519538463159", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/344464/backgrounds/64208645f0a6a.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/74/clearlogo.png?lastWrite=638329519538693172", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/344464/clearlogo/64209ad989f65.png" + } + ], + "originalLanguage": { + "id": 15, + "name": "Norwegian" + }, + "seasons": [ + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2018-12-16T19:15:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2951097632, + "releaseGroups": [ + "SoH", + "WEBTUBE" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2022-02-20T19:15:00Z", + "episodeFileCount": 8, + "episodeCount": 8, + "totalEpisodeCount": 8, + "sizeOnDisk": 2970769328, + "releaseGroups": [ + "BAKFYLLA", + "SKYFiRE" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 2018, + "path": "/data/State of Happiness", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 46, + "tvdbId": 344464, + "tvRageId": 0, + "tvMazeId": 34492, + "firstAired": "2018-10-28T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "statehappiness", + "imdbId": "tt7005636", + "titleSlug": "state-of-happiness", + "rootFolderPath": "/data/", + "certification": "9+", + "genres": [ + "Drama" + ], + "tags": [], + "added": "2023-10-15T07:32:26Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 2, + "episodeFileCount": 16, + "episodeCount": 16, + "totalEpisodeCount": 16, + "sizeOnDisk": 5921866960, + "releaseGroups": [ + "SoH", + "WEBTUBE", + "BAKFYLLA", + "SKYFiRE" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 74 + }, + { + "title": "One Piece", + "alternateTitles": [], + "sortTitle": "one piece", + "status": "continuing", + "ended": false, + "overview": "The adventures of Monkey D. Luffy and his pirate crew in order to find the greatest treasure ever left by the legendary Pirate, Gold Roger. The famous mystery treasure named \"One Piece\".", + "nextAiring": "2023-10-29T00:30:00Z", + "previousAiring": "2023-10-22T00:30:00Z", + "network": "Fuji TV", + "airTime": "09:30", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/75/banner.jpg?lastWrite=638329522687986232", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/81797-g2.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/75/poster.jpg?lastWrite=638329522688516261", + "remoteUrl": "https://artworks.thetvdb.com/banners/series/81797/posters/5eec847d52a04.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/75/fanart.jpg?lastWrite=638329522688816277", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/81797/backgrounds/616009a8bd688.jpg" + }, + { + "coverType": "clearlogo", + "url": "/MediaCover/75/clearlogo.png?lastWrite=638329522689026289", + "remoteUrl": "https://artworks.thetvdb.com/banners/v4/series/81797/clearlogo/611b6189d88b6.png" + } + ], + "originalLanguage": { + "id": 8, + "name": "Japanese" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 50, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 8, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 2, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 22, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 3, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 17, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 4, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 13, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 5, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 9, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 6, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 22, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 7, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 39, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 8, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 13, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 9, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 52, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 10, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 31, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 11, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 99, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 12, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 56, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 13, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 100, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 14, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 35, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 15, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 62, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 16, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 49, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 17, + "monitored": true, + "statistics": { + "previousAiring": "2016-06-19T00:30:00Z", + "episodeFileCount": 118, + "episodeCount": 118, + "totalEpisodeCount": 118, + "sizeOnDisk": 32648815122, + "releaseGroups": [ + "AceAres", + "ANiURL", + "KS" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 18, + "monitored": true, + "statistics": { + "previousAiring": "2017-03-05T00:30:00Z", + "episodeFileCount": 33, + "episodeCount": 33, + "totalEpisodeCount": 33, + "sizeOnDisk": 8245317796, + "releaseGroups": [ + "KS", + "NanDesuKa", + "o7" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 19, + "monitored": true, + "statistics": { + "previousAiring": "2019-03-24T00:30:00Z", + "episodeFileCount": 98, + "episodeCount": 98, + "totalEpisodeCount": 98, + "sizeOnDisk": 52012543668, + "releaseGroups": [ + "ANiURL", + "Arukoru", + "Erai-raws", + "Hatsuyuki", + "NanDesuKa" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 20, + "monitored": true, + "statistics": { + "previousAiring": "2019-06-30T00:30:00Z", + "episodeFileCount": 14, + "episodeCount": 14, + "totalEpisodeCount": 14, + "sizeOnDisk": 4264073034, + "releaseGroups": [ + "AnimeRG", + "Hatsuyuki" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 21, + "monitored": true, + "statistics": { + "nextAiring": "2023-10-29T00:30:00Z", + "previousAiring": "2023-10-22T00:30:00Z", + "episodeFileCount": 189, + "episodeCount": 189, + "totalEpisodeCount": 191, + "sizeOnDisk": 119050033682, + "releaseGroups": [ + "AMB3R", + "Anime Time", + "AnimeDevil", + "ASW", + "Daddy", + "EMBER", + "Erai-raws", + "FFA", + "Fullmetal", + "HatSubs", + "Hatsuyuki", + "NanDesuKa", + "Ohi", + "Rexorria Team", + "SHiNiGAMi", + "Subs-Tan", + "USD", + "YuiSubs" + ], + "percentOfEpisodes": 100 + } + } + ], + "year": 1999, + "path": "/data/One Piece", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": true, + "runtime": 25, + "tvdbId": 81797, + "tvRageId": 8205, + "tvMazeId": 1505, + "firstAired": "1999-10-20T00:00:00Z", + "seriesType": "anime", + "cleanTitle": "onepiece", + "imdbId": "tt0388629", + "titleSlug": "one-piece", + "rootFolderPath": "/data/", + "certification": "TV-Y7", + "genres": [ + "Action", + "Adventure", + "Animation", + "Anime", + "Comedy", + "Drama", + "Fantasy" + ], + "tags": [], + "added": "2023-10-15T07:37:45Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 21, + "episodeFileCount": 452, + "episodeCount": 452, + "totalEpisodeCount": 1131, + "sizeOnDisk": 216220783302, + "releaseGroups": [ + "AceAres", + "ANiURL", + "KS", + "NanDesuKa", + "o7", + "Arukoru", + "Erai-raws", + "Hatsuyuki", + "AnimeRG", + "AMB3R", + "Anime Time", + "AnimeDevil", + "ASW", + "Daddy", + "EMBER", + "FFA", + "Fullmetal", + "HatSubs", + "Ohi", + "Rexorria Team", + "SHiNiGAMi", + "Subs-Tan", + "USD", + "YuiSubs" + ], + "percentOfEpisodes": 100 + }, + "languageProfileId": 1, + "id": 75 + }, + { + "title": "The Secret Life of 4, 5 and 6 Year Olds", + "alternateTitles": [], + "sortTitle": "secret life of 4 5 and 6 year olds", + "status": "ended", + "ended": true, + "overview": "How do young children make and break friendships and learn to share, stand up for themselves, and find their place in a new social group?", + "previousAiring": "2019-01-29T20:00:00Z", + "network": "Channel 4", + "airTime": "20:00", + "images": [ + { + "coverType": "banner", + "url": "/MediaCover/76/banner.jpg?lastWrite=638333642856840361", + "remoteUrl": "https://artworks.thetvdb.com/banners/graphical/304746-g.jpg" + }, + { + "coverType": "poster", + "url": "/MediaCover/76/poster.jpg?lastWrite=638333642857060372", + "remoteUrl": "https://artworks.thetvdb.com/banners/posters/304746-1.jpg" + }, + { + "coverType": "fanart", + "url": "/MediaCover/76/fanart.jpg?lastWrite=638333642872511209", + "remoteUrl": "https://artworks.thetvdb.com/banners/fanart/original/304746-1.jpg" + } + ], + "originalLanguage": { + "id": 1, + "name": "English" + }, + "seasons": [ + { + "seasonNumber": 0, + "monitored": false, + "statistics": { + "episodeFileCount": 0, + "episodeCount": 0, + "totalEpisodeCount": 5, + "sizeOnDisk": 0, + "releaseGroups": [], + "percentOfEpisodes": 0 + } + }, + { + "seasonNumber": 1, + "monitored": true, + "statistics": { + "previousAiring": "2015-12-10T20:00:00Z", + "episodeFileCount": 6, + "episodeCount": 6, + "totalEpisodeCount": 6, + "sizeOnDisk": 2405704215, + "releaseGroups": [ + "cbfm" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 2, + "monitored": true, + "statistics": { + "previousAiring": "2016-12-06T20:00:00Z", + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 1599340946, + "releaseGroups": [ + "cbfm", + "CBFM" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 3, + "monitored": true, + "statistics": { + "previousAiring": "2017-02-09T20:00:00Z", + "episodeFileCount": 2, + "episodeCount": 2, + "totalEpisodeCount": 2, + "sizeOnDisk": 805629038, + "releaseGroups": [ + "cbfm", + "CBFM" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 4, + "monitored": true, + "statistics": { + "previousAiring": "2017-11-28T20:00:00Z", + "episodeFileCount": 4, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 1590544958, + "releaseGroups": [ + "cbfm" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 5, + "monitored": true, + "statistics": { + "previousAiring": "2018-05-15T19:00:00Z", + "episodeFileCount": 2, + "episodeCount": 2, + "totalEpisodeCount": 2, + "sizeOnDisk": 793912314, + "releaseGroups": [ + "cbfm" + ], + "percentOfEpisodes": 100 + } + }, + { + "seasonNumber": 6, + "monitored": true, + "statistics": { + "previousAiring": "2019-01-29T20:00:00Z", + "episodeFileCount": 1, + "episodeCount": 4, + "totalEpisodeCount": 4, + "sizeOnDisk": 569430064, + "releaseGroups": [ + "MeGusta" + ], + "percentOfEpisodes": 25.00 + } + } + ], + "year": 2015, + "path": "/data/The Secret Life of 4, 5 and 6 Year Olds", + "qualityProfileId": 6, + "seasonFolder": true, + "monitored": true, + "useSceneNumbering": false, + "runtime": 45, + "tvdbId": 304746, + "tvRageId": 0, + "tvMazeId": 8159, + "firstAired": "2015-11-03T00:00:00Z", + "seriesType": "standard", + "cleanTitle": "thesecretlife456yearolds", + "imdbId": "tt6620876", + "titleSlug": "the-secret-life-of-4-5-and-6-year-olds", + "rootFolderPath": "/data/", + "genres": [ + "Documentary" + ], + "tags": [], + "added": "2023-10-20T02:04:43Z", + "ratings": { + "votes": 0, + "value": 0 + }, + "statistics": { + "seasonCount": 6, + "episodeFileCount": 19, + "episodeCount": 22, + "totalEpisodeCount": 27, + "sizeOnDisk": 7764561535, + "releaseGroups": [ + "cbfm", + "CBFM", + "MeGusta" + ], + "percentOfEpisodes": 86.36363636363636363636363636 + }, + "languageProfileId": 1, + "id": 76 + } +] \ No newline at end of file diff --git a/src/test/scala/WatchlistSyncSpec.scala b/src/test/scala/WatchlistSyncSpec.scala new file mode 100644 index 0000000..1ddd584 --- /dev/null +++ b/src/test/scala/WatchlistSyncSpec.scala @@ -0,0 +1,248 @@ + + +import cats.effect.IO +import cats.effect.unsafe.implicits.global +import configuration.Configuration +import http.HttpClient +import org.http4s.{Method, Uri} +import org.scalamock.scalatest.MockFactory +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers +import io.circe.parser._ + +import scala.concurrent.duration.DurationInt +import scala.io.Source + +class WatchlistSyncSpec extends AnyFlatSpec with Matchers with MockFactory { + private val plexWatchlistUrl = Uri.unsafeFromString("https://rss.plex.tv/one") + + "WatchlistSync.run" should "do a single sync with all required fields provided and nothing to update" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration() + defaultPlexMock(mockHttpClient) + defaultRadarrMock(mockHttpClient) + defaultSonarrMock(mockHttpClient) + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe() + } + + it should "make a sonarr request when a series needs to be added" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration() + val seriesToAdd = + """{ + | "title" : "Three-Body (2023)", + | "tvdbId" : 421555, + | "qualityProfileId" : 0, + | "rootFolderPath" : "/root/", + | "addOptions" : { + | "monitor" : "all", + | "searchForCutoffUnmetEpisodes" : true, + | "searchForMissingEpisodes" : true + | }, + | "monitored" : true + |}""".stripMargin + defaultPlexMock(mockHttpClient) + defaultRadarrMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/series"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("sonarr-missingshow.json").getLines().mkString("\n")))).once() + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/importlistexclusion"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("importlistexclusion.json").getLines().mkString("\n")))).once() + (mockHttpClient.httpRequest _).expects( + Method.POST, + Uri.unsafeFromString("https://localhost:8989/api/v3/series"), + Some("sonarr-api-key"), + parse(seriesToAdd).toOption + ).returning(IO.pure(parse("{}"))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe() + } + + it should "ignore sonarr exclusions when sonarrBypassIgnored = true" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration(sonarrBypassIgnored = true) + defaultPlexMock(mockHttpClient) + defaultRadarrMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/series"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("sonarr.json").getLines().mkString("\n")))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe() + } + + it should "make a radarr request when a movie needs to be added" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration() + val movieToAdd = + """{ + | "title" : "Oppenheimer (2023)", + | "tmdbId" : 872585, + | "qualityProfileId" : 1, + | "rootFolderPath" : "/root/", + | "addOptions" : { + | "searchForMovie" : true + | } + |}""".stripMargin + defaultPlexMock(mockHttpClient) + defaultSonarrMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/movie"), + Some("radarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("radarr-missingmovie.json").getLines().mkString("\n")))).once() + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/exclusions"), + Some("radarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("exclusions.json").getLines().mkString("\n")))).once() + (mockHttpClient.httpRequest _).expects( + Method.POST, + Uri.unsafeFromString("https://localhost:7878/api/v3/movie"), + Some("radarr-api-key"), + parse(movieToAdd).toOption + ).returning(IO.pure(parse("{}"))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe() + } + + it should "ignore radarr exclusions when radarrBypassIgnored = true" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration(radarrBypassIgnored = true) + defaultPlexMock(mockHttpClient) + defaultSonarrMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/movie"), + Some("radarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("radarr.json").getLines().mkString("\n")))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe() + } + + it should "not update sonarr if the initial sonarr call fails" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration() + defaultPlexMock(mockHttpClient) + defaultRadarrMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/series"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(Left(new UnknownError))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe () + } + + it should "not update radarr if the initial radarr call fails" in { + + val mockHttpClient = mock[HttpClient] + val config = createConfiguration() + defaultPlexMock(mockHttpClient) + (mockHttpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/movie"), + Some("radarr-api-key"), + None + ).returning(IO.pure(Left(new UnknownError))).once() + + val sync: Unit = WatchlistSync.run(config, mockHttpClient).unsafeRunSync() + + sync shouldBe () + } + + private def createConfiguration( + sonarrBypassIgnored: Boolean = false, + radarrBypassIgnored: Boolean = false + ): Configuration = Configuration( + refreshInterval = 10.seconds, + sonarrBaseUrl = Uri.unsafeFromString("https://localhost:8989"), + sonarrApiKey = "sonarr-api-key", + sonarrQualityProfileId = 0, + sonarrRootFolder = "/root/", + sonarrBypassIgnored = sonarrBypassIgnored, + sonarrSeasonMonitoring = "all", + radarrBaseUrl = Uri.unsafeFromString("https://localhost:7878"), + radarrApiKey = "radarr-api-key", + radarrQualityProfileId = 1, + radarrRootFolder = "/root/", + radarrBypassIgnored = radarrBypassIgnored, + plexWatchlistUrls = List(plexWatchlistUrl), + plexToken = None + ) + + private def defaultPlexMock(httpClient: HttpClient): HttpClient = { + (httpClient.httpRequest _).expects( + Method.GET, + plexWatchlistUrl, + None, + None + ).returning(IO.pure(parse(Source.fromResource("watchlist.json").getLines().mkString("\n")))).once() + httpClient + } + + private def defaultRadarrMock(httpClient: HttpClient): HttpClient = { + (httpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/movie"), + Some("radarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("radarr.json").getLines().mkString("\n")))).once() + (httpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:7878/api/v3/exclusions"), + Some("radarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("exclusions.json").getLines().mkString("\n")))).once() + httpClient + } + + private def defaultSonarrMock(httpClient: HttpClient): HttpClient = { + (httpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/series"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("sonarr.json").getLines().mkString("\n")))).once() + (httpClient.httpRequest _).expects( + Method.GET, + Uri.unsafeFromString("https://localhost:8989/api/v3/importlistexclusion"), + Some("sonarr-api-key"), + None + ).returning(IO.pure(parse(Source.fromResource("importlistexclusion.json").getLines().mkString("\n")))).once() + httpClient + } + +} diff --git a/src/test/scala/radarr/RadarrUtilsSpec.scala b/src/test/scala/radarr/RadarrUtilsSpec.scala index 53f1bcb..d50a48e 100644 --- a/src/test/scala/radarr/RadarrUtilsSpec.scala +++ b/src/test/scala/radarr/RadarrUtilsSpec.scala @@ -31,8 +31,10 @@ class RadarrUtilsSpec extends AnyFlatSpec with Matchers with RadarrUtils with Mo None ).returning(IO.pure(parse(exclusionsJsonStr))).once() - val result = fetchMovies(mockClient)("radarr-api-key", Uri.unsafeFromString("http://localhost:7878"), false).unsafeRunSync() + val eitherResult = fetchMovies(mockClient)("radarr-api-key", Uri.unsafeFromString("http://localhost:7878"), false).value.unsafeRunSync() + eitherResult shouldBe a[Right[_, _]] + val result = eitherResult.getOrElse(Set.empty) result.size shouldBe 157 result.head shouldBe Item("Judy", List("tt7549996", "tmdb://491283"), "movie") result.last shouldBe Item("Ghosted", List("tt15326988", "tmdb://868759"), "movie") @@ -55,8 +57,8 @@ class RadarrUtilsSpec extends AnyFlatSpec with Matchers with RadarrUtils with Mo None ).returning(IO.pure(parse("[]"))).once() - val result = fetchMovies(mockClient)("radarr-api-key", Uri.unsafeFromString("http://localhost:7878"), false).unsafeRunSync() + val eitherResult = fetchMovies(mockClient)("radarr-api-key", Uri.unsafeFromString("http://localhost:7878"), false).value.unsafeRunSync() - result.size shouldBe 0 + eitherResult shouldBe Right(Set.empty) } } diff --git a/src/test/scala/sonarr/SonarrUtilsSpec.scala b/src/test/scala/sonarr/SonarrUtilsSpec.scala index 7edd4dc..39d3897 100644 --- a/src/test/scala/sonarr/SonarrUtilsSpec.scala +++ b/src/test/scala/sonarr/SonarrUtilsSpec.scala @@ -31,8 +31,10 @@ class SonarrUtilsSpec extends AnyFlatSpec with Matchers with SonarrUtils with Mo None ).returning(IO.pure(parse(exclusionsJsonStr))).once() - val result = fetchSeries(mockClient)("sonarr-api-key", Uri.unsafeFromString("http://localhost:8989"), false).unsafeRunSync() + val eitherResult = fetchSeries(mockClient)("sonarr-api-key", Uri.unsafeFromString("http://localhost:8989"), false).value.unsafeRunSync() + eitherResult shouldBe a[Right[_, _]] + val result = eitherResult.getOrElse(Set.empty) result.size shouldBe 76 result.head shouldBe Item("The Secret Life of 4, 5 and 6 Year Olds", List("tt6620876", "tvdb://304746"), "show") result.last shouldBe Item("Maternal", List("tt21636214", "tvdb://424724"), "show") @@ -55,8 +57,8 @@ class SonarrUtilsSpec extends AnyFlatSpec with Matchers with SonarrUtils with Mo None ).returning(IO.pure(parse("[]"))).once() - val result = fetchSeries(mockClient)("sonarr-api-key", Uri.unsafeFromString("http://localhost:8989"), false).unsafeRunSync() + val eitherResult = fetchSeries(mockClient)("sonarr-api-key", Uri.unsafeFromString("http://localhost:8989"), false).value.unsafeRunSync() - result.size shouldBe 0 + eitherResult shouldBe Right(Set.empty) } }