[mythtv-users] mythfilldatabase: Where did movie "star" ratings go?

Bill Meek keemllib at gmail.com
Mon Oct 20 19:21:09 UTC 2014


On 10/20/2014 12:49 PM, Rick wrote:
...
 > I'm experiencing the same thing on 27.4 using the canned search for 3.5 stars or better and a science fiction search. Nada stars for anything.
> MFDB ran yesterday at 3pm AST.

I believe this will run on 0.27.4, so you could try:

HOSTNAME=yourBackendHostNameHere
curl "http://${HOSTNAME}:6544/Guide/GetProgramGuide?StartTime=2014-10-20%2000:00:00&EndTime=2014-10-2200:00:00&Details=true" | \
     sed 's/></>\n</g' | \
     grep "^<Stars>.*</Stars>" | \
     grep -v "^<Stars>0</Stars>"

and maybe remove the final grep just to see what's in your DB.
'wget --output-document=-' works if you don't have 'curl'.

I get lines like this:
<Stars>0.75</Stars>
<Stars>0.625</Stars>
<Stars>0.5</Stars>
...

-- 
Bill


More information about the mythtv-users mailing list