drrlramsey / xbmc-addons

Automatically exported from code.google.com/p/xbmc-addons
0 stars 0 forks source link

[cinema.experience] Require proper handling of Movie Ratings #74

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I believe there are two forms of movie ratings(MPAA and BBFC) and we should be 
able to hand both(I believe Nuka has a way) 

Also we should fix the handling of the slide MPAA as well, it is disabled right 
now.

Original issue reported on code.google.com by giftie61@gmail.com on 28 Dec 2010 at 8:10

GoogleCodeExporter commented 8 years ago
Nuka has a patch for this as mentioned here:

http://forum.xbmc.org/showpost.php?p=675654&postcount=370

Original comment by brian.wa...@gmail.com on 29 Dec 2010 at 1:02

GoogleCodeExporter commented 8 years ago
On the surface this seems like it would be pretty straight forward. Wouldn't 
all we have to add the new ratings to these lines?

            mpaa = mpaa.split( " " )[ 1 - ( len( mpaa.split( " " ) ) == 1 ) ]
            mpaa = ( mpaa, "NR", )[ mpaa not in ( "G", "PG", "PG-13", "R", "NC-17", "Unrated", ) ]

I don't use any of the BBFC ratings though, does xbmc store them in a different 
field in the db? or are they formatted differently?

Original comment by brian.wa...@gmail.com on 3 Jan 2011 at 1:53