apple-tv-converter 0.7.1 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +8 -8
- data/VERSION +1 -1
- data/lib/apple_tv_converter/command_line.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -16,6 +16,7 @@ Usage: apple-tv-converter [options] [file]
|
|
|
16
16
|
-i, --id id Set a specific id for fetching metadata from online services
|
|
17
17
|
--imdb_id id Set a specific id for fetching metadata from IMDB
|
|
18
18
|
--tvdb_id id Set a specific id for fetching metadata from TheTVDB
|
|
19
|
+
--tmdb_id id Set a specific id for fetching metadata from TheMovieDB
|
|
19
20
|
-l, --languages eng,por,... Only keep audio and subtitles in the specified languages
|
|
20
21
|
-d, --dir DIRECTORY Process all files in DIRECTORY recursively
|
|
21
22
|
--itunes Add processed file to iTunes library, if it isn't present yet
|
|
@@ -66,8 +67,8 @@ Common options:
|
|
|
66
67
|
|
|
67
68
|
### Metadata
|
|
68
69
|
|
|
69
|
-
Metadata can be obtained automatically from themoviedb.org(http://www.themoviedb.org) (for movies) or from TheTVDB.com(http://www.thetvdb.com) (for TV show episodes).
|
|
70
|
-
Both fall back to IMDB.com(http://www.imdb.com) for necessary information. Most metadata will be filled, including the file's artwork, so it displays a nice image on iTunes library.
|
|
70
|
+
Metadata can be obtained automatically from [themoviedb.org](http://www.themoviedb.org) (for movies) or from [TheTVDB.com](http://www.thetvdb.com) (for TV show episodes).
|
|
71
|
+
Both fall back to [IMDB.com](http://www.imdb.com) for necessary information. Most metadata will be filled, including the file's artwork, so it displays a nice image on iTunes library.
|
|
71
72
|
|
|
72
73
|
#### Fallbacks
|
|
73
74
|
|
|
@@ -84,15 +85,14 @@ For Plex Media Server users, you can pass the command-line option `--plex` to au
|
|
|
84
85
|
|
|
85
86
|
### Other remarks
|
|
86
87
|
|
|
87
|
-
After conversion, `apple-tv-converter` will create a file named `.apple-tv-converter.data` on the base directory of the file containing some information (
|
|
88
|
+
After conversion, `apple-tv-converter` will create a file named `.apple-tv-converter.data` on the base directory of the file containing some information (metadata service ids, etc.) that can be useful for subsequent processing.
|
|
88
89
|
|
|
89
90
|
## Thanks
|
|
90
91
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
**TV Show metadata service powered by [www.thetvdb.com](http://www.thetvdb.com)**
|
|
92
|
+
* Subtitles service powered by [www.OpenSubtitles.org](http://www.opensubtitles.org)
|
|
93
|
+
* Movie metadata service powered by [themoviedb.org](http://www.themoviedb.org) (**This product uses the TMDb API but is not endorsed or certified by TMDb.**)
|
|
94
|
+
* TV Show metadata service powered by [www.thetvdb.com](http://www.thetvdb.com)
|
|
95
|
+
* Movie and TV show metadata service also powered by [www.imdb.com](http://www.imdb.com)
|
|
96
96
|
|
|
97
97
|
# TODO
|
|
98
98
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.2
|
|
@@ -81,7 +81,7 @@ module AppleTvConverter
|
|
|
81
81
|
options.tvdb_id = id
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
opts.on('--tmdb_id id', "Set a specific id for fetching metadata from
|
|
84
|
+
opts.on('--tmdb_id id', "Set a specific id for fetching metadata from TheMovieDB") do |id|
|
|
85
85
|
raise ArgumentError.new("Can't supply both --id and --imdb_id, --tvdb_id, or --tmdb_id at the same time!") if id_switch & 4 > 0
|
|
86
86
|
|
|
87
87
|
id_switch |= 4
|