Search found 14 matches

by silhouette
27 Dec 2018, 08:26
Forum: Feature discussion
Topic: [Feature Request] Support for Custom Variables in RSS
Replies: 4
Views: 3885

Re: [Feature Request] Support for Custom Variables in RSS

Possible minor bug. The RSS filter won't match on imdbid, if the imdbid starts with a 0. For imdbid 0804540 in the rss feed. The following doesn't match 0804540. imdbid:0804540 If you remove the leading zero, the rss filter matches 0804540: imdbid:804540 In case you are wondering, in the rss feeds, ...
by silhouette
20 Dec 2018, 00:52
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

got it, I added a custom item, with a non-standard name. that doesn't appear to be supported. When I put the information into 'description', it works as expected.
by silhouette
20 Dec 2018, 00:39
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

Thanks, Just tried to modify the title and I can see that the filter is working.

I am obviously just doing something wrong since I don't get a match on the metadata.
by silhouette
20 Dec 2018, 00:08
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

Would it possible to run the script before the NzbGet filters are applied. It would be fantastic if there was an option to modify a feed before the filter in NzbGet is applied. I.e. the script would modify the feed, so that NzbGet can identify the items from the watchlist(s), but also fetch other it...
by silhouette
19 Dec 2018, 15:54
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

Thanks, I think that I get it now.

If out_file exists, save filtered_feed to out_file, else save filtered_feed to rssfeed_file, which is the file that NzbGet will read.

Is that correct?
by silhouette
19 Dec 2018, 15:23
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

I am trying to make sense of the script. In spite of googling, there is one line that I cannot make sense of: save_rssfeed(rssfeed_file if not out_file else out_file, filtered_feed) I realize that it saves the feed but I cannot follow the logic. filtered_feed must be passed to NzbGet. What is the pu...
by silhouette
15 Dec 2018, 19:34
Forum: Feature discussion
Topic: [Feature Request] option to place an .ignore file in desstination folder
Replies: 4
Views: 3759

Re: [Feature Request] option to place an .ignore file in desstination folder

I presume that one would be enough for most, if not all use cases.

I just figured that making it an optional list variable, would be more or less the same work and might add flexibility in some special use cases.
by silhouette
15 Dec 2018, 13:16
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

Makes sense.

I might give it a shot.

It is actually possible to get any public imdb list in csv format, which makes it even simpler.
by silhouette
15 Dec 2018, 13:12
Forum: Feature discussion
Topic: [Feature Request] option to place an .ignore file in desstination folder
Replies: 4
Views: 3759

Re: [Feature Request] option to place an .ignore file in desstination folder

That would for instance be emby. It monitors a directory for changes and would start processing as soon as the first files appear. Emby ignore directory, as long as a .ignore file s is pressent. This is the implementation in sabnzbd: nomedia_marker: Just before unpacking of files into the final fold...
by silhouette
12 Dec 2018, 20:27
Forum: Extension scripts
Topic: [FeedScript] ImdbWatchlist - RSS with IMDb integration
Replies: 49
Views: 67459

Re: [FeedScript] ImdbWatchlist - RSS with IMDb integration

Changes to make the script universal in terms of list source, RSS feed formatting, filtering and custom post processing- Please bare with me while the explanation is long, I don’t think that it would require changing more than 5% of the code. This script could easily be adjusted to strip id's from a...