Page 1 of 1

Movie Plot Field

Posted: 11 Aug 2016, 05:34
by ReidandKat
Is it possible to retrieve the movie/episode plot?

I am using the AMC script, I have a script that sends a telegram message when a new file is sorted. I would also like to include the plot in the message, is this currently possible?

Re: Movie Plot Field

Posted: 11 Aug 2016, 05:45
by ReidandKat
And possibly the imdb poster url

Re: Movie Plot Field

Posted: 11 Aug 2016, 06:58
by rednoah
Try this in the movie format:

Code: Select all

{info.overview}
You also have TheMovieDB / IMDb ID so you might be able to use that get artwork urls somehow.

EDIT:

e.g.

Code: Select all

{org.jsoup.Jsoup.connect('http://www.imdb.com/title/'+imdbid).userAgent('My Poster Scraper').get().select('.poster img').attr('src')}

Re: Movie Plot Field

Posted: 11 Aug 2016, 16:18
by ReidandKat
That works just fine, but I ended up using this simpler way with omdb.Poster

Also, info.overview works for movies, but not for TV shows. Is there a field to get TV episode plots? The imdbid matches the show, not the episode, so I can't scrape the plot that way.

EDIT:

Nevermind, omdb.Tagline has what I need.

EDIT2:

Or not, omdb.Overview is not per episode but per show

Re: Movie Plot Field

Posted: 11 Aug 2016, 16:33
by rednoah
No, you won't be able to get episode plots. FileBot doesn't support that internally.