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

Update config for osmc

$
0
0

@nowi wrote:

Hello everyone.

RPi+OSMC+HDD(Ntfs)

I had installed flexget in Raspbmc and now I upgraded to OSMC, but not everything works fine.
It took me install all versions of the plugins, but in the end I managed to work.

I have 4 task, but only see 3? :
04/05/2016 23:52 VERBOSE task queue There are 3 tasks to execute. Shutdown will commence when They Have completed.

Check_subtitles plugin reject all series although they have downloaded subtitles:
06/04/2016 00:22 VERBOSE move-task episodes REJECTEDplugin Vikings.S04E07Because if matched by requirement: None is subtitles

When I try to move the subtitles:
04/06/2016 00:22 VERBOSE move-subtitles task REJECTED:the.good.wife.613.hdtv-lolby retry failed Already plugin Because you failed 4 times in the past. (Failure reason: Path replacement value/ media / HDD / Series / {{}}series_name failed: (UndefinedError) 'series_name' is undefined)

This is my config.yml:

`schedules:
  # Run every task every X hours
  - tasks: '*'
    interval:
      hours: 4

templates:
  global:
    content_filter:
      require:
        - '*.avi'
        - '*.mkv'
        - '*.mpg'
        - '*.mp4'
      reject:
        - '*.txt'
        - '*.nfo'
        - '*sample*.*'
        - '*.wmv'
        
tasks:
  download-rss:
    priority: 1
 # accept_all: yes
    rss: http://url.de.rss.laquesea
    all_series: yes
 #    limit_new: 10  
 #    seen: local

    transmission:
      host: localhost
      port: 9091
      username: 'miusuario'
      password: 'mipassword'
      ratio: -1
  
    clean_transmission:
      host: localhost
      port: 9091
      username: minombre
      password: mipassword
      finished_for: 2 hours
      min_ratio: 0.5

  download-subtitles:
    priority: 2
    disable: #builtins
      - seen
      - retry_failed
    filesystem:
      path: 
        - /media/HDD/Torrent/Completa/
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
    accept_all: yes
    check_subtitles: yes
    if:
      - subtitles: reject
    periscope:
      languages:
        - es
      overwrite: yes

  move-episodes:
    priority: 3
    disable: #builtins
      - seen
      - retry_failed
 #    metainfo_series: yes
 #    thetvdb_lookup: yes
    filesystem:
      path: /media/HDD/Torrent/Completa/
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
 #    seen: local
    accept_all: yes
 #    metainfo_series: yes
    check_subtitles: yes
    if:
      - subtitles is None: reject
    require_field: 
      - series_name
      - tvdb_series_name
    move:
      to: /media/HDD/Series/{{ series_name }}
      filename: '{{ series_name }} - {{ series_id }}'

    notify_xmpp:
      sender: correo1@gmail.com
      password: mipassword
      recipients: correo2@gmail.com
      title: 'Nuevos episodios!'
      text: '{{tvdb_series_name}} {{tvdb_ep_id|default(series_id)}}{% if tvdb_ep_name|default(False) %}: {{tvdb_ep_name}}{% endif %}'

  move-subtitles:
    priority: 4
 #    disable: builtins 
    filesystem:
      path: /media/HDD/Torrent/Completa/
      regexp: '.*\.(srt)$'
      recursive: yes
    accept_all: yes
    require_field: series_name
 #    metainfo_series: yes
 # thetvdb_lookup: yes
 # all_series:
 # parse_only: yes
    move:
      to: /media/HDD/Series/{{ series_name }}
      filename: '{{ series_name }} - {{ series_id }}'
`

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles