Closed shlomiLan closed 5 years ago
@shlomiLan AFAIK it should come from the refiner. The OMDB requires an API now so Subliminal can't use for now
@fernandog the refine
is only been used when running in CLI mode, is that right?
It's runs in commans line too. You should see a traceback that wasn't able to connect to omdb
When I look at the source code the only places where the tvdb refine
function is been called is in the test_tvdb.py
. Can I try and add it to video.py
inside the fromguess
function of the Episode
class. I think it should do the job.
I added TVDB
and IMDB
ID's in commit: 85e2f5f
refiners are registered as extensions like the providers and they always run in the cli The difference is that in the API, you decide which methods you want to call, including refine
video = Video.fromname(episode.name)
when I use this function I always getNone
fortvdb_id
,imdb_id
andseries_imdb_id
. In the code, it looks like this information should get fromguessit
, but it has no support for this information, am I missing anything? it there a flag or a function call that I can use to add this info?