Movie Plot Field

Any questions? Need some help?
Post Reply
ReidandKat
Posts: 4
Joined: 17 May 2015, 16:10

Movie Plot Field

Post 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?
ReidandKat
Posts: 4
Joined: 17 May 2015, 16:10

Re: Movie Plot Field

Post by ReidandKat »

And possibly the imdb poster url
User avatar
rednoah
The Source
Posts: 23953
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Movie Plot Field

Post 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')}
:idea: Please read the FAQ and How to Request Help.
ReidandKat
Posts: 4
Joined: 17 May 2015, 16:10

Re: Movie Plot Field

Post 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
Last edited by ReidandKat on 11 Aug 2016, 16:34, edited 2 times in total.
User avatar
rednoah
The Source
Posts: 23953
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Movie Plot Field

Post by rednoah »

No, you won't be able to get episode plots. FileBot doesn't support that internally.
:idea: Please read the FAQ and How to Request Help.
Post Reply