├── .gitignore ├── MakeNFO.js ├── README.md ├── deps ├── darwin │ ├── ffmpeg │ └── mediainfo └── win32 │ ├── MediaInfo.dll │ ├── MediaInfo.exe │ └── ffmpeg.exe ├── package.json └── tmdb.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /MakeNFO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/MakeNFO.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/README.md -------------------------------------------------------------------------------- /deps/darwin/ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/deps/darwin/ffmpeg -------------------------------------------------------------------------------- /deps/darwin/mediainfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/deps/darwin/mediainfo -------------------------------------------------------------------------------- /deps/win32/MediaInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/deps/win32/MediaInfo.dll -------------------------------------------------------------------------------- /deps/win32/MediaInfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/deps/win32/MediaInfo.exe -------------------------------------------------------------------------------- /deps/win32/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/deps/win32/ffmpeg.exe -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/package.json -------------------------------------------------------------------------------- /tmdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcombs/NFO-Generator/HEAD/tmdb.js --------------------------------------------------------------------------------