Search found 8 matches

by G_G inks
06 Jun 2015, 13:01
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

jaykumar wrote:I need this script, don't see the attachment in the thread. Can someone please upload it somewhere?

Thanks in advance.
https://github.com/Ginkss/MissingEpisodes

I've stop using this script. Sickbeard does a similar enough thing right out of the box that it's not worth maintaining it.
by G_G inks
14 Apr 2013, 10:46
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

G_G inks could you possibly add a new function so that it can be called to instead write out the html in a directory on the computer? I keep a cheap($27.00 shipped 7" android tablet in the living room) and it would be nice to check via the Dolphin web browser in those cases. That does sound like a ...
by G_G inks
09 Apr 2013, 00:10
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

bonelifer wrote:Could you give me the regex for:

/media/Store/Videos/TV/Bones/Season 01/Bones - [01x01] - Pilot.mkv
For use in this script (It expects to run on the name without extension) you should replace the current expression with:

Code: Select all

/(.+) - \[(\d+)x(\d+)\] - (.+)/
by G_G inks
24 Mar 2013, 06:40
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

Yep, my bad, I shouldn't have changed the indices.

Seems like you've got it all under control.

Please let me know if you have any other suggestions.
by G_G inks
22 Mar 2013, 00:48
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

Regex is a pain to begin with but well worth the effort. Check out Wikipedia for what the stuff between the forward slashes means. Replace line 114 and 115 with the following: def splitName = it.getNameWithoutExtension() =~ /.+\.S(\d+)E(\d+)\.(.+)/ myEpisodes.addEpisode( splitName[0][3], null ...
by G_G inks
21 Mar 2013, 23:30
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

Re: [Script] Email yourself missing and upcoming episodes

IndexOutOfBoundsException: index is out of range 0..-1 (index = 0) java.lang.IndexOutOfBoundsException: index is out of range 0..-1 (index = 0) at Script3$_run_closure6_closure18.doCall(Script3.groovy:115) at Script3$_run_closure6.doCall(Script3.groovy:113) at Script3.run(Script3.groovy:111) Here's ...
by G_G inks
15 Mar 2013, 04:03
Forum: Scripting and Automation
Topic: [Script] Email yourself missing and upcoming episodes
Replies: 16
Views: 12690

[Script] Email yourself missing and upcoming episodes

Description: Searchs your TV Show folder for TV Show names Creates a file containing those names (User can edit later to ignore shows/seasons) Scrape online DB using that file Sends an email with list of shows you don't have. It's grouped by those Already Aired Coming in the next 7 days (user can ...
by G_G inks
12 Mar 2013, 00:07
Forum: Feature Requests and Bug Reports
Topic: fetchEpisodeList feature request
Replies: 1
Views: 2447

fetchEpisodeList feature request

Have you considered passing fetchEpisodeList a list of seasons NOT to scrape? I'm just about finished my "MissingEpisodes" script and found I'm immediately discarding 99% of the scrapped information because: When the wife gets onto a new reality show I only need the latest seasons (I don't feel the ...