Page 13 of 18

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Wed Apr 14, 2010 4:41 pm
by Zinom
gazpachoking wrote:Also, I bet you could get this working now by creatively using the modify, and/or set plugin with string replacement.
If I've understood correctly the string replacement can only add variables from an entry. How can I get my cli-config variables as an entry, or how did you intend me to use the string replacement for achieving what I'm trying to achieve? :P :oops:

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Thu Apr 15, 2010 1:11 am
by gazpachoking
Zinom wrote: If I've understood correctly the string replacement can only add variables from an entry. How can I get my cli-config variables as an entry, or how did you intend me to use the string replacement for achieving what I'm trying to achieve? :P :oops:
Well, I was going to try to figure something out, but it seems paranoidi already implemented your ticket. Try r1243

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Thu Apr 15, 2010 9:45 am
by Zinom
gazpachoking wrote:Well, I was going to try to figure something out, but it seems paranoidi already implemented your ticket. Try r1243
Yes, I tried it yesterday and it worked fine! :) One thing though, it seems that two variables on the same string doesn't work, probably replaces each other. This is nothing that I am in need of, but just a thing that could be fixed in the future maybe.

I am as usual very grateful for the support, thanks! :D

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Sat Apr 17, 2010 3:09 pm
by k-rog
i'm looking for a replacement for torrentflux-b4rt for auto downloading of anime series. But i can nowhere find any regex rules. How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Sat Apr 17, 2010 9:36 pm
by Zinom
k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?

Code: Select all

regexp:
  accept:
    - 720p(.*)NARUTORELEASES
perhaps?

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Sun Apr 18, 2010 5:18 am
by gazpachoking
k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?
Have you tried using the series plugin? Anime doesn't work as well as normal series, so you might be better off with just regexp rule. Here is how I would try to configure the series plugin though:

Code: Select all

series:
  - Naruto:
      quality: 720p
      from_group: NARUTORELEASES

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Sun Apr 18, 2010 9:32 pm
by k-rog
gazpachoking wrote:
k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?
Have you tried using the series plugin? Anime doesn't work as well as normal series, so you might be better off with just regexp rule. Here is how I would try to configure the series plugin though:

Code: Select all

series:
  - Naruto:
      quality: 720p
      from_group: NARUTORELEASES
So could i put the to together to get this?

Code: Select all

series:
  - Naruto:
      regexp:
        accept:
          - 720p(.*)NARUTORELEASES

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Sun Apr 18, 2010 10:42 pm
by gazpachoking
k-rog wrote:
So could i put the to together to get this?

Code: Select all

series:
  - Naruto:
      regexp:
        accept:
          - 720p(.*)NARUTORELEASES
Nope, the series plugin is totally seperate from the regexp plugin. You can however define a custom regex to match the name of the series, go look at the series plugin wiki page. I recommend poking around the flexget wiki more to get the hang of configuration. If you still have trouble maybe stop by #flexget for some more interactive help.

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Tue Apr 20, 2010 11:56 am
by k-rog
I see now that the series plugin uses regular expressions under water and can be just as powerfull als writing regex your self. I also saw you can use regex in the series plugin if you think you need it. I'm going to give the series plugin a shot. But must say, that FlexGet isn't a plugin for the beginner. I'm having a real hard time comprehending it all. And i'm a IT engineer myself.

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Posted: Tue Apr 20, 2010 3:48 pm
by gazpachoking
k-rog wrote:I see now that the series plugin uses regular expressions under water and can be just as powerfull als writing regex your self. I also saw you can use regex in the series plugin if you think you need it. I'm going to give the series plugin a shot. But must say, that FlexGet isn't a plugin for the beginner. I'm having a real hard time comprehending it all. And i'm a IT engineer myself.
I think Flexget is pretty awesome, because your config can range from extremly simple, to complicated and powerful. For example, here is how your Naruto example would fit in to a full config with some other series:

Code: Select all

feeds:
  tv:
    rss: http://good.rss.feed/feed.xml
    series:
      - Chuck
      - Castle
      - Naruto:
          quality: 720p
          from_group: NARUTORELEASES
    deluge: yes