Kodi Community Forum

Full Version: Manually create nfo file with DVD meta data
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
EDIT - Figured out my first problem ...

Second problem ... is it possible to create an nfo file with only some information, for example just meta data and then have the build in scraping function of XBMC populate the rest of the information like usual?

Thanks,
Harry
Figured it out ... in case anyone else is doing something similar, here's what you put in the Movie.nfo file:

<movie>
<fileinfo>
<streamdetails>
<video>
<codec>dvd</codec>
</video>
</streamdetails>
</fileinfo>
</movie>
http://www.themoviedb.org/movie/4951

The last line is the url to the location for the rest of the movie information. In my case I'm using the TheMovieDB scraper so I put in the url for the movie in question. Although it also worked if I put in the IMDB url, even though I'm using the TheMovieDB scraper.

Harry