Kodi Community Forum
Full Library Printout - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Kodi related discussions (https://forum.kodi.tv/forumdisplay.php?fid=6)
+--- Thread: Full Library Printout (/showthread.php?tid=78309)



Full Library Printout - fonzie - 2010-08-03

I have a large library spread across several drives and some on a NAS. I want to know if there is a simple way to get some sort of notepad file that will list all of my movie titles?

thank you


- TheDuffMan - 2010-08-03

As a start, if you have all of these movies indexed in XBMC's library, you can export your database as a single file and this creates an XML file containing all of your videos.


- fonzie - 2010-08-05

Yes, I have all of my movies indexed in XBMC. I went ahead and exported my library. I found the xml file. Now my question is how do I open access it properly? Double clicking on it opens up internet explorer with a bunch of code and a description for only one of my movies.


- Flomaster - 2010-08-06

open the file with notepad in windows *right click* *open with*

-=jason=-


- fonzie - 2010-08-06

So I opened up the file with notepad, but it has a bunch of text (movie synopsis,runtime,etc).

I was hoping for just a simple clean list of movie titles (at most the movie directories)

Is this too much to hope for or can it be done easily?


- TheDuffMan - 2010-08-06

The user TickTack wrote up a script here: http://forum.xbmc.org/showthread.php?tid=69982

I haven't given it a run myself but I think that's the only option right now. I'm also looking at building a way to do this.


- Abe Froman - 2010-08-06

You can open the xml in excel and then select only the columns you want to display.


- fonzie - 2010-08-06

I opened the xml file in Excel and deleted all the unneeded columns. It worked nicely. I was even able to save an extra copy as a notepad (.txt) file.

Thank you.


- Flomaster - 2010-08-06

here is what I just did right now.

I was using command line and went into my movie directory

/mnt/1tb/Movies

I then typed ls
it listed all the folders I had in there in list form I then copied and pasted in to notepad++ its a notepad that has the lines numbered. I have 78 movies in my library

cheers,
-=Jason=-


- blackphoenix - 2010-08-09

if you're going to log in via the command line and do an 'ls' you might as well just redirect its output.

'ls > movies.txt'

This will basically take what would normally be displayed to your screen with 'ls' but instead dump it straight to a file named movies.txt which notepad should open without a problem.