[LINUX] Print human-readable media list?
#1
I'm wondering if there's a way to print a basic, no-frills list of all the media in a given XBMC database. I searched and came across the import/export library function, but I'm hoping for something I can give to a person and let them see at a glance what all I have indexed and available on my HTPC.

Is there a plugin that does this? A built-in feature I'm overlooking?

Many thanks.
Reply
#2
afaik there is no built in option for that, but you can use sqlite:

first install sqlite3

then run
Code:
sqlite3 ~/.xbmc/userdata/Database/MyVideos57.db "select c00 from movie; select c00 from tvshow"

the name of the DB file can vary, so make sure you use the correct filename.
Reply
#3
Great, I'll give that a shot. I assume it defaults to terminal output? I can always just pipe it to a text file if that's the case.
Reply

Logout Mark Read Team Forum Stats Members Help
[LINUX] Print human-readable media list?0