Unmatched Movies
#1
Hi all,
I follow wiki guideline for naming my movies file but sometimes they doesn't match and I don't see them in movie list.
It is possible extract a file system file list that show unmatched files?
Reply
#2
So, nobody knows.

I studied a little bit and I seen in my MyVideos75.db files. Following Database specification (http://wiki.xbmc.org/index.php?title=The_XBMC_Database) I wrote this query :
Quote: select files.* , movie.*
from files left join movie
on (movie.idFile = files.idFile)
where idPath = 2
and dateAdded is null
order by strFilename asc
and executed it in a SqlLite database browser in order to answer to my question "How can I have a list of a unrecognized movies?".
To get the goal I think dateAdd is null is the condition where the file is present on my hard drive but it is never added to the library but as you can see here: https://imagizer.imageshack.us/v2/589x35...3/94xg.jpg this is false.
I.E. the movie 'the wrestler' it appears as never added (it is shown in the query result) but if I search in my library using Awxi webinterface I see it.

Someone has suggestion about?
Reply
#3
The wiki should mention at least two methods of getting unmatched videos. One is the Missing Movie Scanner, the other is the debug log (the wiki should mention the text line you can search for that will show unmatched entries in the log).
Reply

Logout Mark Read Team Forum Stats Members Help
Unmatched Movies0