TMM to scrape multiple Rating sources
#2
(2020-06-10, 00:23)Shredder_guitar Wrote: Is it possible for TMM to scrape from multiple rating sources and post in the NFO file? I have another platform that does this but I would like for TMM to be my primary Media Management tool. I'm  looking for it to add values like seen below, from IMDB, metacritic, TMDB, and Rotten Tomatoes. From what I've found so far, it only seems to do one or the other....is there a way to force all? 


 
Code:
<ratings>
        <rating name="imdb" max="10" default="true">
            <value>7.1</value>
            <votes>129984</votes>
        </rating>
        <rating name="metacritic" max="10">
            <value>6.0</value>
            <votes>31</votes>
        </rating>
        <rating name="tomatometerallcritics" max="10">
            <value>5.7</value>
            <votes>183</votes>
        </rating>
        <rating name="tomatometerallaudience" max="10">
            <value>5.6</value>
            <votes>282129</votes>
        </rating>
        <rating name="themoviedb" max="10">
            <value>6.8</value>
            <votes>2289</votes>
        </rating>

I think i have found a solution for this Smile

Use the Universal Movie scraper set all the fields to TMDB, except for the ratings, select OMDBAPI
I tried this for a few movies and this was the result in the nfo file for Thor

xml:
  <ratings>
    <rating default="false" max="10" name="themoviedb">
      <value>6.7</value>
      <votes>14941</votes>
    </rating>
    <rating default="true" max="10" name="imdb">
      <value>7.0</value>
      <votes>723305</votes>
    </rating>
    <rating default="false" max="100" name="rottenTomatoes">
      <value>77.0</value>
      <votes>0</votes>
    </rating>
    <rating default="false" max="100" name="metascore">
      <value>57.0</value>
      <votes>0</votes>
    </rating>
  </ratings>

Check it out and let me know if it works for you.


Messages In This Thread
RE: TMM to scrape multiple Rating sources - by CK77 - 2020-06-10, 22:31
Logout Mark Read Team Forum Stats Members Help
TMM to scrape multiple Rating sources0