JasonMillward / Autorippr

Rip discs automatically using a blend of Python, MakeMKV and HandBrake
MIT License
241 stars 60 forks source link

ARM fails to properly identify "Mad About You - The Complete Series" #147

Open PopeFelix opened 5 years ago

PopeFelix commented 5 years ago

MAD_ABOUT_YOU_S5D2.log ARM fails to correctly identify "Mad About You - The Complete Series". See attached debug log.

What's happening is that Windows Media Services returns the disc year as 2016 (presumably when the series was released), but OMDB lists this series as between 1992 and 1999 (see JSON below). This is causing a lookup failure on OMDB. Unfortunately, there's no series info in the Windows Media Services response (below), so I don't rightly know how to solve this.

{
   "Plot" : "Paul and Jaime Buchman are a recently married couple in New York City. They point out the gentle humor of domesticity and in the everyday situations of life.",
   "imdbVotes" : "17,241",
   "Language" : "English",
   "Genre" : "Comedy, Romance",
   "Rated" : "TV-PG",
   "Year" : "1992–1999",
   "Metascore" : "N/A",
   "imdbRating" : "6.6",
   "Poster" : "https://images-na.ssl-images-amazon.com/images/M/MV5BMTc2NDkxOTE1OF5BMl5BanBnXkFtZTcwNzQ2MzkxMQ@@._V1_SX300.jpg",
   "imdbID" : "tt0103484",
   "Type" : "series",
   "Director" : "N/A",
   "Country" : "USA",
   "Response" : "True",
   "Released" : "23 Sep 1992",
   "Writer" : "Danny Jacobson, Paul Reiser",
   "Title" : "Mad About You",
   "Ratings" : [
      {
         "Value" : "6.6/10",
         "Source" : "Internet Movie Database"
      }
   ],
   "Awards" : "Won 4 Golden Globes. Another 36 wins & 90 nominations.",
   "totalSeasons" : "7",
   "Runtime" : "22 min",
   "Actors" : "Paul Reiser, Helen Hunt, John Pankow, Leila Kenzle"
}
<?xml version="1.0" encoding="UTF-8"?>
<METADATA xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <MDR-DVD>
    <version>4.0</version>
    <dvdTitle>Mad About You: The Complete Series [14 Discs]</dvdTitle>
    <studio>Mill Creek</studio>
    <leadPerformer/>
    <actors/>
    <director/>
    <MPAARating>NR</MPAARating>
    <releaseDate>2016 05 10</releaseDate>
    <genre>Comedy</genre>
    <largeCoverParams>cov150/drw100/w181/w18133nrp8g.jpg</largeCoverParams>
    <smallCoverParams>cov075/drw100/w181/w18133nrp8g.jpg</smallCoverParams>
    <dataProvider>AMG</dataProvider>
    <wmid_dvd>0225F481-DA58-4E24-BF4A-072D4C5509AF</wmid_dvd>
    <dv_id>E   375408          </dv_id>
    <dataProviderParams>Provider=AMG</dataProviderParams>
    <dataProviderLogo>Provider=AMG</dataProviderLogo>
    <moreInfoParams/>
    <title>
      <titleNum>1</titleNum>
      <titleTitle>Mad About You: The Complete Series [14 Discs]</titleTitle>
      <studio>Mill Creek</studio>
      <director/>
      <leadPerformer/>
      <actors/>
      <MPAARating>NR</MPAARating>
      <genre>Comedy</genre>
      <communityRating/>
      <chapter>
        <chapterNum>1</chapterNum>
        <chapterTitle>Chapter 1 [2:19]</chapterTitle>
      </chapter>
      <chapter>
        <chapterNum>2</chapterNum>
        <chapterTitle>Chapter 2 [18:25]</chapterTitle>
      </chapter>
      <chapter>
        <chapterNum>3</chapterNum>
        <chapterTitle>Chapter 3 [:26]</chapterTitle>
      </chapter>
    </title>
  </MDR-DVD>
</METADATA>
PopeFelix commented 5 years ago

The bit about forced year is my (unsuccessful) attempt to solve the problem, but the problem is also that the disc title is "Mad About You - The Complete Series" and OMDB has it as "Mad About You"

PopeFelix commented 5 years ago

Wrong repo, sorry