Advertisement
m3th1dz

config.yml

Sep 7th, 2014
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.46 KB | None | 0 0
  1. #Flexget Config using Thetvdb favorites as input and pass downloads to SABnzbd+
  2.  
  3. templates:
  4.   hdtv:
  5.     configure_series:
  6.       from:
  7.         thetvdb_favorites:
  8.           account_id: THETVDB_ACCOUNT_ID
  9.       settings:
  10.         quality: 720p+
  11.         propers: yes
  12.         specials: no
  13.     thetvdb_lookup: yes
  14.  
  15. # SABnzdb Settings        
  16.     sabnzbd:
  17.       key: SABNZBD_API_KEY
  18.       url: http://IP_ADDRESS_FOR_SABNZBD:PORT/sabnzbd/api?
  19.       category: SABNZBD_CATEGORY
  20.  
  21. # Notification Settings *Only Sends Email on errors
  22.     pushover:
  23.       userkey: PUSHOVER_USER_KEY
  24.       apikey: PUSHOVER_API_KEY
  25.       title: Downloading {{series_name}}
  26.       message: Episode {{series_id}}
  27.       url: http://IP_ADDRESS_FOR_SABNZBD:PORT/sabnzbd/api?
  28.       sound: Altair
  29.    
  30.     email:
  31.       from: [email protected]
  32.       to: [email protected]
  33.       template: failed
  34.       smtp_host: SMTP_HOST
  35.       smtp_port: PORT
  36.       smtp_login: True
  37.       smtp_username: EMAIL_USERNAME
  38.       smtp_password: EMAIL_PASSWORD
  39.       smtp_tls: false
  40.  
  41.  
  42. #  RSS Feeds
  43. tasks:
  44.   HDTV:
  45.     priority: 1
  46.     template: hdtv
  47.     rss: https://ADDRESS_FOR_RSS_FEED.COM
  48.     email:
  49.       active: true
  50.  
  51. # Run:  flexget execute --task seed_series_db --disable-advancement --learn    
  52. # to add existing episodes to flexget database
  53.   seed_series_db:
  54.     all_series: yes
  55.     find:
  56.       regexp: .*(avi|mkv|mp4|mpg)$
  57.       path: PATH/TO/YOUR/TV_SHOWS
  58.       recursive: yes
  59.     manual: yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement