2012-02-17, 15:59
firstly, nice skin ronie!
Apols if this has been covered, I did a quick search and couldn't find anything.
Today I created some Australian ratings icons based on what is already included (linked below) and edited what I think are the appropriate parts in 720p/Includes_Variables.xml to use them. (see code below)
note: I did this for my own setup and my graphics skills are limited
I'm not completely clear on the accepted format for non mpaa ratings in xbmc, but it seems to me people are using the country format scraped from IMDB, hence I have done the same. The ratings I have come across and made icons for are:
Australia:G
AustraliaG
Australia:M
Australia:MA
Australia:MA15+ (alternate of above)
Australia:R
Australia:X
In addition, if anyone is interested I will post the simple shell script I used to update the mpaa ratings in the xbmc db with the Australian ones (it relies on the db already knowing the IMDB ID for the title)
icons zip download (4shared link)
Apols if this has been covered, I did a quick search and couldn't find anything.
Today I created some Australian ratings icons based on what is already included (linked below) and edited what I think are the appropriate parts in 720p/Includes_Variables.xml to use them. (see code below)
note: I did this for my own setup and my graphics skills are limited
Code:
<value condition="StringCompare(ListItem.Mpaa,Australia:G">flags/movies/rating/au_ratedg.png</value>
<value condition="StringCompare(ListItem.Mpaa,Australia:PG">flags/movies/rating/au_ratedpg.png</value>
<value condition="StringCompare(ListItem.Mpaa,Australia:M">flags/movies/rating/au_ratedm.png</value>
<value condition="substring(ListItem.Mpaa,Australia:MA">flags/movies/rating/au_ratedma.png</value>
<value condition="StringCompare(ListItem.Mpaa,Australia:R">flags/movies/rating/au_ratedr.png</value>
<value condition="StringCompare(ListItem.Mpaa,Australia:X">flags/movies/rating/au_ratedx.png</value>
I'm not completely clear on the accepted format for non mpaa ratings in xbmc, but it seems to me people are using the country format scraped from IMDB, hence I have done the same. The ratings I have come across and made icons for are:
Australia:G
AustraliaG
Australia:M
Australia:MA
Australia:MA15+ (alternate of above)
Australia:R
Australia:X
In addition, if anyone is interested I will post the simple shell script I used to update the mpaa ratings in the xbmc db with the Australian ones (it relies on the db already knowing the IMDB ID for the title)
icons zip download (4shared link)