add option to replace EPG Info with tmdb Info - be careful

Origin commit data
------------------
Commit: 7aa3656b14
Author: TangoCash <eric@loxat.de>
Date: 2016-03-08 (Tue, 08 Mar 2016)
This commit is contained in:
TangoCash
2016-03-08 23:45:33 +01:00
committed by Jacek Jendrzej
parent b39e970466
commit 3c1c7d6783
2 changed files with 14 additions and 2 deletions

View File

@@ -74,6 +74,7 @@ class cTmdb
std::string getReleaseDate() { return minfo.release_date;}
std::string getDescription() { return minfo.overview;}
std::string getVote() { return minfo.vote_average;}
std::string getCast() { return minfo.cast;}
bool hasCover() { return !minfo.poster_path.empty();}
bool getBigCover(std::string cover) { return DownloadUrl("http://image.tmdb.org/t/p/w342" + minfo.poster_path, cover);}
bool getSmallCover(std::string cover) { return DownloadUrl("http://image.tmdb.org/t/p/w185" + minfo.poster_path, cover);}