mdhiggins / sickbeard_mp4_automator

Automatically convert video files to a standardized format with metadata tagging to create a beautiful and uniform media library
MIT License
1.53k stars 202 forks source link

Not tagging movie off of IMDB #187

Closed Geordon closed 9 years ago

Geordon commented 9 years ago

Hello, I've got a movie that I'm trying to tag. There is an entry for the movie in IMDB, but not one in TMDB. This is what happens when I try to manually tag the file:

gvantass@Enso ~/Downloads $ /usr/local/etc/SAB_post_process/sickbeard_mp4_automator-master/manual.py
64
Enter path to file:
#: ./Twilight.of.the.Yakuza.x264.720p-VODO.mp4
Unable to determine identity based on filename, must enter manually
Select media type:
1. Movie (via IMDB ID)
2. Movie (via TMDB ID)
3. TV
4. Convert without tagging
5. Skip file
#: 1
Enter IMDB ID:
#: tt3138664
Failed to connect to tMDB, trying again in 20 seconds
'title'
Failed to connect to tMDB, trying again in 20 seconds
'title'
Failed to connect to tMDB, trying again in 20 seconds
'title'
Processing movie
Tagging file :./Twilight.of.the.Yakuza.x264.720p-VODO.mp4
There was an error tagging the file
Relocating MOOV atom to start of file
QT FastStart did not run - perhaps moov atom was at the start already

It appears that the script is trying to pull the info form TMDB even though I want to pull data from IMDB. Since there is no entry in TMDB, it is timing out and failing to tag. Am I reading this right? And, is there anything I can do to get around this?

mdhiggins commented 9 years ago

This is expected behavior. While the script does identify movies based on either an imdb ID or tmdb ID it does not actually communicate with IMDB at all. All movie data is pulled from tmdb. There aren't any plans to change this in the future as imdbs database doesn't have the same consistency as TMBD. That being said, TMBD is an open database so you could simply add this movie to their database to fix your issue and prevent future users from having the same problem with this title. 

— Sent from Mailbox

On Fri, Jan 16, 2015 at 12:28 AM, Geordon VanTassle notifications@github.com wrote:

Hello, I've got a movie that I'm trying to tag. There is an entry for the movie in IMDB, but not one in TMDB. This is what happens when I try to manually tag the file:

gvantass@Enso ~/Downloads $ /usr/local/etc/SAB_post_process/sickbeard_mp4_automator-master/manual.py
64
Enter path to file:
#: ./Twilight.of.the.Yakuza.x264.720p-VODO.mp4
Unable to determine identity based on filename, must enter manually
Select media type:
1. Movie (via IMDB ID)
2. Movie (via TMDB ID)
3. TV
4. Convert without tagging
5. Skip file
#: 1
Enter IMDB ID:
#: tt3138664
Failed to connect to tMDB, trying again in 20 seconds
'title'
Failed to connect to tMDB, trying again in 20 seconds
'title'
Failed to connect to tMDB, trying again in 20 seconds
'title'
Processing movie
Tagging file :./Twilight.of.the.Yakuza.x264.720p-VODO.mp4
There was an error tagging the file
Relocating MOOV atom to start of file
QT FastStart did not run - perhaps moov atom was at the start already

It appears that the script is trying to pull the info form TMDB even though I want to pull data from IMDB. Since there is no entry in TMDB, it is timing out and failing to tag. Am I reading this right? And, is there anything I can do to get around this?

Reply to this email directly or view it on GitHub: https://github.com/mdhiggins/sickbeard_mp4_automator/issues/187

Geordon commented 9 years ago

Ah, got it. Thanks for the explanation!