Quantcast
Channel: configuration - Forum - FlexGet
Viewing all 716 articles
Browse latest View live

trakt_lookup non english translated movie titles

$
0
0

@k4ck7788 wrote:

Hello,

i would like to lookup movie titles with trakt_lookup in a different language. I see that there are the following fields to find translations: trakt_languages, trakt_translations.

Currently i have the following configuration, which outputs the dictionary list "trakt_translations", unformatted and without unicode characters.

tasks:
  watchlist:
    list_clear:
      what:
        - movie_list: watchlist
    priority: 1
    trakt_list:
      account: acc
      list: watchlist
      type: movies
    trakt_lookup:
      account: acc
    accept_all: yes
    seen: local  # We don't want accepted movies on this feed to affect actual download feed

    exec:
      on_filter:
        for_entries:
          - echo "accepted {{trakt_translations}}"`

How do i get the title translation for the current movie for an specific language? How is it possible to filter the list dictionary that is returned from "trakt_translations"?

Thanks for your help

Posts: 1

Participants: 1

Read full topic


Config Error Expected Block End, but found Scalar

$
0
0

@ElPicoso wrote:

Hi,

I'm trying to use this configuration https://flexget.com/Cookbook/Users/djnitehawk

When I do flexget check, i get the following error:

 2017-01-08 16:59 WARNING  check                         Config line 2 is likely missing ':' at the end
2017-01-08 16:59 WARNING  check                         Config line 5 is likely missing ':' at the end
2017-01-08 16:59 VERBOSE  check                         Pre-checked 96 configuration lines
2017-01-08 16:59 CRITICAL manager                       while parsing a block mapping in "<unicode string>", line 2, column 5: - tasks: [TV-SHOWS,MOVIES](/TV-SHO ... ^ expected <block end>, but found '<scalar>' in "<unicode string>", line 2, column 29: - tasks: [TV-SHOWS,MOVIES](/TV-SHOWS,MOVIES) ^

-------------------------------------------------------------------------------
 Malformed configuration file (check messages above). Common reasons:
-------------------------------------------------------------------------------

 o Indentation error
 o Missing : from end of the line
 o Non ASCII characters (use UTF8)
 o If text contains any of :[]{}% characters it must be single-quoted (eg. value{1} should be 'value{1}')

 Reason: expected <block end>, but found '<scalar>'

 Check configuration near line 1, column 4
 Check configuration near line 1, column 28

 Fault is almost always in one of these lines or previous ones

2017-01-08 16:59 CRITICAL manager                       Failed to load config file: Config file is not valid YAML
Could not start manager: Config file is not valid YAML

Posts: 4

Participants: 2

Read full topic

Change in my configuration to adapt to new notify plugin

$
0
0

@effemmeffe wrote:

My configuration has a template for pushbullet like this:

  ##### pushbullet-template: Pushbullet config
  #
  pushbullet-template:
    pushbullet:
      api_key: '{? pushbullet.api ?}'
      title: "[Flexget] {{task}}"
      message: "{{title}}"

And in the tasks I want to monitor I have this line:

template:
  - pushbullet-template

Now it doesn't work anymore and I don't understand how can I fix it.
I'd like to keep the template section so I don't have to change all my tasks, if it's possible.

Any help, please?

Posts: 4

Participants: 3

Read full topic

Secrets plugin missing?

"Jinja if" not processed in notify message

$
0
0

@Mirgolth wrote:

Hi,

From version 2.9.0 on, I migrated from notify_entries to notify. The Jinja2 elements from the message don't seem to be processed. The title seems be be correctly processed.

As both If statement ans notify were modified, I wonder if it's a problem with my conf (It used to work on 2.8.x ) or with the code.

Config:

  pushbullet:
    notify:
      entries:
        title: >
          {% if series_name is defined %}{{tvdb_series_name|d(series_name)}} - {{series_id}}
          {% elif imdb_name is defined %}{{imdb_name}} ({{imdb_year}})
          {% else %}{{title}}
          {% endif %}
        message: >
          {% if series_name is defined %}{{tvdb_series_name|d(series_name)}} - {{series_id}} - {{tvdb_ep_name|d('')}}{% if quality is defined %} ({{quality}}{% endif %}{% if proper is proper %} PROPER{% endif %})
          {% elif imdb_name is defined %}{{imdb_name}} ({{imdb_year}}){% if quality is defined %} ({{quality}}{% endif %}{% if proper is defined %} PROPER{% endif %})
          {% else %}{{title}}{% if quality is defined %} ({{quality}}{% endif %}{% if proper is defined %} PROPER{% endif %})
          {% endif %}
        via:
          - pushbullet:
              api_key: '{? pushbullet.key ?}'

Exemple output:

Shadowhunters - S02E02
{% if series_name is defined %}{{tvdb_series_name|d(series_name)}} - {{series_id}} - {{tvdb_ep_name|d('')}}{% if quality is defined %} ({{quality}}{% endif %}{% if proper is proper %} PROPER{% endif %}) {% elif imdb_name is defined %}{{imdb_name}} ({{imdb_year}}){% if quality is defined %} ({{quality}}{% endif %}{% if proper is defined %} PROPER{% endif %}) {% else %}{{title}}{% if quality is defined %} ({{quality}}{% endif %}{% if proper is defined %} PROPER{% endif %}) {% endif %}

Posts: 4

Participants: 2

Read full topic

[SOLVED] Anyone can help me with new version Flexget config files?

$
0
0

@Kylin_Tang wrote:

Hi. I'm new fella here.
I use flexget to fulfill the rss auto-download-torrent into my transmission.
The config files worked before, as showed below:

schedules:
  - tasks: '*'
    interval:
      minutes: 1
tasks:
  RSS-transmission:
    rss: https://yourfssfeedlink
    accept_all: yes
    transmission:
      host: localhost
      port: 9091
      username: username
      password: password
    email:
      from: sina@sina.com
      to: 163@163.com
      smtp_host: smtp.sina.com
      smtp_port: 587
      smtp_username: sina@sina.com
      smtp_password: password
      smtp_tls: true

However, the new version flexget got me crazy coz the old config file cannot be used due to the changing of notify plugin. Also, I want to use telegram as the notifier. And I wrote down the code below:

schedules:
  - tasks: '*'
    interval:
      minutes: 1
tasks:
  RSS-transmission:
    rss: link
    accept_all: yes
    transmission:
      host: localhost
      port: 9091
      username: username
      password: password
    notify:
      entries:
        via:
          - telegram:
              bot_token: 3281XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX_GM
              message: "{{title}}"
              parse_mode: markdown
              recipients:
                - username: username

The flexget check showed:

2017-01-12 18:38 VERBOSE  manager                       Creating new database /root/.flexget/db-config.sqlite - DO NOT INTERUPT ...
2017-01-12 18:39 WARNING  check                         Config line 2 is likely missing ':' at the end
2017-01-12 18:39 VERBOSE  check                         Pre-checked 22 configuration lines
2017-01-12 18:39 CRITICAL manager                       [/tasks/RSS-transmission/notify/entries/via/0/telegram] The key `message` is not valid here.
2017-01-12 18:39 CRITICAL manager                       Failed to load config file: Did not pass schema validation.

Please help me thanks very much!

Posts: 3

Participants: 2

Read full topic

Correct location for Cookies in config?

$
0
0

@pythonjosh wrote:

Rarbg recently updated a recaptcha and it seems to be forcing me to update cookies, but my flexget doesn't seem to use the web cookies, so I exported the cookie and used it here and I'm not seeing any different behaviors. What am I doing wrong?
Here is the structure of my yml:

templates:
  tv:
    series:
      settings:
        tv:
          exact: yes
          propers: 3 days
          quality: HDTV,webdl,webrip,h264
          set:
            path: /media/Inbound/daily
      tv:
        - Modern Family
    transmission:
      enabled: yes
      host: localhost
      port: 9091
      username: username
      password: password
      path: /media/Inbound/daily
      addpaused: no
tasks:
  kickass.ettv:
    priority: 1
    rss: 'https://rarbg.to/rssdd.php?categories=18'
    cookies: ~/.flexget/cookies.txt
    template: tv

Posts: 6

Participants: 2

Read full topic

Config doesn't seem to be working - please help

$
0
0

@ElPicoso wrote:

This config is supposed to take input from trakt and IMDB and download using transmission from a private tracker.

It doesn't appear to pull anything from trakt, but logs fine.
It get's my list from IMDB, but marks things as accepted, then does nothing.
Thanks
Wade

schedules:
  - tasks: [TV-SHOWS,MOVIES]
    interval:
      minutes: 15
  - tasks: [IMPORT-MOVIES]
    interval:
      minutes: 120

templates:
  tv:
    transmission:
      host: 192.168.0.10
      port: 9091
      username: pi
      password: raspberry
      path: /mnt/bighonker/download_inprogress
   configure_series:
      settings:
        quality: hdtv-bluray h264 720p-1080p
        propers: no
      from:
        trakt_list: #input
          account: XXX
          list: flexget_watchlist
          type: shows
          strip_dates: yes
    regexp:
      from: title
      reject:
        - msd
        - afg
        - line
    content_size:
      min: 400
      max: 3000
      strict: no
    pushbullet:
      api_key: XXX
      title: "[F] {{series_name}} {{series_id}}"
      message: "{{title}}\n\nSize: {{content_size}}MB"
      device: mobile
    inputs:
      - rss:
          url: XXX
          all_entries: no
  movie:
    transmission:
      host: 192.168.0.10
      port: 9091
      username: pi
      password: raspberry
      path: /mnt/bighonker/download_inprogress
    quality: bluray h264 1080p
    imdb_lookup: yes
    list_match:
      from:
        - movie_list: somelist
    regexp:
      from: title
      reject:
        - msd
        - afg
        - line
        - hc
        - korsub
    content_size:
      min: 1500
      max: 8000
      strict: no
    pushbullet:
      api_key: XXX
      title: "[F] {{imdb_name}}"
      message: "{{title}}\n\n{{imdb_url}}\n\nSize: {{content_size}}MB"
    inputs:
      - rss:
          url: XXX
          all_entries: no
tasks:
  TV-SHOWS:
    template: tv
    priority: 1

  IMPORT-MOVIES:
    imdb_watchlist:
      user_id: XXX
      list: watchlist
    accept_all: yes
    list_add:
      - movie_list: imdb_movies
    priority: 2

  MOVIES:
    template: movie
    priority: 3

Posts: 20

Participants: 3

Read full topic


Error with config.yml (Flexget 2.9.4)

$
0
0

@devils0411 wrote:

After update Flexget to 2.9.4, and some command in config file is incorrect.
A little path of config.yml

tasks:
Movie:
priority: 2
inputs:
- rss: '{? RRSUrls.url1 ?}'
- rss: '{? RRSUrls.url2 ?}'
- rss: '{{ secretfile.RRSUrls.url3 }}'

error:
2017-01-16 14:16 CRITICAL manager [/tasks/Movie/inputs/2/rss] '{{ secretfile.RRSUrls.url3 }}' is not valid under any of the given schemas

If i change like this:

tasks:
Movie:
priority: 2
inputs:
- rss: '{? RRSUrls.url1 ?}'
- rss: '{? RRSUrls.url2 ?}'
- rss: '{? RRSUrls.url3 ?}'

error:
2017-01-16 14:19 INFO manager Test database created
Traceback (most recent call last):
File "/opt/bin/flexget", line 11, in
sys.exit(main())
File "/opt/lib/python3.5/site-packages/flexget/__init__.py", line 42, in main
manager.start()
File "/opt/lib/python3.5/site-packages/flexget/manager.py", line 327, in start
self.handle_cli()
File "/opt/lib/python3.5/site-packages/flexget/manager.py", line 345, in handle_cli
command_options = getattr(options, command)
TypeError: getattr(): attribute name must be string

In secretfile.yml:
RRSUrls:
url2: http://nnmclub.to/forum/rss2.php?f=954&uk
url3: http://nnmclub.to/forum/rss2.php?f=227&uk

Posts: 2

Participants: 2

Read full topic

Discover plugin will not download movies

$
0
0

@frankw wrote:

Hey all,

Having some trouble with the discover plugin and downloading movies, whereby it find the movies I want but will not download them for some reason. Any help greatly appreciated. In the example, I have created a test list with one movie in it to stop hammering the sites. I am able to download tv-shows without issue using the same plugins.

Debug log: http://pastebin.com/gzsnnysq
Config: http://pastebin.com/X72ix2zQ

Any help appreciated!

Posts: 7

Participants: 3

Read full topic

Issue with new notify plugin

$
0
0

@chamber wrote:

Im having issues with the new notify plugin.

Config I have tried for pushbullet is,

  notify:
    entries:
      via:
        - pushbullet:
            api_key: ***api key here***
            title: "Downloading {{series_name}} {{series_id}} now"

Gets me,

2017-01-24 09:15 CRITICAL manager [/templates/notify] The key entries is not valid here. Only known plugin names are valid keys.

So I tried it with email,

  notify:
    task:
       template: html
       via:
        - email:
           from: @gmail.com
           to: @gmail.com
           smtp_host: smtp.gmail.com
           smtp_port: 587
           smtp_username: username
           smtp_password: password
           smtp_tls: yes

2017-01-24 09:26 CRITICAL manager [/templates/notify] The key task is not valid here. Only known plugin names are valid keys.

The config works when these are taken out. Have uninstalled and reinstalled flexget this morning and still getting the same issues.

Am I missing something really obvious?

Posts: 8

Participants: 3

Read full topic

Telegram parse_mode

$
0
0

@evgsd wrote:

Hi. I use last version flexget.
In my config i have this code for send notification over telegram.

notify:
      entries:
        message: |+
          {%if task in ["retreive_from_couchpotato","dynamic_imdb_actors"]%}*New movie added to queue*
          {%else%}*Download Started from task:*
          {{task|replace("_", "-")}}
          {%endif%}
          {% if series_name is defined -%}
          *{{series_name}}* - {{series_id}} - {{quality|d('')}}
          *{{tvmaze_episode_name|d(tvdb_ep_name)|d('')}}*
          {{tvmaze_ep_overview}}
          [Image]({{tvmaze_series_original_image|replace("_", "%5F")}})
          [Show page]({{tvmaze_series_url|replace("_", "%5F")}})
          {% elif imdb_name is defined -%}
          *{{imdb_name}}* - ({{imdb_year}})
          {{quality|d('')}}
          {{imdb_score}}/10 - {{imdb_votes}} votes
          {{imdb_genres|join(', ')|title}}
          *Plot:* {{imdb_plot_outline}}
          [Image]({{tmdb_posters[0]|replace("_", "%5F")}})
          [Movie Page]({{imdb_url|d('')}})
          {% else -%}
          {{title}}
          {%- endif -%}
        via:
          - telegram:
              bot_token: '{? telegram.token ?}'
              parse_mode: markdown
              recipients:
                - username: <user1>
                - username: <user2>

but i get this:

Posts: 3

Participants: 2

Read full topic

Include additional episodes in next_trakt_episodes

$
0
0

@bouke wrote:

Full disclosure: newbie here. I have a list of shows that I'm interested in. For example "Westworld". I've seen S01E05, so the next one's S01E06. However there's additional episodes beyond S01E06. I can't get Flexget to also download S01E08 and further, which I would really like it to do. I'm using next_trakt_episodes inside discover. When I remove a show from my watchlist, I also want flexget to ignore any new episodes for that show. How can I achieve this?

The relevant part of my config:

tasks:
  Get-Shows:
    exists_series:
      - /media/Shared/Shows/{{ tvdb_series_name }}
    set:
      path: /media/Shared/Shows/{{ tvdb_series_name }}
    configure_series:
      settings:
        quality: 720p-1080p webrip+
        tracking: backfill
        upgrade: yes
      from:
        trakt_list:
          account: ...
          list: Series
          type: shows
    transmission:
      ...
    discover:
      what:
        - next_trakt_episodes:
            account: ...
            list: Series
      from:
        - rarbg:
            category: [41]

When running this task: (shortened)

flexget execute --discover-now
2017-01-28 10:08 VERBOSE  discover      Get-Shows       Searching for `Westworld S01E06` with plugin `rarbg` (4 of 9)
2017-01-28 10:08 VERBOSE  task          Get-Shows       REJECTED: `Westworld.S01E06.1080p.HDTV.x264-BATV[rartv]` by series plugin because episode `S01E06` is before begin value of `S01E08`
2017-01-28 10:08 VERBOSE  task          Get-Shows       REJECTED: `Westworld.S01E06.The.Adversary.1080p.HBO.WEBRip.DD5.1.H264-monkee[rartv]` by series plugin because episode `S01E06` is before begin value of `S01E08`
2017-01-28 10:08 VERBOSE  task          Get-Shows       REJECTED: `Westworld.S01E06.iNTERNAL.720p.HDTV.x264-TURBO[rartv]` by series plugin because episode `S01E06` is before begin value of `S01E08`
2017-01-28 10:08 VERBOSE  task          Get-Shows       REJECTED: `Westworld.S01E06.720p.HDTV.x264-AVS[rartv]` by series plugin because episode `S01E06` is before begin value of `S01E08`
2017-01-28 10:08 VERBOSE  task          Get-Shows       REJECTED: `Westworld.S01E06.The.Adversary.720p.HBO.WEBRip.DD5.1.H264-monkee[rartv]` by series plugin because episode `S01E06` is before begin value of `S01E08`
2017-01-28 10:08 VERBOSE  details       Get-Shows       Summary - Accepted: 0 (Rejected: 24 Undecided: 12 Failed: 0)

I've also tried flexget series begin Westworld S01E08, but it still tries S01E06 over and over again;

$flexget series show Westworld
...
 Westworld (2016)

┌Westworld───┬──────────────────┬──────────────────────────────────────────────────────────────────────────┬─────────────────────────┬────────┐
│ Episode ID │ Latest age       │ Release titles                                                           │ Release Quality         │ Proper │
├────────────┼──────────────────┼──────────────────────────────────────────────────────────────────────────┼─────────────────────────┼────────┤
│ S01E06     │ 1h               │ Westworld.S01E06.The.Adversary.1080p.HBO.WEBRip.DD5.1.H264-monkee[rartv] │ 1080p webrip h264 dd5.1 │        │
│            │                  │ Westworld.S01E06.The.Adversary.720p.HBO.WEBRip.DD5.1.H264-monkee[rartv]  │ 720p webrip h264 dd5.1  │        │
│            │                  │ Westworld.S01E06.1080p.HDTV.x264-BATV[rartv]                             │ 1080p hdtv h264         │        │
│            │                  │ Westworld.S01E06.iNTERNAL.720p.HDTV.x264-TURBO[rartv]                    │ 720p hdtv h264          │        │
│            │                  │ Westworld.S01E06.720p.HDTV.x264-AVS[rartv]                               │ 720p hdtv h264          │        │
│ S01E08     │ No releases seen │                                                                          │                         │        │
└────────────┴──────────────────┴──────────────────────────────────────────────────────────────────────────┴─────────────────────────┴────────┘
 * Downloaded

 Series uses `ep` mode to identify episode numbering (identified_by).
 See option `identified_by` for more information.
 Begin episode for this series set to `S01E08`.

Posts: 3

Participants: 2

Read full topic

screen_packs not working, and labeling in rutorrent magically does?

$
0
0

@Mikkel_Petersen wrote:

Hi all. Okay so first up season packs. Here is a complete copy of my config, it is only the TV part this question is about, but I will include everything for context:

tasks:
  Movies:
    rss:
      url: xxxx
      all_entries: no
    imdb:
      min_score: 5
      min_votes: 4000
      min_year: 2015
      reject_genres:
        - horror
    quality: 1080p+
    regexp:
      reject:
        - 'half-sbs|3d|hi10p': {from: title}
    download: /media/sdn1/zeroz/private/deluge/watch/
  TV:
    rss:
      url: xxxx
      all_entries: no
    series:
      1080p:
        - Shameless (US):
            path: ~/private/rtorrent/data/TVShows/Shameless (US)
            quality: webrip

        - Marvel's Agents of S.H.I.E.L.D.:
            path: ~/private/rtorrent/data/TVShows/Marvel's Agents of S.H.I.E.L.D.
            quality: webdl

        - Arrow:
            path: ~/private/rtorrent/data/TVShows/Arrow
            quality: webdl

        - Fresh Off the Boat:
            path: ~/private/rtorrent/data/TVShows/Fresh Off the Boat
            quality: webdl

        - The Big Bang Theory:
            path: ~/private/rtorrent/data/TVShows/The Big Bang Theory
            quality: webdl

        - Mr. Robot:
            path: ~/private/rtorrent/data/TVShows/Mr. Robot
            quality: webdl

        - Marvel's Daredevil:
            path: ~/private/rtorrent/data/TVShows/Marvel's Daredevil
            quality: webrip

        - A Place To Call Home:
            path: ~/private/rtorrent/data/TVShows/A Place To Call Home
            quality: webdl

        - Game of Thrones:
            path: ~/private/rtorrent/data/TVShows/Game of Thrones
            quality: webdl

        - Silicon Valley:
            path: ~/private/rtorrent/data/TVShows/Silicon Valley
            quality: webdl

        - Lucifer:
            path: ~/private/rtorrent/data/TVShows/Lucifer
            quality: webdl

        - Vikings:
            path: ~/private/rtorrent/data/TVShows/Vikings
            quality: webdl

        - The Flash (2014):
            path: ~/private/rtorrent/data/TVShows/The Flash (2014)
            quality: webdl

        - Gotham:
            path: ~/private/rtorrent/data/TVShows/Gotham
            quality: webdl

        - Outlander:
            path: ~/private/rtorrent/data/TVShows/Outlander
            quality: webdl

        - Suits:
            path: ~/private/rtorrent/data/TVShows/Suits
            quality: webdl

        - Better Call Saul:
            path: ~/private/rtorrent/data/TVShows/Better Call Saul
            quality: webdl

        - South Park:
            path: ~/private/rtorrent/data/TVShows/South Park
            quality: webdl

        - Archer (2009):
            path: ~/private/rtorrent/data/TVShows/Archer (2009)
            quality: webdl

        - Family Guy:
            path: ~/private/rtorrent/data/TVShows/Family Guy
            quality: webdl

        - American Horror Story:
            path: ~/private/rtorrent/data/TVShows/American Horror Story
            quality: webdl

        - Brooklyn Nine-Nine:
            path: ~/private/rtorrent/data/TVShows/Brooklyn Nine-Nine
            quality: webdl

        - American Dad!:
            path: ~/private/rtorrent/data/TVShows/American Dad!
            quality: webdl

        - New Girl:
            path: ~/private/rtorrent/data/TVShows/New Girl
            quality: webdl

        - Arrested Development:
            path: ~/private/rtorrent/data/TVShows/Arrested Development
            quality: webdl

        - Narcos:
            path: ~/private/rtorrent/data/TVShows/Narcos
            quality: webrip

        - Futurama:
            path: ~/private/rtorrent/data/TVShows/Futurama
            quality: webdl

        - Westworld:
            path: ~/private/rtorrent/data/TVShows/Westworld
            quality: webrip
    download: ~/private/rtorrent/watch

schedules:
  - tasks: '*'
    interval:
      minutes: 1.5

Now for shows like Daredevil where entire seasons are released at once, I have tried this:

    - Marvel's Daredevil:
        path: ~/private/rtorrent/data/TVShows/Marvel's Daredevil
        quality: webrip
        season_packs: yes

I also tried putting season packs directly under the sereis name. When I however run flexget check I got this error every time: [/tasks/TV/series/1080p/6/Marvel's Daredevil] The key screen_packs is not valid here.

So how do I configure this to work?

Okay the next question.

Posts: 8

Participants: 2

Read full topic

Schedule likely missing ":" at the end?

$
0
0

@Mikkel_Petersen wrote:

Hey there. I have this error:

Config line 129 is likely missing ':' at the end

schedules:
  - tasks: '*'     >Line 129
    interval:
      minutes: 1.5

I have done it just like the guide said to do it. Why do I have this error?

Posts: 3

Participants: 3

Read full topic


How to add entry name to notification email using notify plugin?

$
0
0

@Nimrod_Dayan wrote:

I'm using the notify plugin to send email per each accepted entry that starts to download.
I'd like to include the entry name, whether it's a series episode or a movie, in the email.
How do I do that? Thanks!

Posts: 1

Participants: 1

Read full topic

Not sending email notification

$
0
0

@karma007 wrote:

Hello, my config was working fine (with file_template) until last update (new notify). Here is my config :

        notify:
          task:
            title: "[PiGet] {{task.name}}: {%if task.failed %}{{task.failed|length}} failed entries{% else %}{{task.accepted|length}} new entries{% endif %}"
            template: task/pihtml
            via:
              - email:
                  from: xxxxxxxxx@xx
                  to:
                    - xxxxxxxxx@xx
                    - xxxxxxxxx@yy
                  smtp_host: smtp.gmail.com
                  smtp_port: 587
                  smtp_username: xxxxxxxx@xx
                  smtp_password: blablabla
                  smtp_tls: yes
                  html: yes
#                 file_template: task/pihtml
              - pushover:
                  user_key: xxxxx

please note that file_template was first in email section.

thanks

Posts: 11

Participants: 2

Read full topic

Rtorrent watch directory

$
0
0

@Mikkel_Petersen wrote:

Hey guys, so I have my watch directory like:

~/private/rtorrent/watch

When I tell flexget to download torrents there, all of them are downloaded to the same default rtorrent location.

I have my structure like this:

~/private/rtorrent/data/TVShows/example

I then have this in my config:

- Example:
    path: ~/private/rtorrent/data/TVShows/Example
    quality: webdl

This way flexget downloads the torrent to the above location. However, rtorrent dosn't start downloading it?

How can I make it so rtorrent will start downloading when it detects a torrent in ~/private/rtorrent/data/TVShows/Example, and ALSO donwloads the data itself to ~/private/rtorrent/data/TVShows/Example?

This is the bottom of my config:

    - Example:
        path: ~/private/rtorrent/data/TVShows/example
        quality: webrip
download: ~/private/rtorrent/watch

Also flexget used to download the .torrent to ~/private/rtorrent/data/TVShows/example, and rutorrent would start downloading it, and put the downloaded data to ~/private/rtorrent/data/TVShows/example as well. However this stopped working for some reason, and I now want to make it work again.

What I need in Flexget, and what might be the thing that will force me to go back to autodl +irssi, is the option that I for each TV show, can select a specific folder where I want the show downloaded to. I really hope I can achieve this with Flexget.

Posts: 1

Participants: 1

Read full topic

BTN plugin not working after updating flexget

$
0
0

@BUGBEAR wrote:

After updating my flexget , BTN is not working

$ flexget execute
2017-02-01 14:40 CRITICAL manager [/tasks/btn1] The key btn is not valid here. Only known plugin names are valid keys.
2017-02-01 14:40 CRITICAL manager [/tasks/btn2] The key btn is not valid here. Only known plugin names are valid keys.
2017-02-01 14:40 CRITICAL manager Failed to load config file: Did not pass schema validation.
Could not start manager: Did not pass schema validation.

Same configuration was working perfectly but after the update it is not , what am I missing here?

Posts: 9

Participants: 3

Read full topic

Help for serienjunkies configuration

$
0
0

@picmac wrote:

Hi!

I would really appriciate your help for my serienjunkies configuration.

My complete config.yml looks like this:

tasks:
  serienjunkies.org:
    redirect_url: yes
    rss: http://serienjunkies.org/xml/feeds/episoden.xml
    notify:
      entries:
        via:
          - pushover:
              user_key: xxxxx
              api_key: xxxxx
              url_title: Download
              url: '{{url}}'
    series:
      <720p h264:
      - Akte X
      - Major Crimes
      - NCIS
      - NCIS Los Angeles
      - Person of Interest
      <720p dd5.1:
      - Die Simpsons
    serienjunkies:
      language: german
      hoster: so

flexget check gives me

2017-02-01 22:07 VERBOSE  check                         Pre-checked 24 configuration lines
2017-02-01 22:07 CRITICAL manager                       [/tasks/serienjunkies.org] The key `serienjunkies` is not valid here. Only known plugin names are valid keys.
2017-02-01 22:07 CRITICAL manager                       Failed to load config file: Did not pass schema validation.
Could not start manager: Did not pass schema validation

if remove

    serienjunkies:
      language: german
      hoster: so

flexget runs but I get

...
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Deutsch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[DEUTSCH] NCIS.Los.Angeles.S08E03.Damengambit.GERMAN.DUBBED.WebHDRiP.x264-SOF` by urlrewriting plugin because no Episode found
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Englisch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[ENGLISCH] NCIS.Los.Angeles.S08E14.HDTV.x264-LOL` by urlrewriting plugin because no Episode found
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Deutsch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[DEUTSCH] Major.Crimes.S05E04.GERMAN.HDTVRiP.x264-idTV` by urlrewriting plugin because no Episode found
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Deutsch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[DEUTSCH] NCIS.S14E09.Ratten.GERMAN.DUBBED.WebHDRiP.x264-SOF` by urlrewriting plugin because no Episode found
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Deutsch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[DEUTSCH] NCIS.Los.Angeles.S08E02.Wer.ist.der.Bauer.GERMAN.DUBBED.WebHDRiP.x264-SOF` by urlrewriting plugin because no Episode found
2017-02-01 22:08 WARNING  serienjunkies serienjunkies.org languages not matching: dual <>  Deutsch |
2017-02-01 22:08 VERBOSE  task          serienjunkies.org REJECTED: `[DEUTSCH] NCIS.Los.Angeles.S08E01.Ein.hochrangiges.Ziel.GERMAN.DUBBED.WebHDRiP.x264-SOF` by urlrewriting plugin because no Episode found
2017-02-01 22:08 VERBOSE  details       serienjunkies.org Summary - Accepted: 0 (Rejected: 29 Undecided: 1158 Failed: 0)

I am using the latest version 2.9.12

Thank you very much!

Kind regards,
picmac

`

Posts: 2

Participants: 2

Read full topic

Viewing all 716 articles
Browse latest View live