apple-tv-converter 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ v0.7.2
2
+ ------
3
+ * Small fix on the command line help
4
+
1
5
  v0.7.1
2
6
  ------
3
7
  * Fixed `undefined method 'empty?' for Fixnum` on TVDB fetcher
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- apple-tv-converter (0.7.0)
4
+ apple-tv-converter (0.7.2)
5
5
  httparty (~> 0)
6
6
  imdb (~> 0.6, >= 0.6.8)
7
7
  language_list (~> 0.0, >= 0.0.3)
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 (IMDB id, TheTVDB id, etc.) that can be useful for subsequent processing.
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
- **Subtitles service powered by [www.OpenSubtitles.org](http://www.opensubtitles.org)**
92
- ![opensubtitles.org logo](http://static.opensubtitles.org/gfx/logo-transparent.png)
93
-
94
- **Movie metadata service powered by [www.imdb.com](http://www.imdb.com)**
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
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 TheTVDB") do |id|
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apple-tv-converter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: