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?
Movie Plot Field
-
- Posts: 4
- Joined: 17 May 2015, 16:10
Re: Movie Plot Field
And possibly the imdb poster url
Re: Movie Plot Field
Try this in the movie format:
You also have TheMovieDB / IMDb ID so you might be able to use that get artwork urls somehow.
EDIT:
e.g.
Code: Select all
{info.overview}
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')}
-
- Posts: 4
- Joined: 17 May 2015, 16:10
Re: Movie Plot Field
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
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.
Re: Movie Plot Field
No, you won't be able to get episode plots. FileBot doesn't support that internally.