mediadb_lookup
(coming soon)
mediadb_lookup
This ruby library searches television and film metadata from TVDB and IMDB, based on metadata “clues”. The clues can be provided by the user, or extracted from an existing media file, based on its file name or existing tags.
Usage:
media_db = MediaDBLookup.new(
:tvdb_api_key => "1234567890",
:language => "US-en"
)
media_db.lookup(
:title => "Dinosaur Train",
:subtitle => "Confuciusornis"
)
returns
{
:title => "Dinosaur Train",
:subtitle => "Confuciusornis Says; Tiny's Tiny Doll",
}
