I have set up all my movies in XBMC and wanted to clean the library from movies which I’ll likely never watch. My idea is to export the library to plain text CSV format, read the file with Excel, filter for crappy IMDB ratings and remove the movies files. Here is how:
- Export your library to a single file from XBMC. The file likely ends up in
C:\Documents and Settings\Administrator\Application Data\XBMC\userdata
and is calledvideodb.xml
. - Convert the XML file to something Excel can read.
- Download the XSL file which sets the conversion format.
- Convert the file with a command line utility from Microsoft. Open a command window and use
msxsl.exe videodb.xml convert.xsl > movies.csv
- Read
movies.csv
with Excel and analyze to taste. - You’re done.