├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── RegexPlayground.txt ├── config.go ├── example.json ├── exclusive.go ├── exec_log.go ├── go.mod ├── go.sum ├── gondola.go ├── helpers.go ├── metadata.go ├── metadata_html.go ├── movies.go ├── probe.go ├── title.go ├── tmdb.go ├── tmdb_movie_search.go ├── transcode.go ├── tv.go ├── tv_episode_guess.go ├── tvdb.go └── watch.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/README.md -------------------------------------------------------------------------------- /RegexPlayground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/RegexPlayground.txt -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/config.go -------------------------------------------------------------------------------- /example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/example.json -------------------------------------------------------------------------------- /exclusive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/exclusive.go -------------------------------------------------------------------------------- /exec_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/exec_log.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/go.sum -------------------------------------------------------------------------------- /gondola.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/gondola.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/helpers.go -------------------------------------------------------------------------------- /metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/metadata.go -------------------------------------------------------------------------------- /metadata_html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/metadata_html.go -------------------------------------------------------------------------------- /movies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/movies.go -------------------------------------------------------------------------------- /probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/probe.go -------------------------------------------------------------------------------- /title.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/title.go -------------------------------------------------------------------------------- /tmdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/tmdb.go -------------------------------------------------------------------------------- /tmdb_movie_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/tmdb_movie_search.go -------------------------------------------------------------------------------- /transcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/transcode.go -------------------------------------------------------------------------------- /tv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/tv.go -------------------------------------------------------------------------------- /tv_episode_guess.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/tv_episode_guess.go -------------------------------------------------------------------------------- /tvdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/tvdb.go -------------------------------------------------------------------------------- /watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrishulbert/gondola/HEAD/watch.go --------------------------------------------------------------------------------