Any way to print/export alphabetized list of movie titles & corresponding filenames?
#1
I am looking for a way to print out or save to a text file an alphabetized list of all the movie titles that Kodi has scanned in and on the same line as the title show the filename of the movie.  The reason is to assist in more quickly finding movies that have been incorrectly titled during the scraping process.

Is there an addon, external program or even a bash shell script that will do this?  It's only a single use thing so I don't need any kind of fancy interface, I just need a way to get the list!
Reply
#2
For the default SQLite video database, you can use a tool like https://sqlitebrowser.org/ .
Open the MyVideos121.db database file in Kodi's userdata/Database folder.
Then, Select File>Export>Tables as CSV File

Or with a simple query you can get your sorted movie listing. Not sure how easy it is to export that list, I never used the tool myself. Query:
sql:
SELECT c00 FROM movie ORDER BY c00 ASC;
Reply

Logout Mark Read Team Forum Stats Members Help
Any way to print/export alphabetized list of movie titles & corresponding filenames?0