Quantcast
Channel: help - Forum - FlexGet
Viewing all articles
Browse latest Browse all 837

list_match all undecided

$
0
0

@Jacoby6000 wrote:

For some reason, list_match is always returning everything undecided for 1080p movies. Here's my config

templates:
  global:
    torrent_alive: yes #number of seeders needed to accept
 
  transmit-movies:
    utorrent:
      url: http://127.0.0.1:8181/gui/
      username: flexget
      password: getflex
      path: T:\plex\movies
  
  transmit-series:
    utorrent:
      url: http://127.0.0.1:8181/gui/
      username: flexget
      password: getflex
      path: T:\plex\shows\{{series_name|pathscrub}}/S{{"%02d"|format(series_season)}}
  
  get-series: 
    exists_series:
      - T:\plex\shows
    regexp:
      reject:
        - FASTSUB #French
        - VOSTFR #French
        - Subtitulado #Spanish
        - Special-Wicked #Special trailer episodes from Once Upon a Time
    content_filter:
      reject:
        - '*.avi' #Uhgg Jak!
    discover:
      what:
        - trakt_list:
            account: secret
            list: watchlist
            strip_dates: yes
            type: shows
        - filesystem: T:\plex\shows
      from:
        - iptorrents:
            rss_key: secret
            uid: secret
            password: secret
            category: 
              - Movie-HD-Bluray
              - Movie-MP4
              - TV-all
    trakt_lookup:
      account: secret
    if:
      - trakt_collected: reject
    set:
      content_filename: "{{ series_name }} - {{ series_id }} ({{ quality|upper }})"
    prowl:
      apikey: 9ae8f5aafcb66f2144ad0cfabb93349e6a592dc1
      application: Series
      event: New Episode
      description: "{{ series_name }} - {{ series_id }} ({{ quality|upper }})"
    template: transmit-series
  
  
  download-movie:
    discover:
      what:
        - movie_list: watchlist
      from:
        - iptorrents:
            rss_key: secret
            uid: secret
            password: secret
            category: 
              - Movie-HD-Bluray
              - Movie-MP4
              - 22
    list_match:
      from: 
        - movie_list: watchlist
      action: accept
      remove_on_match: yes
      single_match: yes
    set:
      content_filename: "{{ imdb_name|replace('/', '_')|replace(':', ' -') }} ({{ imdb_year }}) - {{ quality }}"
    template: transmit-movies  
    prowl:
      apikey: secret
      application: Movies
      event: New Movie
      description: "{{ imdb_name|replace('/', '_')|replace(':', ' -') }} ({{ imdb_year }}) - {{ quality }}"
    list_remove:
      - trakt_list:
          account: secret
          list: watchlist
 
tasks:
  fill_movie_list:
    priority: 2
    trakt_list:
      account: secret
      list: watchlist
      strip_dates: yes
      type: movies
    list_add: 
      - movie_list: watchlist
    accept_all: yes
 
  get_movies_1080p_bluray: #Can't find subs for YIFY
    priority: 3
    content_size:
      max: 80000
      min: 1024
    assume_quality: 1080p bluray #in case of REALLY long titles
    quality: 1080p+ bluray+
    template: download-movie
 
  get_movies_1080p: #probably no subs but i like 1080p more
    priority: 4
    content_size:
      max: 80000
      min: 1024
    assume_quality: 1080p bluray #in case of REALLY long titles
    quality: 1080p+ 
    template: download-movie
 
  get_movies_NO_YIFY_720p: #Accept lower quality as 1080p seems unavailable
    priority: 5
    content_size:
      max: 16000
      min: 500
    assume_quality: 720p bluray #in case of REALLY long titles
    regexp:
      reject:
        - YIFY
    quality: 720p+ hdtv+ 
    template: download-movie
 
  get_movies_720p: #Playing hard to get? Huh, Punk!
    priority: 6
    content_size:
      max: 16000
      min: 500
    assume_quality: 720p bluray #in case of REALLY long titles
    template: download-movie
 
  get_series_1080p:
    priority: 7
    content_size:
      max: 80000
      min: 1024
    configure_series:
      from:
        trakt_list:
          account: secret
          list: watchlist
          strip_dates: yes
          type: shows
        filesystem: T:\plex\shows
      settings:
        tracking: backfill
        quality: 1080p+ webrip+
    template: get-series 
    
  get_series_720p:
    priority: 8
    content_size:
      max: 15360
      min: 500
    configure_series:
      from:
        trakt_list:
          account: secret
          list: watchlist
          strip_dates: yes
          type: shows
        filesystem: T:\plex\shows
      settings:
        tracking: backfill
        quality: 720p+ webrip+
    template: get-series
      
      
      
schedules: 
  - tasks: '*'
    interval: 
      hours: 1

Can somebody point me in the right direction? Thanks.

Posts: 4

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 837

Trending Articles