damienlangg / SimpleMovieCatalog

Simple Movie Catalog will scan a given directory for movies, query imdb for info and generate a catalog as a html page which offers sorting, filtering and grouping of found movies by different criteria.
Other
23 stars 13 forks source link

[ Feature Request ] Searching directories recursively #11

Closed hringriin closed 6 years ago

hringriin commented 6 years ago

I cannot see a solution to have a dir like /home/max/movies searched recursively, meaning folders like MadMax or Die Hard in /home/max/movies are ignored.

damienlangg commented 6 years ago

Directories are always searched recursively. If some movies are not recognized it must be a different reason for that, to make sure a movie is found either include the year of release in the dir name or file name or add a link to the movie on imdb to a title.nfo file

hringriin commented 6 years ago

Well, then I probably do not get how SMC works.

My directory looks like somewhat like this:

/home/<user>/media:

├── Movies
│   ├── The Avengers
│   │   ├── The Avengers.mkv
│   │   ├── Bonus
│   │   │   ├── Bonus 1.mkv
.   .   .   .
├── Series
│   ├── Navy CIS
│   │   ├── Season 01
│   │   │   ├── NCIS - s01e01 - Yankee White.mkv
│   │   │   ├── NCIS - s01e02 - Hung Out To Dry.mkv
.   .   .   .

Scanning the directory /home/<user>/media does not work.

damienlangg commented 6 years ago

from README:

The directories are scanned for: .nfo, .txt, .url, .desktop files that contain links to imdb info like this: http://www.imdb.com/title/tt0062622/

If no such link is present then the movie title and year is guessed from directory or file name and searched on imdb for an exact match.

If none of the above methods produce valid info, then the directory is reported in the "Missing Info" group.

You can then resolve missing info for these directories by using one of the following methods:

hringriin commented 6 years ago

Thanks.