finding my missing movies
#1
I cant seem to find a decent way of finding my missing movies. I have a folder called movies which contain 840 movies, each in a seperate folder containing artwork, nfo's etc but when importing them into the library i only see 821.

While at work and being cheeky, i sometimes try things on xbmc before i do it at home. I've got some sample movies which ive loaded into the library and exported it as a seperate file.

I've just wrote a little .net app which reads the xml file and builds a csv file of all the movie paths.

videodb.csv
Code:
C:\Documents and Settings\ash.jones\My Documents\My Videos\Die Hard (1988)\
C:\Documents and Settings\ash.jones\My Documents\My Videos\Die Hard 2\
C:\Documents and Settings\ash.jones\My Documents\My Videos\Die Hard 3\
C:\Documents and Settings\ash.jones\My Documents\My Videos\Die Hard 4\

using a command prompt in windows i.e. good old dos.

I've went into the movies folder and ran

Code:
C:\Documents and Settings\ash.jones\My Documents\My Videos>dir *. > dir.csv

Now dir.csv looks like
Code:
Volume in drive C has no label.
Volume Serial Number is 313E-80E4

Directory of C:\Documents and Settings\ash.jones\My Documents\My Videos

07/04/2011  13:12    <DIR>          .
07/04/2011  13:12    <DIR>          ..
04/04/2011  10:55    <DIR>          Die Hard (1988)
04/04/2011  10:42    <DIR>          Die Hard 2
04/04/2011  10:42    <DIR>          Die Hard 3
04/04/2011  10:42    <DIR>          Die Hard 4
               0 File(s)              0 bytes
               6 Dir(s)  169,967,099,904 bytes free

This should make it easier for me to find whats missing, well i hope. Wont find out until i get home tonight and try it Nod
Reply
#2
http://forum.xbmc.org/showthread.php?tid=90258
Reply
#3
phear Wrote:http://forum.xbmc.org/showthread.php?tid=90258

tried it, it dont work for me Sad
Reply
#4
kinda made it more user friendly now i.e. less work for me to do Laugh

Image
Reply
#5
well fingers crossed it work for you now
Reply
#6
did you look under the bed, most of missing stuff like socks and dog toys end up under the bed, I would look there first. Laugh
Loft - Intel I5-3570K, Asus P8Z77-LX, Corsair 16GB DDR3, AMD HD 7700, AOC 27" LCD
Bedroom - Intel I3-530, Intel DH55HC, Corsair 4GB DDR3, Nvidia G610, Samsung 37" HDTV
Living Room - Intel E8400, Gigabyte GA-E7AUM-DS2H, 4GB DDR2, Nvidia G610, Samsung 52" HDTV
Reply
#7
ha ha, found my 20 odd missing movies and now they have been added. Smile
Reply
#8
Have you tried adding the movies manually? I know it's not ideal but once you know which ones they are at least then you'll have them available in your library.

I find the best way to find them if your scraper won't pick them up is to go into the Movie Information, then do a refresh and make sure the name is correct i.e. delete the .avi etc. Then add the year the film was made. This almost always finds them and adds them to your library.
Reply
#9
yes its not ideal. i got 840 odd movies and growingWink

Most of the errors (95%) has been naming convensions. i.e.

Hot Shots 1 (dont exist but did it for easy of file browsing)
Hot Shots 2

Gladiator (200) (not enough oo's, lol)

Forest Gump (1994) (oh rrrrr, lol)

"I Was Monty's Double" does not exist on TMDb but does on IMDb

also some martial arts movies on IMDB only picks on the original chinese title on IMDb

But once they are in i export them as seperate files so no more future errors :p
Reply
#10
try:
dir /B > mymovies.csv
this will give you bare format... no more having to edit away all the junk, when you dump it in a spreadsheet...


Now to get a list out of what you have in your database...

download sqlitespy and install it

then if your database isnt local copy it to where you installed sqllitespy
on linux it is located in: /home/xbmc/.xbmc/userdata/Database
for movies it is something like MyVideos44.db or something similar.

start SQLiteSpy
go to file > open database...
(chose the database you just copied)
in the top box you can type:
select c00 from movieview
then Execute > Execute SQL

you will have a list of all your movies...

Select (highlight all your movies)
go to Edit> Copy

open a word or xls file and paste it...

now you can combine this and the dos listing and you will have something you can compare quite quickly.
Reply

Logout Mark Read Team Forum Stats Members Help
finding my missing movies0