Adding mocked plex for testing

This commit is contained in:
Jason House
2021-03-23 15:36:00 -04:00
parent 5cd3aaa171
commit 2bbcdbda04
13 changed files with 1693 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
+2 -1
View File
@@ -32,6 +32,7 @@ Core/target/
GapsWeb/target/
RadarrV3/target/
Plex/target/
MockedPlex/target/
/rssFeed.json
*.zip
@@ -50,4 +51,4 @@ cypress/videos
### Ignore everything in Gaps on Windows except startup
GapsAsJar/*
!GapsAsJar/start.bat
!GapsAsJar/gaps.nsi
!GapsAsJar/gaps.nsi
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>Gaps</artifactId>
<groupId>com.jasonhhouse</groupId>
<version>0.8.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>MockedPlex</artifactId>
<properties>
<start-class>com.jasonhhouse.gaps.MockedPlex</start-class>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,48 @@
/*
* Copyright 2019 Jason H House
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.jasonhhouse.mocked_plex;
import java.util.concurrent.Executor;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
/**
* Mocked Plex Main Application for Testing
*/
@SpringBootApplication
@EntityScan("com.jasonhhouse")
@EnableAsync
@EnableConfigurationProperties
@ConfigurationPropertiesScan
public class MockedPlexApplication {
public static void main(String[] args) {
SpringApplication.run(MockedPlexApplication.class, args);
}
@Bean
public Executor taskExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(1);
executor.setMaxPoolSize(1);
executor.setQueueCapacity(50);
executor.setThreadNamePrefix("MockedPlex-");
executor.initialize();
return executor;
}
}
@@ -0,0 +1,91 @@
/*
* Copyright 2020 Jason H House
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.jasonhhouse.mocked_plex.controller;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class MockedPlexController {
private static final Logger LOGGER = LoggerFactory.getLogger(MockedPlexController.class);
@GetMapping(path = "/",
produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity<String> getPlex(@RequestParam(value = "X-Plex-Token", required = false) final String xPlexToken) {
LOGGER.info("getPlex( {} )", xPlexToken);
return ResponseEntity.ok(getPlexXmlFile("plex.xml"));
}
@GetMapping(path = "/library/sections",
produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity<String> getPlexLibrarySections(@RequestParam(value = "X-Plex-Token", required = false) final String xPlexToken) {
LOGGER.info("getPlex( {} )", xPlexToken);
return ResponseEntity.ok(getPlexXmlFile("sections.xml"));
}
@GetMapping(path = "/library/sections/5/all",
produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity<String> getSaw(@RequestParam(value = "X-Plex-Token", required = false) final String xPlexToken) {
LOGGER.info("getPlex( {} )", xPlexToken);
return ResponseEntity.ok(getPlexXmlFile("saw.xml"));
}
@GetMapping(path = "/library/sections/4/all",
produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity<String> getBestMovies(@RequestParam(value = "X-Plex-Token", required = false) final String xPlexToken) {
LOGGER.info("getPlex( {} )", xPlexToken);
return ResponseEntity.ok(getPlexXmlFile("bestMovies.xml"));
}
@GetMapping(path = "/library/sections/6/all",
produces = MediaType.APPLICATION_XML_VALUE)
public ResponseEntity<String> getNewMetadata(@RequestParam(value = "X-Plex-Token", required = false) final String xPlexToken) {
LOGGER.info("getPlex( {} )", xPlexToken);
return ResponseEntity.ok(getPlexXmlFile("newMetadata.xml"));
}
private @NotNull String getPlexXmlFile(@NotNull String fileName) {
final File file;
try {
file = ResourceUtils.getFile("classpath:" + fileName);
try (BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), StandardCharsets.UTF_8))) {
StringBuilder fullFile = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
fullFile.append(line);
}
return fullFile.toString();
} catch (IOException e) {
LOGGER.error(String.format("Failed to read file %s", fileName), e);
return "";
}
} catch (FileNotFoundException e) {
LOGGER.error(String.format("Failed to find file %s", fileName), e);
return "";
}
}
}
+17
View File
@@ -0,0 +1,17 @@
#Copyright 2019 Jason H House
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Maximum time the response should be cached (in seconds)
# The cache must re-validate stale resources with the server. Any expired resources must not be used without re-validating.
# The resources are public and any cache may store the response.
logging:
level:
root: INFO
server:
port: 32400
@@ -0,0 +1,691 @@
<?xml version="1.0" encoding="UTF-8"?>
<MediaContainer size="27" allowSync="1" art="/:/resources/movie-fanart.jpg" identifier="com.plexapp.plugins.library"
librarySectionID="4" librarySectionTitle="Best Movies"
librarySectionUUID="4f7abfee-824d-485b-906a-27c917e222d5" mediaTagPrefix="/system/bundle/media/flags/"
mediaTagVersion="1615295203" thumb="/:/resources/movie.png" title1="Best Movies"
title2="All Best Movies" viewGroup="movie" viewMode="65592">
<Video ratingKey="48505" key="/library/metadata/48505" guid="plex://movie/5d776a3cad5437001f7769e8"
studio="DC Comics" type="movie" title="Batman v Superman: Dawn of Justice" contentRating="PG-13"
summary="Fearing the actions of a god-like Super Hero left unchecked, Gotham City&#8217;s own formidable, forceful vigilante takes on Metropolis&#8217;s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it&#8217;s ever known before."
rating="2.8" audienceRating="6.2" year="2016" tagline="Justice or revenge"
thumb="/library/metadata/48505/thumb/1601864979" art="/library/metadata/48505/art/1601864979"
duration="10953673" originallyAvailableAt="2016-03-19" addedAt="1516287600" updatedAt="1601864979"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48507" ratingImage="rottentomatoes://image.rating.rotten">
<Media id="72951" duration="10953673" bitrate="34950" width="1920" height="1080" aspectRatio="1.78"
audioChannels="8" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73015" key="/library/parts/73015/1516287600/file.mkv" duration="10953673"
file="/data/gaps/Best Movies/Batman v Superman Dawn of Justice (2016)/Batman v Superman Dawn of Justice (2016).mkv"
size="47804540207" audioProfile="ma" container="mkv" hasThumbnail="1" indexes="sd"
videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Fantasy"/>
<Director tag="Zack Snyder"/>
<Writer tag="David S. Goyer"/>
<Writer tag="Frank Miller"/>
<Country tag="United States of America"/>
<Role tag="Ben Affleck"/>
<Role tag="Henry Cavill"/>
<Role tag="Jesse Eisenberg"/>
</Video>
<Video ratingKey="48534" key="/library/metadata/48534" guid="plex://movie/5d7770b9594b2b001e750506"
studio="Warner Bros. Animation" type="movie" title="Batman vs Teenage Mutant Ninja Turtles"
contentRating="PG-13"
summary="Batman, Batgirl and Robin forge an alliance with the Teenage Mutant Ninja Turtles to fight against the Turtles&#39; sworn enemy, The Shredder, who has apparently teamed up with Ra&#39;s Al Ghul and The League of Assassins."
rating="10.0" audienceRating="8.5" year="2019" tagline="Who Will Lead Them?"
thumb="/library/metadata/48534/thumb/1601864983" art="/library/metadata/48534/art/1601864983"
duration="5222216" originallyAvailableAt="2019-03-31" addedAt="1560006000" updatedAt="1601864983"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48535" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73034" duration="5222216" bitrate="14110" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73098" key="/library/parts/73098/1560006000/file.mkv" duration="5222216"
file="/data/gaps/Best Movies/Batman vs. Teenage Mutant Ninja Turtles (2019)/Batman vs. Teenage Mutant Ninja Turtles (2019).mkv"
size="9097120891" audioProfile="ma" container="mkv" hasThumbnail="1" indexes="sd"
videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Jake Castorena"/>
<Writer tag="Marly Halpern-Graser"/>
<Country tag="United States of America"/>
<Role tag="Troy Baker"/>
<Role tag="Eric Bauza"/>
<Role tag="Darren Criss"/>
</Video>
<Video ratingKey="48506" key="/library/metadata/48506" guid="plex://movie/5d776b6cfb0d55001f56787f"
studio="DC Entertainment" type="movie" title="Batman vs. Robin" contentRating="PG-13"
summary="Damian Wayne is having a hard time coping with his father&#39;s &#34;no killing&#34; rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls."
rating="10.0" audienceRating="7.8" year="2015" tagline="The showdown that will define a destiny"
thumb="/library/metadata/48506/thumb/1601864980" art="/library/metadata/48506/art/1601864980"
duration="4800083" originallyAvailableAt="2015-04-03" addedAt="1521903600" updatedAt="1601864980"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48533" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="72952" duration="4800083" bitrate="4504" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73016" key="/library/parts/73016/1521903600/file.mkv" duration="4800083"
file="/data/gaps/Best Movies/Batman vs. Robin (2015)/Batman vs. Robin (2015).mkv" size="2703877141"
audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Jay Oliva"/>
<Writer tag="Peter Tomasi"/>
<Writer tag="Bob Kane"/>
<Country tag="United States of America"/>
<Role tag="Jason O&#39;Mara"/>
<Role tag="Stuart Allan"/>
<Role tag="David McCallum"/>
</Video>
<Video ratingKey="48536" key="/library/metadata/48536" guid="plex://movie/5d776d54fb0d55001f59d6f4"
studio="DC Entertainment" type="movie" title="Batman vs. Two-Face" contentRating="PG"
summary="Former Gotham City District Attorney Harvey Dent, one side of his face scarred by acid, goes on a crime spree based on the number &#39;2&#39;. All of his actions are decided by the flip of a defaced, two-headed silver dollar."
rating="10.0" audienceRating="6.0" year="2017" tagline="Everyone must face their demons."
thumb="/library/metadata/48536/thumb/1601864987" art="/library/metadata/48536/art/1601864987"
duration="4327914" originallyAvailableAt="2017-10-08" addedAt="1516287600" updatedAt="1601864987"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48540"
ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73038" duration="4327914" bitrate="8718" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73102" key="/library/parts/73102/1516287600/file.mkv" duration="4327914"
file="/data/gaps/Best Movies/Batman vs. Two-Face (2017)/Batman vs. Two-Face (2017).mkv"
size="4702621756" audioProfile="ma" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Rick Morales"/>
<Writer tag="Michael Jelenic"/>
<Writer tag="James Tucker"/>
<Country tag="United States of America"/>
<Role tag="Adam West"/>
<Role tag="Burt Ward"/>
<Role tag="William Shatner"/>
</Video>
<Video ratingKey="48497" key="/library/metadata/48497" guid="plex://movie/5d776c6696b655001fe2f66f"
studio="Warner Premiere" type="movie" title="Batman: Return of the Caped Crusaders" contentRating="PG"
summary="Adam West and Burt Ward returns to their iconic roles of Batman and Robin. The film sees the superheroes going up against classic villains like The Joker, The Riddler, The Penguin and Catwoman, both in Gotham City&#8230; and in space."
rating="9.4" audienceRating="6.7" year="2016" tagline="The crusade continues..."
thumb="/library/metadata/48497/thumb/1601864977" art="/library/metadata/48497/art/1601864977"
duration="4697780" originallyAvailableAt="2016-10-11" addedAt="1549119600" updatedAt="1601864977"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48500" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="72934" duration="4697780" bitrate="7991" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="72998" key="/library/parts/72998/1549119600/file.mkv" duration="4697780"
file="/data/gaps/Best Movies/Batman Return of the Caped Crusaders (2016)/Batman Return of the Caped Crusaders (2016).mkv"
size="4693797720" audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Rick Morales"/>
<Writer tag="Michael Jelenic"/>
<Writer tag="James Tucker"/>
<Country tag="United States of America"/>
<Role tag="Adam West"/>
<Role tag="Burt Ward"/>
<Role tag="Julie Newmar"/>
</Video>
<Video ratingKey="48498" key="/library/metadata/48498" guid="plex://movie/5d7769ac9ab54400214f5333"
studio="DC Comics" type="movie" title="Batman: The Dark Knight Returns, Part 2" contentRating="PG-13"
summary="Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman."
audienceRating="9.4" year="2013"
tagline="Justice Returns... Vengeance Returns... Redemption Comes to Gotham."
thumb="/library/metadata/48498/thumb/1601864977" art="/library/metadata/48498/art/1601864977"
duration="4549257" originallyAvailableAt="2013-01-27" addedAt="1516287600" updatedAt="1601864977"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48504">
<Media id="72935" duration="4549257" bitrate="8029" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="72999" key="/library/parts/72999/1516287600/file.mkv" duration="4549257"
file="/data/gaps/Best Movies/Batman The Dark Knight Returns, Part 2 (2013)/Batman The Dark Knight Returns, Part 2 (2013).mkv"
size="4567109546" audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Jay Oliva"/>
<Writer tag="Frank Miller"/>
<Writer tag="Bob Kane"/>
<Country tag="United States of America"/>
<Role tag="Peter Weller"/>
<Role tag="Ariel Winter"/>
<Role tag="David Selby"/>
</Video>
<Video ratingKey="48499" key="/library/metadata/48499" guid="plex://movie/5d7768740ea56a001e2a574f"
studio="DC Comics" type="movie" title="Batman: Under the Red Hood" contentRating="PG-13"
summary="Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code."
rating="10.0" audienceRating="9.2" year="2010" tagline="Dare to Look Beneath the Hood."
thumb="/library/metadata/48499/thumb/1601864977" art="/library/metadata/48499/art/1601864977"
duration="4550560" originallyAvailableAt="2010-06-10" addedAt="1516287600" updatedAt="1601864977"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48503"
ratingImage="rottentomatoes://image.rating.ripe">
<Media id="72936" duration="4550560" bitrate="8263" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73000" key="/library/parts/73000/1516287600/file.mkv" duration="4550560"
file="/data/gaps/Best Movies/Batman Under the Red Hood (2010)/Batman Under the Red Hood (2010).mkv"
size="4701095552" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Drama"/>
<Genre tag="Action/Adventure"/>
<Director tag="Brandon Vietti"/>
<Writer tag="Bob Kane"/>
<Writer tag="Jay Oliva"/>
<Country tag="United States of America"/>
<Role tag="Bruce Greenwood"/>
<Role tag="Jensen Ackles"/>
<Role tag="Neil Patrick Harris"/>
</Video>
<Video ratingKey="48537" key="/library/metadata/48537" guid="plex://movie/5d7768af594b2b001e692b62"
studio="DC Comics" type="movie" title="Batman: Year One" contentRating="PG-13"
summary="Two men come to Gotham City: Bruce Wayne after years abroad feeding his lifelong obsession for justice and Jim Gordon after being too honest a cop with the wrong people elsewhere. After learning painful lessons about the city&#39;s corruption on its streets and police department respectively, this pair learn how to fight back their own way. With that, Gotham&#39;s evildoers from top to bottom are terrorized by the mysterious Batman and the equally heroic Gordon is assigned to catch him by comrades who both hate and fear him themselves. In the ensuing manhunt, both find much in common as the seeds of an unexpected friendship are laid with additional friends and rivals helping to start the legend."
rating="8.8" audienceRating="7.9" year="2011" tagline="A merciless crime turns a man into an outlaw."
thumb="/library/metadata/48537/thumb/1601864987" art="/library/metadata/48537/art/1601864987"
duration="3849888" originallyAvailableAt="2011-10-06" addedAt="1516287600" updatedAt="1601864987"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48539" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73039" duration="3849888" bitrate="5849" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73103" key="/library/parts/73103/1516287600/file.mkv" duration="3849888"
file="/data/gaps/Best Movies/Batman Year One (2011)/Batman Year One (2011).mkv" size="2816010159"
audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Lauren Montgomery"/>
<Director tag="Sam Liu"/>
<Writer tag="Frank Miller"/>
<Country tag="United States of America"/>
<Role tag="Bryan Cranston"/>
<Role tag="Ben McKenzie"/>
<Role tag="Eliza Dushku"/>
</Video>
<Video ratingKey="48538" key="/library/metadata/48538" guid="plex://movie/5d776a82594b2b001e6be438" studio="GONZO"
type="movie" title="Bayonetta: Bloody Fate"
originalTitle="&#12505;&#12520;&#12493;&#12483;&#12479; &#12502;&#12521;&#12483;&#12487;&#12451;&#12501;&#12455;&#12452;&#12488;"
contentRating="TV-MA"
summary="Bayonetta: Bloody Fate follows the story of the witch Bayonetta, as she defeats the blood-thirsty Angels and tries to remember her past from before the time she awoke, 20 years ago. Along her side are a mysterious little girl who keeps calling her &#34;Mummy&#34;, a journalist that holds a personal grudge against Bayonetta and a unknown white-haired woman who seems to know more than she is willing to reveal about Bayonetta&#39;s time before her sleep."
audienceRating="4.6" year="2013" thumb="/library/metadata/48538/thumb/1601864988"
art="/library/metadata/48538/art/1601864988" duration="5411456" originallyAvailableAt="2013-10-22"
addedAt="1516287600" updatedAt="1601864988" audienceRatingImage="rottentomatoes://image.rating.spilled"
primaryExtraKey="/library/metadata/48543">
<Media id="73040" duration="5411456" bitrate="10408" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73104" key="/library/parts/73104/1516287600/file.mkv" duration="5411456"
file="/data/gaps/Best Movies/Bayonetta Bloody Fate (2013)/Bayonetta Bloody Fate (2013).mkv"
size="7042025410" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Fuminori Kizaki"/>
<Writer tag="Mitsutaka Hirota"/>
<Country tag="Japan"/>
<Role tag="Atsuko Tanaka"/>
<Role tag="Mie Sonozaki"/>
<Role tag="Wataru Takagi"/>
</Video>
<Video ratingKey="48544" key="/library/metadata/48544" guid="plex://movie/5d776d19fb0d55001f597b0b"
studio="Walt Disney Animation Studios" type="movie" title="Beauty and the Beast" contentRating="G"
summary="Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who&#39;s been turned into a mysterious beast. With the help of the castle&#39;s enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within."
rating="9.4" audienceRating="9.2" year="1991" tagline="The most beautiful love story ever told."
thumb="/library/metadata/48544/thumb/1601864989" art="/library/metadata/48544/art/1601864989"
duration="5093536" originallyAvailableAt="1991-09-29" addedAt="1582988400" updatedAt="1601864989"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48545" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73056" duration="5093536" bitrate="93191" width="3840" height="2160" aspectRatio="1.78"
audioChannels="8" audioCodec="truehd" videoCodec="hevc" videoResolution="4k" container="mkv"
videoFrameRate="24p" videoProfile="main 10">
<Part id="73120" key="/library/parts/73120/1582988400/file.mkv" duration="5093536"
file="/data/gaps/Best Movies/Beauty and the Beast (1991)/Beauty and the Beast (1991) Remux-2160p.mkv"
size="59335176565" container="mkv" hasThumbnail="1" indexes="sd" videoProfile="main 10"/>
</Media>
<Genre tag="Romance"/>
<Genre tag="Family"/>
<Director tag="Gary Trousdale"/>
<Director tag="Kirk Wise"/>
<Writer tag="Joe Ranft"/>
<Writer tag="Kelly Asbury"/>
<Country tag="United States of America"/>
<Role tag="Paige O&#39;Hara"/>
<Role tag="Robby Benson"/>
<Role tag="Richard White"/>
</Video>
<Video ratingKey="48546" key="/library/metadata/48546" guid="plex://movie/5d776b6cfb0d55001f5678b1"
studio="Walt Disney Pictures" type="movie" title="Beauty and the Beast" contentRating="PG"
summary="A live-action adaptation of Disney&#39;s version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell."
rating="7.1" audienceRating="8.0" year="2017" tagline="Be our guest."
thumb="/library/metadata/48546/thumb/1601864994" art="/library/metadata/48546/art/1601864994"
duration="7756799" originallyAvailableAt="2017-03-15" addedAt="1591251540" updatedAt="1601864994"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48548"
ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73060" duration="7756799" bitrate="67735" width="3840" height="2160" aspectRatio="1.78"
audioChannels="2" audioCodec="aac" videoCodec="hevc" videoResolution="4k" container="mp4"
videoFrameRate="24p" optimizedForStreaming="0" audioProfile="lc" has64bitOffsets="1"
videoProfile="main 10">
<Part id="73124" key="/library/parts/73124/1591251540/file.m4v" duration="7756799"
file="/data/gaps/Best Movies/Beauty and the Beast (2017)/Beauty and the Beast (2017) Bluray-2160p.m4v"
size="65715318673" audioProfile="lc" container="mp4" has64bitOffsets="1" indexes="sd"
optimizedForStreaming="0" videoProfile="main 10"/>
</Media>
<Genre tag="Musical"/>
<Genre tag="Family"/>
<Director tag="Bill Condon"/>
<Writer tag="Stephen Chbosky"/>
<Writer tag="Linda Woolverton"/>
<Country tag="United States of America"/>
<Role tag="Emma Watson"/>
<Role tag="Dan Stevens"/>
<Role tag="Luke Evans"/>
</Video>
<Video ratingKey="48547" key="/library/metadata/48547" guid="plex://movie/5d9f352aadeb7a0021ce130b"
studio="Stanley Donen Films" type="movie" title="Bedazzled" contentRating="Approved"
summary="Stanley is infatuated with Margaret, the statuesque waitress who works with him. He meets George Spiggott AKA the devil and sells his soul for 7 wishes, which Stanley uses to try and make Margaret his own first as an intellectual, then as a rock star, then as a wealthy industrialist. As each fails, he becomes more aware of how empty his life had been and how much more he has to live for."
rating="8.2" audienceRating="7.4" year="1967"
tagline="Peter Cook and Dudley Moore in their first starring comedy!"
thumb="/library/metadata/48547/thumb/1601864996" art="/library/metadata/48547/art/1601864996"
duration="6221024" originallyAvailableAt="1967-12-10" addedAt="1516287600" updatedAt="1601864996"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73061" duration="6221024" bitrate="6033" width="1280" height="488" aspectRatio="2.35"
audioChannels="2" audioCodec="ac3" videoCodec="h264" videoResolution="720" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73125" key="/library/parts/73125/1516287600/file.mkv" duration="6221024"
file="/data/gaps/Best Movies/Bedazzled (1967)/Bedazzled (1967).mkv" size="4693201203" container="mkv"
indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Fantasy"/>
<Director tag="Stanley Donen"/>
<Writer tag="Peter Cook"/>
<Writer tag="Dudley Moore"/>
<Country tag="United Kingdom"/>
<Role tag="Peter Cook"/>
<Role tag="Dudley Moore"/>
<Role tag="Raquel Welch"/>
</Video>
<Video ratingKey="48588" key="/library/metadata/48588" guid="plex://movie/5d776829151a60001f24b3d0"
studio="KirchMedia" type="movie" title="Bedazzled" contentRating="PG-13"
summary="Elliot Richardson, a suicidal techno geek, is given seven wishes to turn his life around when he meets a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil puts her own little twist on each of his fantasies."
rating="5.0" audienceRating="4.2" year="2000"
tagline="Meet the Devil. She&#39;s giving Elliott seven wishes. But not a chance in Hell."
thumb="/library/metadata/48588/thumb/1601864997" art="/library/metadata/48588/art/1601864997"
duration="5588583" originallyAvailableAt="2000-10-17" addedAt="1586925060" updatedAt="1601864997"
audienceRatingImage="rottentomatoes://image.rating.spilled" chapterSource="media"
primaryExtraKey="/library/metadata/48590" ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73182" duration="5588583" bitrate="11570" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="truehd" videoCodec="hevc" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="main 10">
<Part id="73246" key="/library/parts/73246/1586925060/file.mkv" duration="5588583"
file="/data/gaps/Best Movies/Bedazzled (2000)/Bedazzled 2000 Bluray-1080p.mkv" size="8130357515"
container="mkv" indexes="sd" videoProfile="main 10"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Fantasy"/>
<Director tag="Harold Ramis"/>
<Writer tag="Harold Ramis"/>
<Writer tag="Peter Cook"/>
<Country tag="United States of America"/>
<Role tag="Elizabeth Hurley"/>
<Role tag="Brendan Fraser"/>
<Role tag="Frances O&#39;Connor"/>
</Video>
<Video ratingKey="48589" key="/library/metadata/48589" guid="plex://movie/5d776d1a594b2b001e7015f3"
studio="Geffen Pictures" type="movie" title="Beetlejuice" contentRating="PG"
summary="The spirits of a deceased couple are harassed by an unbearable family that has moved into their home, and hire a malicious spirit to drive them out."
rating="8.4" audienceRating="8.2" year="1988"
tagline="He&#39;s guaranteed to put some life in your afterlife."
thumb="/library/metadata/48589/thumb/1601864998" art="/library/metadata/48589/art/1601864998"
duration="5526395" originallyAvailableAt="1988-03-29" addedAt="1516287600" updatedAt="1601864998"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48591" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73183" duration="5526395" bitrate="15914" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73247" key="/library/parts/73247/1516287600/file.mkv" duration="5526395"
file="/data/gaps/Best Movies/Beetlejuice (1988)/Beetlejuice (1988).mkv" size="10822962196"
audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Fantasy"/>
<Genre tag="Comedy"/>
<Director tag="Tim Burton"/>
<Writer tag="Warren Skaaren"/>
<Writer tag="Larry Wilson"/>
<Country tag="United States of America"/>
<Role tag="Michael Keaton"/>
<Role tag="Geena Davis"/>
<Role tag="Alec Baldwin"/>
</Video>
<Video ratingKey="48594" key="/library/metadata/48594" guid="plex://movie/5d776826103a2d001f564156"
studio="Gramercy Pictures" type="movie" title="Being John Malkovich" contentRating="R"
summary="A puppeteer discovers a portal that leads literally into the head of movie star John Malkovich."
rating="9.3" audienceRating="8.7" year="1999" tagline="Ever wanted to be someone else? Now you can."
thumb="/library/metadata/48594/thumb/1601865002" art="/library/metadata/48594/art/1601865002"
duration="6798836" originallyAvailableAt="1999-09-02" addedAt="1516287600" updatedAt="1601865002"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48595" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73191" duration="6798836" bitrate="14742" width="1920" height="1036" aspectRatio="1.85"
audioChannels="6" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73255" key="/library/parts/73255/1516287600/file.mkv" duration="6798836"
file="/data/gaps/Best Movies/Being John Malkovich (1999)/Being John Malkovich (1999).mkv"
size="12493194272" audioProfile="ma" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Drama"/>
<Genre tag="Fantasy"/>
<Director tag="Spike Jonze"/>
<Writer tag="Charlie Kaufman"/>
<Country tag="United States of America"/>
<Role tag="John Cusack"/>
<Role tag="Cameron Diaz"/>
<Role tag="Catherine Keener"/>
</Video>
<Video ratingKey="48597" key="/library/metadata/48597" guid="plex://movie/5d7768287e9a3c0020c6ad1f"
studio="Metro-Goldwyn-Mayer" type="movie" title="Ben-Hur" contentRating="G"
summary="After a Jewish prince is betrayed and sent into slavery by a Roman friend, he regains his freedom and comes back for revenge."
rating="8.6" audienceRating="8.9" year="1959" tagline="The entertainment experience of a lifetime."
thumb="/library/metadata/48597/thumb/1601865004" art="/library/metadata/48597/art/1601865004"
duration="13348032" originallyAvailableAt="1959-11-18" addedAt="1516287600" updatedAt="1601865004"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48598" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73196" duration="13348032" bitrate="18579" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73260" key="/library/parts/73260/1516287600/file.mkv" duration="13348032"
file="/data/gaps/Best Movies/Ben-Hur (1959)/Ben-Hur (1959).mkv" size="30496788655" audioProfile="ma"
container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="History"/>
<Genre tag="Action/Adventure"/>
<Director tag="William Wyler"/>
<Writer tag="Gore Vidal"/>
<Country tag="United States of America"/>
<Role tag="Charlton Heston"/>
<Role tag="Jack Hawkins"/>
<Role tag="Haya Harareet"/>
</Video>
<Video ratingKey="48601" key="/library/metadata/48601" guid="plex://movie/5d776ae096b655001fdfc3ab"
studio="Metro-Goldwyn-Mayer" type="movie" title="Ben-Hur" contentRating="PG-13"
summary="Judah Ben-Hur, a prince falsely accused of treason by his adopted brother, an officer in the Roman army, returns to his homeland after years at sea to seek revenge, but finds redemption."
rating="2.5" audienceRating="5.3" year="2016" tagline="First to finish. Last to die."
thumb="/library/metadata/48601/thumb/1601865008" art="/library/metadata/48601/art/1601865008"
duration="7483488" originallyAvailableAt="2016-08-11" addedAt="1516287600" updatedAt="1601865008"
audienceRatingImage="rottentomatoes://image.rating.spilled" chapterSource="media"
primaryExtraKey="/library/metadata/48604" ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73204" duration="7483488" bitrate="37789" width="1920" height="1080" aspectRatio="1.78"
audioChannels="8" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73268" key="/library/parts/73268/1516287600/file.mkv" duration="7483488"
file="/data/gaps/Best Movies/Ben-Hur (2016)/Ben-Hur (2016).mkv" size="35268043582" audioProfile="ma"
container="mkv" hasThumbnail="1" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Drama"/>
<Genre tag="Action/Adventure"/>
<Director tag="Timur Bekmambetov"/>
<Writer tag="Lew Wallace"/>
<Writer tag="John Ridley"/>
<Country tag="United States of America"/>
<Role tag="Jack Huston"/>
<Role tag="Pilou Asb&#230;k"/>
<Role tag="Rodrigo Santoro"/>
</Video>
<Video ratingKey="48602" key="/library/metadata/48602" guid="plex://movie/5d7769f7fb0d55001f5361eb"
studio="Walt Disney Animation Studios" type="movie" title="Big Hero 6" contentRating="PG"
summary="The special bond develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada. They team up with a group of friends to form a band of high-tech heroes."
rating="8.9" audienceRating="9.1" year="2014" tagline="From the creators of Wreck-It Ralph and Frozen."
thumb="/library/metadata/48602/thumb/1601865010" art="/library/metadata/48602/art/1601865010"
duration="6112768" originallyAvailableAt="2014-10-23" addedAt="1516287600" updatedAt="1601865010"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48655" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73205" duration="6112768" bitrate="34689" width="1920" height="1080" aspectRatio="1.78"
audioChannels="8" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73269" key="/library/parts/73269/1516287600/file.mkv" duration="6112768"
file="/data/gaps/Best Movies/Big Hero 6 (2014)/Big Hero 6 (2014).mkv" size="26511091779"
audioProfile="ma" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Chris Williams"/>
<Director tag="Don Hall"/>
<Writer tag="Daniel Gerson"/>
<Writer tag="Robert L. Baird"/>
<Country tag="United States of America"/>
<Role tag="Scott Adsit"/>
<Role tag="Ryan Potter"/>
<Role tag="Daniel Henney"/>
</Video>
<Video ratingKey="48603" key="/library/metadata/48603" guid="plex://movie/5d7768313c3c2a001fbcd1f0"
studio="TAFT Entertainment Pictures" type="movie" title="Big Trouble in Little China" contentRating="PG-13"
summary="A rough-and-tumble trucker helps rescue his friend&#39;s fianc&#233;e from an ancient sorcerer in a supernatural battle beneath Chinatown."
rating="7.8" audienceRating="8.2" year="1986" tagline="Adventure doesn&#39;t come any bigger!"
thumb="/library/metadata/48603/thumb/1601865009" art="/library/metadata/48603/art/1601865009"
duration="5987991" originallyAvailableAt="1986-07-02" addedAt="1579100400" updatedAt="1601865009"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48652" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73206" duration="5987991" bitrate="11399" width="1920" height="816" aspectRatio="2.35"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73270" key="/library/parts/73270/1579100400/file.mkv" duration="5987991"
file="/data/gaps/Best Movies/Big Trouble in Little China (1986)/Big Trouble in Little China (1986) Bluray-1080p.mkv"
size="8535077637" audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Fantasy"/>
<Director tag="John Carpenter"/>
<Writer tag="W.D. Richter"/>
<Writer tag="David Z. Weinstein"/>
<Country tag="United States of America"/>
<Role tag="Kurt Russell"/>
<Role tag="Kim Cattrall"/>
<Role tag="Dennis Dun"/>
</Video>
<Video ratingKey="48651" key="/library/metadata/48651" guid="plex://movie/5d776829eb5d26001f1de247"
studio="Orion Pictures" type="movie" title="Bill &amp; Ted&#39;s Bogus Journey" contentRating="PG"
summary="A tyrant from the future creates evil android doubles of Bill and Ted and sends them back to eliminate the originals."
rating="5.7" audienceRating="5.6" year="1991" tagline="Once... they made history. Now... they are history."
thumb="/library/metadata/48651/thumb/1601865011" art="/library/metadata/48651/art/1601865011"
duration="5634009" originallyAvailableAt="1991-07-19" addedAt="1516287600" updatedAt="1601865011"
audienceRatingImage="rottentomatoes://image.rating.spilled" chapterSource="media"
primaryExtraKey="/library/metadata/48680" ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73348" duration="5634009" bitrate="5078" width="1916" height="1032" aspectRatio="1.85"
audioChannels="2" audioCodec="aac" videoCodec="h264" videoResolution="1080" container="mp4"
videoFrameRate="24p" optimizedForStreaming="1" audioProfile="lc" has64bitOffsets="0"
videoProfile="constrained baseline">
<Part id="73412" key="/library/parts/73412/1516287600/file.mp4" duration="5634009"
file="/data/gaps/Best Movies/Bill &amp; Ted&#39;s Bogus Journey (1991)/Bill &amp; Ted&#39;s Bogus Journey (1991).mp4"
size="3580239907" audioProfile="lc" container="mp4" has64bitOffsets="0" hasThumbnail="1" indexes="sd"
optimizedForStreaming="1" videoProfile="constrained baseline"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Action/Adventure"/>
<Director tag="Peter Hewitt"/>
<Writer tag="Ed Solomon"/>
<Writer tag="Chris Matheson"/>
<Country tag="United States of America"/>
<Role tag="Keanu Reeves"/>
<Role tag="Alex Winter"/>
<Role tag="William Sadler"/>
</Video>
<Video ratingKey="48653" key="/library/metadata/48653" guid="plex://movie/5d77682a3c3c2a001fbcbcbf"
studio="Orion Pictures" type="movie" title="Bill &amp; Ted&#39;s Excellent Adventure" contentRating="PG"
summary="Two seemingly dumb teens set off on a quest to prepare the ultimate historical presentation with the help of a time machine."
rating="8.1" audienceRating="7.5" year="1989"
tagline="History is about to be rewritten by two guys who can&#39;t spell."
thumb="/library/metadata/48653/thumb/1601865012" art="/library/metadata/48653/art/1601865012"
duration="5391385" originallyAvailableAt="1989-02-17" addedAt="1516287600" updatedAt="1601865012"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48688" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73351" duration="5391385" bitrate="10443" width="1920" height="816" aspectRatio="2.35"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73415" key="/library/parts/73415/1516287600/file.mkv" duration="5391385"
file="/data/gaps/Best Movies/Bill &amp; Ted&#39;s Excellent Adventure (1989)/Bill &amp; Ted&#39;s Excellent Adventure (1989).mkv"
size="7039207617" audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Action/Adventure"/>
<Director tag="Stephen Herek"/>
<Writer tag="Ed Solomon"/>
<Writer tag="Chris Matheson"/>
<Country tag="United States of America"/>
<Role tag="Keanu Reeves"/>
<Role tag="Alex Winter"/>
<Role tag="George Carlin"/>
</Video>
<Video ratingKey="48654" key="/library/metadata/48654" guid="plex://movie/5d77686954c0f0001f30806a"
studio="Marvel Enterprises" type="movie" title="Blade" contentRating="R"
summary="A half-vampire, half-mortal man becomes a protector of the mortal race, while slaying evil vampires."
rating="5.5" audienceRating="7.8" year="1998" tagline="Part Man. Part Vampire. All Hero."
thumb="/library/metadata/48654/thumb/1601865012" art="/library/metadata/48654/art/1601865012"
duration="7213554" originallyAvailableAt="1998-08-19" addedAt="1516287600" updatedAt="1601865012"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48686"
ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73352" duration="7213554" bitrate="14199" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73416" key="/library/parts/73416/1516287600/file.mkv" duration="7213554"
file="/data/gaps/Best Movies/Blade (1998)/Blade (1998).mkv" size="12805095497" audioProfile="dts"
container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Sci-Fi"/>
<Director tag="Stephen Norrington"/>
<Writer tag="David S. Goyer"/>
<Country tag="United States of America"/>
<Role tag="Wesley Snipes"/>
<Role tag="Stephen Dorff"/>
<Role tag="Kris Kristofferson"/>
</Video>
<Video ratingKey="48679" key="/library/metadata/48679" guid="plex://movie/5d776868eb5d26001f1ea0ae"
studio="Marvel Enterprises" type="movie" title="Blade II" contentRating="R"
summary="Blade forms an uneasy alliance with the vampire council in order to combat the Reapers, who are feeding on vampires."
rating="5.7" audienceRating="6.8" year="2002" tagline="Faster. Sharper. Deadlier."
thumb="/library/metadata/48679/thumb/1601865013" art="/library/metadata/48679/art/1601865013"
duration="7010011" originallyAvailableAt="2002-03-21" addedAt="1516287600" updatedAt="1601865013"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48697"
ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73425" duration="7010011" bitrate="13473" width="1920" height="1078" aspectRatio="1.78"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73489" key="/library/parts/73489/1516287600/file.mkv" duration="7010011"
file="/data/gaps/Best Movies/Blade II (2002)/Blade II (2002).mkv" size="11807845249"
audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Sci-Fi"/>
<Genre tag="Horror"/>
<Director tag="Guillermo del Toro"/>
<Writer tag="David S. Goyer"/>
<Country tag="United States of America"/>
<Role tag="Wesley Snipes"/>
<Role tag="Kris Kristofferson"/>
<Role tag="Ron Perlman"/>
</Video>
<Video ratingKey="48696" key="/library/metadata/48696" guid="plex://movie/5d7768245af944001f1f6282"
studio="Shaw Brothers" type="movie" title="Blade Runner" contentRating="R"
summary="A blade runner must pursue and terminate four replicants who stole a ship in space, and have returned to Earth to find their creator."
rating="9.0" audienceRating="9.1" year="1982" tagline="Man has made his match... now it&#39;s his problem."
thumb="/library/metadata/48696/thumb/1601865015" art="/library/metadata/48696/art/1601865015"
duration="7056864" originallyAvailableAt="1982-06-25" addedAt="1516287600" updatedAt="1601865015"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48699" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73467" duration="7056864" bitrate="18543" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="truehd" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73531" key="/library/parts/73531/1516287600/file.mkv" duration="7056864"
file="/data/gaps/Best Movies/Blade Runner (1982)/Blade Runner (1982).mkv" size="16419392562"
container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Sci-Fi"/>
<Genre tag="Drama"/>
<Director tag="Ridley Scott"/>
<Writer tag="Philip K. Dick"/>
<Writer tag="Hampton Fancher"/>
<Country tag="United States of America"/>
<Country tag="Hong Kong"/>
<Role tag="Harrison Ford"/>
<Role tag="Rutger Hauer"/>
<Role tag="Sean Young"/>
</Video>
<Video ratingKey="48704" key="/library/metadata/48704" guid="plex://movie/5d776b95594b2b001e6de3f3"
studio="Torridon Films" type="movie" title="Blade Runner 2049" contentRating="R"
summary="Young Blade Runner K&#39;s discovery of a long-buried secret leads him to track down former Blade Runner Rick Deckard, who&#39;s been missing for thirty years."
rating="8.8" audienceRating="8.1" year="2017" tagline="The key to the future is finally unearthed."
thumb="/library/metadata/48704/thumb/1601865018" art="/library/metadata/48704/art/1601865018"
duration="9827840" originallyAvailableAt="2017-10-03" addedAt="1579273200" updatedAt="1601865018"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48719" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73479" duration="9827840" bitrate="35745" width="1920" height="1080" aspectRatio="1.78"
audioChannels="8" audioCodec="truehd" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73543" key="/library/parts/73543/1579273200/file.mkv" duration="9827840"
file="/data/gaps/Best Movies/Blade Runner 2049 (2017)/Blade Runner 2049 (2017) Remux-1080p.mkv"
size="43960440606" container="mkv" hasThumbnail="1" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Sci-Fi"/>
<Genre tag="Thriller"/>
<Director tag="Denis Villeneuve"/>
<Writer tag="Philip K. Dick"/>
<Writer tag="Hampton Fancher"/>
<Country tag="Canada"/>
<Country tag="Hungary"/>
<Role tag="Ryan Gosling"/>
<Role tag="Ana de Armas"/>
<Role tag="Jared Leto"/>
</Video>
<Video ratingKey="48705" key="/library/metadata/48705" guid="plex://movie/5d77686954c0f0001f30806e"
studio="Marvel Enterprises" type="movie" title="Blade: Trinity" contentRating="R"
summary="Blade, now a wanted man by the FBI, must join forces with the Nightstalkers to face his most challenging enemy yet: Dracula."
rating="2.6" audienceRating="5.9" year="2004" tagline="The final hunt begins."
thumb="/library/metadata/48705/thumb/1601865017" art="/library/metadata/48705/art/1601865017"
duration="6772870" originallyAvailableAt="2004-11-11" addedAt="1516287600" updatedAt="1601865017"
audienceRatingImage="rottentomatoes://image.rating.spilled" primaryExtraKey="/library/metadata/48706"
ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73480" duration="6772870" bitrate="12678" width="1916" height="814" aspectRatio="2.35"
audioChannels="6" audioCodec="dca" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="dts" videoProfile="high">
<Part id="73544" key="/library/parts/73544/1516287600/file.mkv" duration="6772870"
file="/data/gaps/Best Movies/Blade Trinity (2004)/Blade Trinity (2004).mkv" size="10735555436"
audioProfile="dts" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Sci-Fi"/>
<Director tag="David S. Goyer"/>
<Writer tag="David S. Goyer"/>
<Country tag="United States of America"/>
<Role tag="Wesley Snipes"/>
<Role tag="Kris Kristofferson"/>
<Role tag="Dominic Purcell"/>
</Video>
<Video ratingKey="48718" key="/library/metadata/48718" guid="plex://movie/5d7768364de0ee001fccbab2"
studio="Crossbow Productions" type="movie" title="Blazing Saddles" contentRating="R"
summary="In order to ruin a western town, a corrupt politician appoints a black Sheriff, who promptly becomes his most formidable adversary."
rating="8.8" audienceRating="9.1" year="1974" tagline="Never give a saga an even break!"
thumb="/library/metadata/48718/thumb/1601865020" art="/library/metadata/48718/art/1601865020"
duration="5574610" originallyAvailableAt="1974-02-07" addedAt="1516287600" updatedAt="1601865020"
audienceRatingImage="rottentomatoes://image.rating.upright" primaryExtraKey="/library/metadata/48731"
ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73505" duration="5574610" bitrate="17756" width="1920" height="806" aspectRatio="2.35"
audioChannels="6" audioCodec="dca-ma" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="ma" videoProfile="high">
<Part id="73569" key="/library/parts/73569/1516287600/file.mkv" duration="5574610"
file="/data/gaps/Best Movies/Blazing Saddles (1974)/Blazing Saddles (1974).mkv" size="12378110903"
audioProfile="ma" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Comedy"/>
<Genre tag="Western"/>
<Director tag="Mel Brooks"/>
<Writer tag="Richard Pryor"/>
<Writer tag="Mel Brooks"/>
<Country tag="United States of America"/>
<Role tag="Cleavon Little"/>
<Role tag="Gene Wilder"/>
<Role tag="Slim Pickens"/>
</Video>
</MediaContainer>
@@ -0,0 +1,592 @@
<?xml version="1.0" encoding="UTF-8"?>
<MediaContainer size="23" allowSync="1" art="/:/resources/movie-fanart.jpg" identifier="com.plexapp.plugins.library"
librarySectionID="6" librarySectionTitle="Movies with new Metadata"
librarySectionUUID="f6763a83-03d8-4c88-af3f-15b2f45a37ad" mediaTagPrefix="/system/bundle/media/flags/"
mediaTagVersion="1615295203" thumb="/:/resources/movie.png" title1="Movies with new Metadata"
title2="All Movies with new Metadata" viewGroup="movie" viewMode="65592">
<Video ratingKey="48753" key="/library/metadata/48753" guid="plex://movie/5d776ef896b655001fe7a8a4"
studio="Toei Animation" type="movie" title="Dragon Ball Super: Broly"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#36229;&#12473;&#12540;&#12497;&#12540; &#12502;&#12525;&#12522;&#12540;"
contentRating="PG"
summary="Earth is peaceful following the Tournament of Power. Realizing that the universes still hold many more strong people yet to see, Goku spends all his days training to reach even greater heights. Then one day, Goku and Vegeta are faced by a Saiyan called &#39;Broly&#39; who they&#39;ve never seen before. The Saiyans were supposed to have been almost completely wiped out in the destruction of Planet Vegeta, so what&#39;s this one doing on Earth? This encounter between the three Saiyans who have followed completely different destinies turns into a stupendous battle, with even Frieza (back from Hell) getting caught up in the mix."
rating="8.2" audienceRating="9.2" year="2018" tagline="A new adventure to become the strongest begins."
thumb="/library/metadata/48753/thumb/1601866095" art="/library/metadata/48753/art/1601866095"
duration="6086084" originallyAvailableAt="2018-11-14" addedAt="1601866094" updatedAt="1601866095"
audienceRatingImage="rottentomatoes://image.rating.upright" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73593" duration="6086084" bitrate="2723" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="aac" videoCodec="h264" videoResolution="1080" container="mp4"
videoFrameRate="24p" optimizedForStreaming="0" audioProfile="lc" has64bitOffsets="0" videoProfile="high">
<Part id="73657" key="/library/parts/73657/1555369258/file.mp4" duration="6086084"
file="/data/gaps/Movies/Dragon Ball Super Broly (2018)/Dragon Ball Super Broly (2018).mp4"
size="2075656887" audioProfile="lc" container="mp4" has64bitOffsets="0" indexes="sd"
optimizedForStreaming="0" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Tatsuya Nagamine"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Tatsuya Nagamine"/>
<Country tag="Japan"/>
<Country tag="United States of America"/>
<Role tag="Masako Nozawa"/>
<Role tag="Aya Hisakawa"/>
<Role tag="Ryou Horikawa"/>
</Video>
<Video ratingKey="48734" key="/library/metadata/48734" guid="plex://movie/5d77686f6f4521001eaa6f81"
studio="Bird Studios" type="movie" title="Dragon Ball Z: Bardock - The Father of Goku"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#12383;&#12387;&#12383;&#12402;&#12392;&#12426;&#12398;&#26368;&#32066;&#27770;&#25126;&#12316;&#12501;&#12522;&#12540;&#12470;&#12395;&#25361;&#12435;&#12384;Z&#25126;&#22763; &#23403;&#24735;&#31354;&#12398;&#29238;&#12316;"
contentRating="NR"
summary="Bardock, Son Goku&#39;s father, is a low-ranking Saiyan soldier who was given the power to see into the future by the last remaining alien on a planet he just destroyed. He witnesses the destruction of his race and must now do his best to stop Frieza&#39;s impending massacre."
audienceRating="7.9" year="1990" thumb="/library/metadata/48734/thumb/1601865971"
art="/library/metadata/48734/art/1601865971" duration="2865504" originallyAvailableAt="1990-10-17"
addedAt="1601865969" updatedAt="1601865971" audienceRatingImage="imdb://image.rating">
<Media id="73546" duration="2865504" bitrate="13109" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73610" key="/library/parts/73610/1543409484/file.mkv" duration="2865504"
file="/data/gaps/Movies/Dragon Ball Z Bardock - The Father of Goku (1990)/Dragon Ball Z Bardock - The Father of Goku (1990).mkv"
size="4696433631" container="mkv" hasThumbnail="1" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Mitsuo Hashimoto"/>
<Writer tag="Takao Koyama"/>
<Writer tag="Katsuyuki Sumizawa"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Kazuyuki Sogabe"/>
<Role tag="Y&#251;ko Mita"/>
</Video>
<Video ratingKey="48749" key="/library/metadata/48749" guid="plex://movie/5d9f38f4adeb7a0021ce475f"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Battle of Gods"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#31070;&#12392;&#31070;"
contentRating="PG-13"
summary="The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai&#39;s advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of &#34;Is there nobody on Earth more worthy to destroy?&#34; lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost."
rating="8.8" audienceRating="8.0" year="2013" tagline="The mightiest make their move"
thumb="/library/metadata/48749/thumb/1601866054" art="/library/metadata/48749/art/1601866054"
duration="6302296" originallyAvailableAt="2013-03-27" addedAt="1601866053" updatedAt="1601866054"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48750" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73583" duration="6302296" bitrate="22257" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="truehd" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73647" key="/library/parts/73647/1516380046/file.mkv" duration="6302296"
file="/data/gaps/Movies/Dragon Ball Z Battle of Gods (2013)/Dragon Ball Z Battle of Gods (2013).mkv"
size="17566626443" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Anime"/>
<Genre tag="Animation"/>
<Director tag="Masahiro Hosoda"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Yusuke Watanabe"/>
<Country tag="Japan"/>
<Country tag="United States of America"/>
<Role tag="Masako Nozawa"/>
<Role tag="Kouichi Yamadera"/>
<Role tag="Masakazu Morita"/>
</Video>
<Video ratingKey="48759" key="/library/metadata/48759" guid="plex://movie/5d9f3574d5fd3f001ee17069"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: Bio-Broly"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#65338; &#36229;&#25126;&#22763;&#25731;&#30772;!!&#21213;&#12398;&#12399;&#12458;&#12524;&#12384;"
contentRating="PG"
summary="Jaga Bada, Mr. Satan&#39;s old sparring partner, has invited Satan to his personal island to hold a grudge match. Trunks and Goten decide to come for the adventure and Android #18 is following Satan for the money he owes her. Little do they know that Jaga Bada&#39;s scientist have found a way to resurrect Broly, the legendary Super Saiyan."
audienceRating="6.0" year="1994" thumb="/library/metadata/48759/thumb/1601866890"
art="/library/metadata/48759/art/1601866890" duration="2804630" originallyAvailableAt="1994-07-09"
addedAt="1601866889" updatedAt="1601866890" audienceRatingImage="imdb://image.rating">
<Media id="73600" duration="2804630" bitrate="2086" width="640" height="480" aspectRatio="1.33"
audioChannels="2" audioCodec="ac3" videoCodec="mpeg4" videoResolution="480" container="avi"
videoFrameRate="NTSC">
<Part id="73664" key="/library/parts/73664/1533395502/file.avi" duration="2804630"
file="/data/gaps/Movies/Dragon Ball Z Bio-Broly (1994)/Dragon Ball Z Bio-Broly (1994).avi"
size="735449934" container="avi" indexes="sd"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Yoshihiro Ueda"/>
<Writer tag="Takao Koyama"/>
<Writer tag="Mark Menza"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Takeshi Kusao"/>
<Role tag="Daisuke Gouri"/>
</Video>
<Video ratingKey="48760" key="/library/metadata/48760" guid="plex://movie/5d9f3574ca3253001ef29044"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Bojack Unbound"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#37504;&#27827;&#12462;&#12522;&#12462;&#12522;!! &#12406;&#12387;&#12385;&#12366;&#12426;&#12398;&#20932;&#12356;&#22900;"
contentRating="TV-PG"
summary="Mr. Money is holding another World Martial Arts Tournament and Mr. Satan invites everyone in the world to join in. Little does he know that Bojack, an ancient villain who has escaped his prison, is competing. Since Goku is currently dead, it is up to Gohan, Vegeta, and Trunks to defeat Bojack and his henchman."
audienceRating="7.2" year="1993" thumb="/library/metadata/48760/thumb/1601866897"
art="/library/metadata/48760/art/1601866897" duration="3025320" originallyAvailableAt="1993-07-10"
addedAt="1601866896" updatedAt="1601866897" audienceRatingImage="imdb://image.rating"
primaryExtraKey="/library/metadata/48761">
<Media id="73601" duration="3025320" bitrate="1971" width="640" height="480" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="480" container="avi"
videoFrameRate="24p" videoProfile="simple">
<Part id="73665" key="/library/parts/73665/1533395502/file.avi" duration="3025320"
file="/data/gaps/Movies/Dragon Ball Z Bojack Unbound (1993)/Dragon Ball Z Bojack Unbound (1993).avi"
size="748789760" container="avi" indexes="sd" videoProfile="simple"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Yoshihiro Ueda"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Daisuke Gouri"/>
<Role tag="Tesshou Genda"/>
</Video>
<Video ratingKey="48762" key="/library/metadata/48762" guid="plex://movie/5d9f357c4441b1001fa0f21c"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: Broly &#8211; Second Coming"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#65338; &#21361;&#38522;&#12394;&#12405;&#12383;&#12426;&#65281;&#36229;&#25126;&#22763;&#12399;&#12397;&#12416;&#12428;&#12394;&#12356;"
contentRating="NR"
summary="A Saiyan Space pod crash-lands on Earth out of which a wounded Saiyan crawls: Broly, the Legendary Super Saiyan. The wounded Broly shouts out in frustration and turns into normal form. The place soon freezes, trapping him in it and he falls into a coma."
audienceRating="4.6" year="1994" tagline="Broly Is Back!" thumb="/library/metadata/48762/thumb/1601866905"
art="/library/metadata/48762/art/1601866905" duration="3128976" originallyAvailableAt="1994-03-12"
addedAt="1601866904" updatedAt="1601866905" audienceRatingImage="rottentomatoes://image.rating.spilled">
<Media id="73604" duration="3128976" bitrate="1867" width="640" height="464" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="480" container="avi"
videoFrameRate="PAL" videoProfile="advanced simple">
<Part id="73668" key="/library/parts/73668/1533395502/file.avi" duration="3128976"
file="/data/gaps/Movies/Dragon Ball Z Broly - Second Coming (1994)/Dragon Ball Z Broly - Second Coming (1994).avi"
size="733945856" container="avi" indexes="sd" videoProfile="advanced simple"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Shigeyasu Yamauchi"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Mayumi Tanaka"/>
<Role tag="Takeshi Kusao"/>
</Video>
<Video ratingKey="48763" key="/library/metadata/48763" guid="plex://movie/5d9f356e68e4c8001fb5f9e6"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: Broly &#8211; The Legendary Super Saiyan"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#65338; &#29123;&#12360;&#23613;&#12365;&#12429;!!&#29105;&#25126;&#12539;&#28872;&#25126;&#12539;&#36229;&#28608;&#25126;"
contentRating="PG"
summary="While the Saiyan Paragus persuades Vegeta to rule a new planet, King Kai alerts Goku of the South Galaxy&#39;s destruction by an unknown Super Saiyan."
audienceRating="7.5" year="1993" thumb="/library/metadata/48763/thumb/1601866916"
art="/library/metadata/48763/art/1601866916" duration="4308491" originallyAvailableAt="1993-03-06"
addedAt="1601866914" updatedAt="1601866916" audienceRatingImage="imdb://image.rating"
primaryExtraKey="/library/metadata/48764">
<Media id="73605" duration="4308491" bitrate="1358" width="576" height="432" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="sd" container="avi"
videoFrameRate="24p" videoProfile="simple">
<Part id="73669" key="/library/parts/73669/1533395502/file.avi" duration="4308491"
file="/data/gaps/Movies/Dragon Ball Z Broly - The Legendary Super Saiyan (1993)/Dragon Ball Z Broly - The Legendary Super Saiyan (1993).avi"
size="736266240" container="avi" indexes="sd" videoProfile="simple"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Family"/>
<Director tag="Shigeyasu Yamauchi"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Bin Shimada"/>
<Role tag="Masako Nozawa"/>
<Role tag="Ryou Horikawa"/>
</Video>
<Video ratingKey="48765" key="/library/metadata/48765" guid="plex://movie/5d9f3552ca3253001ef2873a"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Cooler&#39;s Revenge"
originalTitle="Doragon b&#244;ru Z 5: Tobikkiri no saiky&#244; tai saiky&#244;" contentRating="PG"
summary="After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza&#39;s brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight... until Goku transforms into a Super Saiyan."
audienceRating="8.0" year="1991" thumb="/library/metadata/48765/thumb/1601866926"
art="/library/metadata/48765/art/1601866926" duration="2769096" originallyAvailableAt="1991-07-20"
addedAt="1601866925" updatedAt="1601866926" audienceRatingImage="rottentomatoes://image.rating.upright"
primaryExtraKey="/library/metadata/48766">
<Media id="73609" duration="2769096" bitrate="2066" width="576" height="432" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="sd" container="avi"
videoFrameRate="24p">
<Part id="73673" key="/library/parts/73673/1533395502/file.avi" duration="2769096"
file="/data/gaps/Movies/Dragon Ball Z Cooler&#39;s Revenge (1991)/Dragon Ball Z Cooler&#39;s Revenge (1991).avi"
size="719550464" container="avi" indexes="sd"/>
</Media>
<Genre tag="Science Fiction"/>
<Genre tag="Animation"/>
<Director tag="Mitsuo Hashimoto"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Mayumi Tanaka"/>
</Video>
<Video ratingKey="48767" key="/library/metadata/48767" guid="plex://movie/5d9f35676fc551001ef815d1"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Dead Zone"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#65338; &#12458;&#12521;&#12398;&#24735;&#39151;&#12434;&#12363;&#12360;&#12379;&#12483;!!"
contentRating="PG"
summary="Gohan has been kidnapped! To make matters worse, the evil Garlic Jr. is gathering the Dragonballs to wish for immortality. Only then will Garlic Jr. be able to take over the Earth in order to gain revenge for the death of his father. Goku rushes to save Gohan, but arrives at the fortress just as Garlic Jr. summons the Eternal Dragon! Krillin and Piccolo try to help Goku, but their combined powers."
audienceRating="7.0" year="1989" thumb="/library/metadata/48767/thumb/1601866938"
art="/library/metadata/48767/art/1601866938" duration="2473423" originallyAvailableAt="1989-07-15"
addedAt="1601866937" updatedAt="1601866938" audienceRatingImage="imdb://image.rating">
<Media id="73612" duration="2473423" bitrate="3476" width="704" height="396" aspectRatio="1.78"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="sd" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73676" key="/library/parts/73676/1533395590/file.mkv" duration="2473423"
file="/data/gaps/Movies/Dragon Ball Z Dead Zone (1989)/Dragon Ball Z Dead Zone (1989).mkv"
size="1076722718" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Hiromi Tsuru"/>
</Video>
<Video ratingKey="48768" key="/library/metadata/48768" guid="plex://movie/5d9f35749dd5f4001e844afc"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: Fusion Reborn"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#24489;&#27963;&#12398;&#12501;&#12517;&#12540;&#12472;&#12519;&#12531;!! &#24735;&#31354;&#12392;&#12505;&#12472;&#12540;&#12479;"
contentRating="PG"
summary="Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegeta make solo attempts to defeat the monster, but realize their only option is fusion."
audienceRating="8.4" year="1995" thumb="/library/metadata/48768/thumb/1601866949"
art="/library/metadata/48768/art/1601866949" duration="3049424" originallyAvailableAt="1995-03-04"
addedAt="1601866949" updatedAt="1601866949" audienceRatingImage="rottentomatoes://image.rating.upright">
<Media id="73613" duration="3049424" bitrate="1858" width="640" height="480" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="480" container="avi"
videoFrameRate="24p" videoProfile="simple">
<Part id="73677" key="/library/parts/73677/1533395502/file.avi" duration="3049424"
file="/data/gaps/Movies/Dragon Ball Z Fusion Reborn (1995)/Dragon Ball Z Fusion Reborn (1995).avi"
size="713056256" container="avi" indexes="sd" videoProfile="simple"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Shigeyasu Yamauchi"/>
<Writer tag="Takao Koyama"/>
<Writer tag="Akira Toriyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Ryou Horikawa"/>
<Role tag="Takeshi Kusao"/>
</Video>
<Video ratingKey="48769" key="/library/metadata/48769" guid="plex://movie/5d9f35749dd5f4001e844af8"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Lord Slug"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#12476;&#12483;&#12488; &#36229;&#12473;&#12540;&#12497;&#12540;&#12469;&#12452;&#12516;&#20154;&#12376;&#12435;&#12384;&#23403;&#12381;&#12435;&#24735;&#12372;&#31354;&#12367;&#12358;"
contentRating="Not Rated"
summary="A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang."
audienceRating="6.2" year="1991" thumb="/library/metadata/48769/thumb/1601866969"
art="/library/metadata/48769/art/1601866969" duration="3110199" originallyAvailableAt="1991-03-19"
addedAt="1601866968" updatedAt="1601866969" audienceRatingImage="rottentomatoes://image.rating.upright">
<Media id="73614" duration="3110199" bitrate="2778" width="704" height="396" aspectRatio="1.78"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="sd" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73678" key="/library/parts/73678/1533395502/file.mkv" duration="3110199"
file="/data/gaps/Movies/Dragon Ball Z Lord Slug (1991)/Dragon Ball Z Lord Slug (1991).mkv"
size="1082513655" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Mitsuo Hashimoto"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Kenji Utsumi"/>
<Role tag="Masako Nozawa"/>
</Video>
<Video ratingKey="48770" key="/library/metadata/48770" guid="plex://movie/5d776b439ab5440021509545"
studio="Fox International Productions" type="movie" title="Dragon Ball Z: Resurrection &#39;F&#39;"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#24489;&#27963;&#12398;&#12300;F&#12301;"
contentRating="NR"
summary="One peaceful day on Earth, two remnants of Frieza&#39;s army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans."
rating="8.3" audienceRating="8.4" year="2015"
tagline="The Worst wish in history... that is the beginning of Despair."
thumb="/library/metadata/48770/thumb/1601867255" art="/library/metadata/48770/art/1601867255"
duration="5638720" originallyAvailableAt="2015-03-30" addedAt="1601867254" updatedAt="1601867255"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48771" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73615" duration="5638720" bitrate="24377" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73679" key="/library/parts/73679/1516380046/file.mkv" duration="5638720"
file="/data/gaps/Movies/Dragon Ball Z Resurrection &#39;F&#39; (2015)/Dragon Ball Z Resurrection &#39;F&#39; (2015).mkv"
size="17183367263" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Tadayoshi Yamamuro"/>
<Writer tag="Akira Toriyama"/>
<Country tag="Japan"/>
<Country tag="United States of America"/>
<Role tag="Masako Nozawa"/>
<Role tag="Ryou Horikawa"/>
<Role tag="Ryusei Nakao"/>
</Video>
<Video ratingKey="48776" key="/library/metadata/48776" guid="plex://movie/5d9f35744441b1001fa0ef5f"
studio="Toei Animation" type="movie" title="Dragon Ball Z: Super Android 13!"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;&#65338; &#26997;&#38480;&#12496;&#12488;&#12523;&#65281;&#19977;&#22823;&#36229;&#12469;&#12452;&#12516;&#20154;"
contentRating="TV-PG"
summary="Dr. Gero&#39;s Androids #13, #14, and #15 are awakened by the laboratory computers and immediately head to the mall where Goku is shopping. After Goku, Trunks, and Vegeta defeat #14 and #15, #13 absorbs their inner computers and becomes a super being greater than the original three separately were. Now it is up to Goku to stop him."
audienceRating="7.1" year="1992" thumb="/library/metadata/48776/thumb/1601867343"
art="/library/metadata/48776/art/1601867343" duration="2653088" originallyAvailableAt="1992-07-11"
addedAt="1601867341" updatedAt="1601867343" audienceRatingImage="imdb://image.rating">
<Media id="73629" duration="2653088" bitrate="2202" width="576" height="432" aspectRatio="1.33"
audioChannels="2" audioCodec="ac3" videoCodec="mpeg4" videoResolution="sd" container="avi"
videoFrameRate="24p" videoProfile="simple">
<Part id="73693" key="/library/parts/73693/1533395502/file.avi" duration="2653088"
file="/data/gaps/Movies/Dragon Ball Z Super Android 13 (1992)/Dragon Ball Z Super Android 13 (1992).avi"
size="733528064" container="avi" indexes="sd" videoProfile="simple"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Byron Watson"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Ryou Horikawa"/>
<Role tag="Takeshi Kusao"/>
</Video>
<Video ratingKey="48777" key="/library/metadata/48777" guid="plex://movie/5d77686f0ab244002006ded8"
studio="Fuji Television Network" type="movie" title="Dragon Ball Z: The History of Trunks"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#32118;&#26395;&#12408;&#12398;&#21453;&#25239;!!&#27531;&#12373;&#12428;&#12383;&#36229;&#25126;&#22763;&#12539;&#24735;&#39151;&#12392;&#12488;&#12521;&#12531;&#12463;&#12473;"
contentRating="NR"
summary="It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma&#39;s son Trunks as a student and even gives his own life to save Trunks&#39;s. Now Trunks must figure out a way to change this apocalyptic future"
audienceRating="7.9" year="1993" thumb="/library/metadata/48777/thumb/1601867430"
art="/library/metadata/48777/art/1601867430" duration="2875648" originallyAvailableAt="1993-02-24"
addedAt="1601867429" updatedAt="1601867430" audienceRatingImage="imdb://image.rating">
<Media id="73630" duration="2875648" bitrate="13058" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73694" key="/library/parts/73694/1543235798/file.mkv" duration="2875648"
file="/data/gaps/Movies/Dragon Ball Z The History of Trunks (1993)/Dragon Ball Z The History of Trunks (1993).mkv"
size="4694715271" container="mkv" hasThumbnail="1" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Yoshihiro Ueda"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Hiroshi Toda"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Mayumi Tanaka"/>
<Role tag="Hiromi Tsuru"/>
</Video>
<Video ratingKey="48775" key="/library/metadata/48775" guid="plex://movie/5d9f35744441b1001fa0ef63"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: The Return of Cooler"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#28608;&#31361;!!100&#20740;&#12497;&#12527;&#12540;&#12398;&#25126;&#22763;&#12383;&#12385;"
contentRating="NR"
summary="Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help."
audienceRating="5.7" year="1992" thumb="/library/metadata/48775/thumb/1601867335"
art="/library/metadata/48775/art/1601867335" duration="2750752" originallyAvailableAt="1992-03-07"
addedAt="1601867334" updatedAt="1601867335" audienceRatingImage="rottentomatoes://image.rating.spilled">
<Media id="73628" duration="2750752" bitrate="13654" width="1920" height="1080" aspectRatio="1.78"
audioChannels="6" audioCodec="ac3" videoCodec="h264" videoResolution="1080" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73692" key="/library/parts/73692/1543235798/file.mkv" duration="2750752"
file="/data/gaps/Movies/Dragon Ball Z Return of Cooler (1992)/Dragon Ball Z Return of Cooler (1992).mkv"
size="4695657552" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Mayumi Tanaka"/>
</Video>
<Video ratingKey="48778" key="/library/metadata/48778" guid="plex://movie/5d776d0e7a53e9001e74fa84"
studio="Toei Animation" type="movie" title="Dragon Ball Z: The Tree of Might"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#22320;&#29699;&#12414;&#12427;&#12372;&#12392;&#36229;&#27770;&#25126;"
contentRating="PG"
summary="Goku and friends must stop a band of space pirates from consuming fruit from the Tree of Might before it&#39;s destructive powers drain Earth&#39;s energy."
audienceRating="7.5" viewCount="1" lastViewedAt="1612607238" year="1990"
thumb="/library/metadata/48778/thumb/1601867446" art="/library/metadata/48778/art/1601867446"
duration="3653649" originallyAvailableAt="1990-07-07" addedAt="1601867444" updatedAt="1601867446"
audienceRatingImage="rottentomatoes://image.rating.upright">
<Media id="73631" duration="3653649" bitrate="2361" width="704" height="396" aspectRatio="1.78"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="sd" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73695" key="/library/parts/73695/1533395502/file.mkv" duration="3653649"
file="/data/gaps/Movies/Dragon Ball Z The Tree of Might (1990)/Dragon Ball Z The Tree of Might (1990).mkv"
size="1081002976" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Mayumi Tanaka"/>
</Video>
<Video ratingKey="48779" key="/library/metadata/48779" guid="plex://movie/5d9f3574adeb7a0021ce1f5c"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: The World&#39;s Strongest"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#12371;&#12398;&#19990;&#12391;&#19968;&#30058;&#24375;&#12356;&#12516;&#12484;"
contentRating="PG"
summary="The evil Dr. Kochin uses the dragon balls to resurrect his mentor, Dr. Wheelo, in an effort to take over the world. Dr. Wheelo, his body having been destroyed by the avalanche that killed him fifty years before, desires the body of the strongest fighter in the world as his new vessel. Believing Roshi to be the world&#39;s strongest warrior, Dr. Kochin abducts Bulma and forces Roshi to surrender himself to save her. When Goku hears of their abduction, he goes to their rescue."
audienceRating="6.8" viewCount="1" lastViewedAt="1611142561" year="1990"
tagline="Deep in the ice is earth&#39;s greatest threat that can only be stopped by one man."
thumb="/library/metadata/48779/thumb/1601867458" art="/library/metadata/48779/art/1601867458"
duration="3569217" originallyAvailableAt="1990-03-10" addedAt="1601867456" updatedAt="1601867458"
audienceRatingImage="rottentomatoes://image.rating.upright">
<Media id="73632" duration="3569217" bitrate="2417" width="704" height="396" aspectRatio="1.78"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="sd" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73696" key="/library/parts/73696/1533395502/file.mkv" duration="3569217"
file="/data/gaps/Movies/Dragon Ball Z The World&#39;s Strongest (1990)/Dragon Ball Z The World&#39;s Strongest (1990).mkv"
size="1081350297" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Toshio Furukawa"/>
<Role tag="Mayumi Tanaka"/>
</Video>
<Video ratingKey="48780" key="/library/metadata/48780" guid="plex://movie/5d9f3574d5fd3f001ee1706d"
studio="Toei Company, Ltd." type="movie" title="Dragon Ball Z: Wrath of the Dragon"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523;Z &#40845;&#25331;&#29190;&#30330;!!&#24735;&#31354;&#12364;&#12420;&#12425;&#12397;&#12400;&#35504;&#12364;&#12420;&#12427;"
contentRating="PG"
summary="The Z Warriors discover an unopenable music box and are told to open it with the Dragon Balls. The contents turn out to be a warrior named Tapion who had sealed himself inside along with a monster called Hildegarn. Goku must now perfect a new technique to defeat the evil monster."
audienceRating="7.5" year="1995" thumb="/library/metadata/48780/thumb/1601867465"
art="/library/metadata/48780/art/1601867465" duration="3115181" originallyAvailableAt="1995-07-15"
addedAt="1601867463" updatedAt="1601867465" audienceRatingImage="imdb://image.rating">
<Media id="73633" duration="3115181" bitrate="1871" width="512" height="384" aspectRatio="1.33"
audioChannels="2" audioCodec="mp3" videoCodec="mpeg4" videoResolution="sd" container="avi"
videoFrameRate="NTSC" videoProfile="advanced simple">
<Part id="73697" key="/library/parts/73697/1533395502/file.avi" duration="3115181"
file="/data/gaps/Movies/Dragon Ball Z Wrath of the Dragon (1995)/Dragon Ball Z Wrath of the Dragon (1995).avi"
size="734019584" container="avi" indexes="sd" videoProfile="advanced simple"/>
</Media>
<Genre tag="Fantasy"/>
<Genre tag="Animation"/>
<Director tag="Mitsuo Hashimoto"/>
<Writer tag="Takao Koyama"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Takeshi Kusao"/>
<Role tag="Mayumi Tanaka"/>
</Video>
<Video ratingKey="48754" key="/library/metadata/48754" guid="plex://movie/5d77686f51dd69001fe0c1a7"
studio="Bird Studios" type="movie" title="Dragon Ball: Curse of the Blood Rubies"
originalTitle="&#12489;&#12521;&#12468;&#12531;&#12508;&#12540;&#12523; &#31070;&#40845;&#12398;&#20253;&#35500;"
contentRating="TV-PG"
summary="The great King Gurumes is searching for the Dragon Balls in order to put a stop to his endless hunger. A young girl named Pansy who lives in the nearby village has had enough of the treachery and decides to seek Muten R&#333;shi for assistance. Can our heroes save the village and put a stop to the Gurumes Army?"
audienceRating="6.9" year="1986" thumb="/library/metadata/48754/thumb/1601866106"
art="/library/metadata/48754/art/1601866106" duration="3015876" originallyAvailableAt="1986-12-20"
addedAt="1601866104" updatedAt="1601866106" audienceRatingImage="imdb://image.rating">
<Media id="73594" duration="3015876" bitrate="1945" width="704" height="396" aspectRatio="1.78"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="sd" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73658" key="/library/parts/73658/1533395556/file.mkv" duration="3015876"
file="/data/gaps/Movies/Dragon Ball The Legend of Shenron (1986)/Dragon Ball The Legend of Shenron (1986).mkv"
size="734610623" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Animation"/>
<Genre tag="Action/Adventure"/>
<Director tag="Daisuke Nishio"/>
<Writer tag="Toshiki Inoue"/>
<Writer tag="Yoshifumi Y&#251;ki"/>
<Country tag="Japan"/>
<Role tag="Masako Nozawa"/>
<Role tag="Hiromi Tsuru"/>
<Role tag="Naoki Tatsuta"/>
</Video>
<Video ratingKey="48748" key="/library/metadata/48748" guid="plex://movie/5d7769697a53e9001e6e5a90"
studio="Toei Animation" type="movie" title="Dragon Ball: Mystical Adventure"
originalTitle="DRAGON BALL &#25705;&#35382;&#19981;&#24605;&#35696;&#22823;&#20882;&#38522;"
contentRating="TV-14"
summary="Master Roshi has succeeded at the one mission he valued most: to train Goku and Krillin to become ultimate fighters. So, he arranges for them to test their mettle at a competition hosted by Emperor Chiaotzu. Not everyone&#39;s playing by the rules, however, as a member of the ruler&#39;s household schemes to use the Dragonballs to extort money and power from the royal."
audienceRating="7.1" year="1988" thumb="/library/metadata/48748/thumb/1601866053"
art="/library/metadata/48748/art/1601866053" duration="2717828" originallyAvailableAt="1988-07-09"
addedAt="1601866051" updatedAt="1601866053" audienceRatingImage="imdb://image.rating">
<Media id="73582" duration="2717828" bitrate="2086" width="640" height="480" aspectRatio="1.33"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="480" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73646" key="/library/parts/73646/1533395502/file.mkv" duration="2717828"
file="/data/gaps/Movies/Dragon Ball Mystical Adventure (1988)/Dragon Ball Mystical Adventure (1988).mkv"
size="709886828" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Kazuhisa Takenouchi"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Yoshifumi Y&#251;ki"/>
<Country tag="Japan"/>
<Role tag="Mitsuko Horie"/>
<Role tag="Banjou Ginga"/>
<Role tag="Hiroko Emori"/>
</Video>
<Video ratingKey="48755" key="/library/metadata/48755" guid="plex://movie/5d77686f33f255001e856292"
studio="Toei Animation" type="movie" title="Dragon Ball: The Path to Power"
originalTitle="DRAGON BALL &#26368;&#24375;&#12408;&#12398;&#36947;" contentRating="Not Rated"
summary="A retelling of Dragon Ball&#39;s origin with a different take on the meeting of Goku, Bulma, and Kame-Sen&#39;nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them."
audienceRating="7.4" year="1996" thumb="/library/metadata/48755/thumb/1601866122"
art="/library/metadata/48755/art/1601866122" duration="4782989" originallyAvailableAt="1996-03-14"
addedAt="1601866121" updatedAt="1601866122" audienceRatingImage="imdb://image.rating">
<Media id="73595" duration="4782989" bitrate="1754" width="640" height="480" aspectRatio="1.33"
audioChannels="2" audioCodec="vorbis" videoCodec="h264" videoResolution="480" container="mkv"
videoFrameRate="24p" videoProfile="high">
<Part id="73659" key="/library/parts/73659/1533395502/file.mkv" duration="4782989"
file="/data/gaps/Movies/Dragon Ball The Path to Power (1996)/Dragon Ball The Path to Power (1996).mkv"
size="1051897481" container="mkv" indexes="sd" videoProfile="high"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Animation"/>
<Director tag="Shigeyasu Yamauchi"/>
<Writer tag="Akira Toriyama"/>
<Writer tag="Aya Matsui"/>
<Country tag="Japan"/>
<Role tag="Bin Shimada"/>
<Role tag="Daisuke Gouri"/>
<Role tag="Naoki Tatsuta"/>
</Video>
<Video ratingKey="48735" key="/library/metadata/48735" guid="plex://movie/5d7768680ab244002006d256"
studio="Marvel Enterprises" type="movie" title="X-Men" contentRating="PG-13"
summary="Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers."
rating="8.1" audienceRating="8.3" year="2000" tagline="Evolution Begins"
thumb="/library/metadata/48735/thumb/1601888898" art="/library/metadata/48735/art/1601888898"
duration="6265551" originallyAvailableAt="2000-07-12" addedAt="1601866022" updatedAt="1601888898"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48736" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73641" duration="6265551" bitrate="176" width="720" height="480" aspectRatio="2.35" audioChannels="2"
audioCodec="aac" videoCodec="h264" videoResolution="480" container="mp4" videoFrameRate="24p"
optimizedForStreaming="0" audioProfile="lc" has64bitOffsets="0" videoProfile="main">
<Part id="73705" key="/library/parts/73705/1601872906/file.m4v" duration="6265551"
file="/data/gaps/Movies/X-Men: The Movie (2000)/X-Men 2000 Remux-2160p.m4v" size="142741867"
audioProfile="lc" container="mp4" has64bitOffsets="0" indexes="sd" optimizedForStreaming="0"
videoProfile="main"/>
</Media>
<Genre tag="Science Fiction"/>
<Genre tag="Action/Adventure"/>
<Director tag="Bryan Singer"/>
<Writer tag="Bryan Singer"/>
<Writer tag="Tom DeSanto"/>
<Country tag="United States of America"/>
<Role tag="Hugh Jackman"/>
<Role tag="Patrick Stewart"/>
<Role tag="Ian McKellen"/>
</Video>
<Video ratingKey="48737" key="/library/metadata/48737" guid="plex://movie/5d77698b594b2b001e6a34ff"
studio="Marvel Entertainment" type="movie" title="X-Men: Days of Future Past" contentRating="PG-13"
summary="The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past &#8211; to save our future."
rating="9.0" audienceRating="9.1" year="2014" tagline="To save the future, they must alter the past"
thumb="/library/metadata/48737/thumb/1601888885" art="/library/metadata/48737/art/1601888885"
duration="8925751" originallyAvailableAt="2014-05-07" addedAt="1601866036" updatedAt="1601888885"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48738" ratingImage="rottentomatoes://image.rating.ripe">
<Media id="73640" duration="8925751" bitrate="193" width="720" height="480" aspectRatio="2.35" audioChannels="2"
audioCodec="aac" videoCodec="h264" videoResolution="480" container="mp4" videoFrameRate="24p"
optimizedForStreaming="0" audioProfile="lc" has64bitOffsets="0" videoProfile="main">
<Part id="73704" key="/library/parts/73704/1601869471/file.m4v" duration="8925751"
file="/data/gaps/Movies/X-Men Days of Future Past (2014)/X-Men Days of Future Past (2014).m4v"
size="222239986" audioProfile="lc" container="mp4" has64bitOffsets="0" indexes="sd"
optimizedForStreaming="0" videoProfile="main"/>
</Media>
<Genre tag="Action/Adventure"/>
<Genre tag="Fantasy"/>
<Director tag="Bryan Singer"/>
<Writer tag="Matthew Vaughn"/>
<Writer tag="Stan Lee"/>
<Country tag="United Kingdom"/>
<Country tag="United States of America"/>
<Role tag="Hugh Jackman"/>
<Role tag="Kelsey Grammer"/>
<Role tag="James McAvoy"/>
</Video>
</MediaContainer>
+42
View File
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<MediaContainer size="25" allowCameraUpload="1" allowChannelAccess="1" allowMediaDeletion="1" allowSharing="1"
allowSync="1" allowTuners="1" backgroundProcessing="1" certificate="1" companionProxy="1"
countryCode="jpn" diagnostics="logs,databases,streaminglogs" eventStream="1" friendlyName="Joker"
hubSearch="1" itemClusters="1" livetv="7" machineIdentifier="123qwe"
mediaProviders="1" multiuser="1" myPlex="1" myPlexMappingState="mapped" myPlexSigninState="ok"
myPlexSubscription="1" myPlexUsername="jh5975@gmail.com" offlineTranscode="1"
ownerFeatures="abc"
photoAutoTag="1" platform="Linux" platformVersion="1" pluginHost="1" pushNotifications="0"
readOnlyLibraries="0" requestParametersInCookie="1" streamingBrainABRVersion="3"
streamingBrainVersion="2" sync="1" transcoderActiveVideoSessions="0" transcoderAudio="1"
transcoderLyrics="1" transcoderPhoto="1" transcoderSubtitles="1" transcoderVideo="1"
transcoderVideoBitrates="64,96,208,320,720,1500,2000,3000,4000,8000,10000,12000,20000"
transcoderVideoQualities="0,1,2,3,4,5,6,7,8,9,10,11,12"
transcoderVideoResolutions="128,128,160,240,320,480,768,720,720,1080,1080,1080,1080"
updatedAt="1616526423" updater="1" version="1.22.0.4163-d8c4875dd" voiceSearch="1">
<Directory count="1" key="actions" title="actions"/>
<Directory count="1" key="activities" title="activities"/>
<Directory count="1" key="butler" title="butler"/>
<Directory count="1" key="channels" title="channels"/>
<Directory count="1" key="clients" title="clients"/>
<Directory count="1" key="devices" title="devices"/>
<Directory count="1" key="diagnostics" title="diagnostics"/>
<Directory count="1" key="hubs" title="hubs"/>
<Directory count="3" key="library" title="library"/>
<Directory count="3" key="livetv" title="livetv"/>
<Directory count="3" key="media" title="media"/>
<Directory count="3" key="metadata" title="metadata"/>
<Directory count="1" key="neighborhood" title="neighborhood"/>
<Directory count="1" key="playQueues" title="playQueues"/>
<Directory count="1" key="player" title="player"/>
<Directory count="1" key="playlists" title="playlists"/>
<Directory count="1" key="resources" title="resources"/>
<Directory count="1" key="search" title="search"/>
<Directory count="1" key="server" title="server"/>
<Directory count="1" key="servers" title="servers"/>
<Directory count="1" key="statistics" title="statistics"/>
<Directory count="1" key="system" title="system"/>
<Directory count="1" key="transcode" title="transcode"/>
<Directory count="1" key="updater" title="updater"/>
<Directory count="1" key="user" title="user"/>
</MediaContainer>
+31
View File
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<MediaContainer size="1" allowSync="1" art="/:/resources/movie-fanart.jpg" identifier="com.plexapp.plugins.library"
librarySectionID="5" librarySectionTitle="Saw" librarySectionUUID="236126a3-a526-470c-b59e-9c83efb03b05"
mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1615295203" thumb="/:/resources/movie.png"
title1="Saw" title2="All Saw" viewGroup="movie" viewMode="65592">
<Video ratingKey="48756" key="/library/metadata/48756" guid="com.plexapp.agents.imdb://tt0387564?lang=en"
studio="Lionsgate" type="movie" title="Saw" contentRating="R"
summary="Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying..."
rating="4.9" audienceRating="8.4" year="2004" tagline="Live or die. Make your choice."
thumb="/library/metadata/48756/thumb/1601867828" art="/library/metadata/48756/art/1601867828"
duration="6166159" originallyAvailableAt="2004-10-01" addedAt="1601866847" updatedAt="1601867828"
audienceRatingImage="rottentomatoes://image.rating.upright" chapterSource="media"
primaryExtraKey="/library/metadata/48757" ratingImage="rottentomatoes://image.rating.rotten">
<Media id="73596" duration="6166159" bitrate="10991" width="1920" height="1080" aspectRatio="1.78"
audioChannels="8" audioCodec="aac" videoCodec="hevc" videoResolution="1080" container="mkv"
videoFrameRate="24p" audioProfile="lc" videoProfile="main 10">
<Part id="73660" key="/library/parts/73660/1590082620/file.mkv" duration="6166159"
file="/data/gaps/Movies2/Saw (2004)/Saw 2004 Bluray-1080p.mkv" size="8464428584" audioProfile="lc"
container="mkv" indexes="sd" videoProfile="main 10"/>
</Media>
<Genre tag="Crime"/>
<Genre tag="Horror"/>
<Director tag="James Wan"/>
<Writer tag="Leigh Whannell"/>
<Country tag="USA"/>
<Collection tag="Saw"/>
<Role tag="Leigh Whannell"/>
<Role tag="Cary Elwes"/>
<Role tag="Danny Glover"/>
</Video>
</MediaContainer>
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<MediaContainer size="6" allowSync="0" identifier="com.plexapp.plugins.library"
mediaTagPrefix="/system/bundle/media/flags/" mediaTagVersion="1615295203" title1="Plex Library">
<Directory allowSync="1" art="/:/resources/movie-fanart.jpg" composite="/library/sections/4/composite/1616522659"
filters="1" refreshing="0" thumb="/:/resources/movie.png" key="4" type="movie" title="Best Movies"
agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en"
uuid="UUID1" updatedAt="1601899630" createdAt="1601864973"
scannedAt="1616522659" content="1" directory="1" contentChangedAt="7485269086340221160" hidden="0">
<Location id="4" path="/data/gaps/Best Movies"/>
</Directory>
<Directory allowSync="1" art="/:/resources/movie-fanart.jpg" composite="/library/sections/1/composite/1616523026"
filters="1" refreshing="0" thumb="/:/resources/movie.png" key="1" type="movie" title="Movies"
agent="com.plexapp.agents.themoviedb" scanner="Plex Movie Scanner" language="en"
uuid="UUID2" updatedAt="1601969240" createdAt="1584962634"
scannedAt="1616523026" content="1" directory="1" contentChangedAt="7485269086342285307" hidden="0">
<Location id="1" path="/data/Movies"/>
</Directory>
<Directory allowSync="1" art="/:/resources/movie-fanart.jpg" composite="/library/sections/6/composite/1616523027"
filters="1" refreshing="0" thumb="/:/resources/movie.png" key="6" type="movie"
title="Movies with new Metadata" agent="tv.plex.agents.movie" scanner="Plex Movie" language="en-US"
uuid="UUID3" updatedAt="1601899889" createdAt="1601865143"
scannedAt="1616523027" content="1" directory="1" contentChangedAt="7485269086340225185" hidden="0">
<Location id="6" path="/data/gaps/Movies"/>
</Directory>
<Directory allowSync="1" art="/:/resources/movie-fanart.jpg" composite="/library/sections/5/composite/1616523033"
filters="1" refreshing="0" thumb="/:/resources/movie.png" key="5" type="movie" title="Saw"
agent="com.plexapp.agents.imdb" scanner="Plex Movie Scanner" language="en"
uuid="UUID4" updatedAt="1601900204" createdAt="1601865059"
scannedAt="1616523033" content="1" directory="1" contentChangedAt="7485269086340221749" hidden="0">
<Location id="5" path="/data/gaps/Movies2"/>
</Directory>
<Directory allowSync="1" art="/:/resources/show-fanart.jpg" composite="/library/sections/2/composite/1616523085"
filters="1" refreshing="0" thumb="/:/resources/show.png" key="2" type="show" title="TV Shows"
agent="com.plexapp.agents.thetvdb" scanner="Plex Series Scanner" language="en"
uuid="UUID5" updatedAt="1601961875" createdAt="1584962647"
scannedAt="1616523085" content="1" directory="1" contentChangedAt="7485269086342306732" hidden="0">
<Location id="2" path="/data/TV"/>
</Directory>
<Directory allowSync="1" art="/:/resources/artist-fanart.jpg" composite="/library/sections/3/composite/1616523033"
filters="1" refreshing="0" thumb="/:/resources/artist.png" key="3" type="artist" title="Music"
agent="tv.plex.agents.music" scanner="Plex Music" language="en"
uuid="UUID6" updatedAt="1598628682" createdAt="1585012128"
scannedAt="1616523033" content="1" directory="1" contentChangedAt="7485269086341776100" hidden="0">
<Location id="3" path="/data/Music"/>
</Directory>
</MediaContainer>
@@ -0,0 +1,74 @@
{
"telegramProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"botId": "",
"chatId": ""
},
"pushBulletProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"channel_tag": "",
"accessToken": ""
},
"emailProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"username": "",
"password": "",
"mailTo": "",
"mailFrom": "",
"mailServer": "",
"mailPort": 0,
"mailTransportProtocol": "",
"mailSmtpAuth": "",
"mailSmtpTlsEnabled": false
},
"gotifyProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"address": "",
"token": ""
},
"slackProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"webHookUrl": ""
},
"pushOverProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"token": "",
"user": "",
"priority": 1,
"sound": "",
"retry": 1,
"expire": 2
},
"discordProperties": {
"enabled": false,
"notificationTypes": [
"TEST",
"PLEX_SERVER_CONNECTION"
],
"webHookUrl": ""
}
}
+1
View File
@@ -6,6 +6,7 @@
<modules>
<module>Core</module>
<module>GapsWeb</module>
<module>MockedPlex</module>
<module>Plex</module>
<module>RadarrV3</module>
</modules>