Advertisement
u0m3

YAML for Flex-Get with explanations

Aug 18th, 2011
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.63 KB | None | 0 0
  1. # Sample YAML config for flexget
  2. #
  3. # For use of max_quality/min_quality/qualities/quality see:
  4. # http://flexget.com/wiki/Plugins/series/quality
  5. #
  6. # For a list of available qualities see:
  7. # http://flexget.com/wiki/Plugins/quality#KnownQualities
  8. # (qualities are listed from best to worst)
  9. presets:
  10.   tvtp:
  11.     series:
  12.       settings:
  13.         hdeps:
  14.           exact: yes
  15.           # Download one of 720i/720p/720p.web-dl witch ever comes first
  16.           min_quality: 720i
  17.           max_quality: 720p web-dl
  18.         webhdeps:
  19.           exact: yes
  20.           # Download 720p.web-dl only
  21.           quality: 720p web-dl
  22.         normaleps:
  23.           exact: yes
  24.           min_quality: hdtv
  25.           max_quality: web-dl
  26.         mylovedseries:
  27.           exact: yes
  28.           # Download 1080p.web-dl, 720p.web-dl and web-dl (ALL OF THEM!)
  29.           qualities:
  30.            - 1080p web-dl
  31.             - 720p web-dl
  32.             - web-dl
  33.       hdeps:
  34.        - the vampire diaries
  35.         # The following entry will match Sanctuary and Sanctuary.US (and what ever show contains "Sanctuary" within it's name) but it will download it only once
  36.         # e.g.: if the HDTV version is named "Sanctuary.US.S03E03.HDTV.XviD-FQM" and the WebDL is named "Sanctuary.US.S03E03.720p.WEB-DL-PiLAF" it will download witchever will apear first due to the fact that "exact: no" is set and the quality allows it
  37.         - sanctuary:
  38.             exact: no
  39.       webhdeps:
  40.        - stargate universe
  41.       normaleps:
  42.        - fringe
  43.  
  44. feeds:
  45.   tvt:
  46.     rss: http://freshon.tv/rss.php?feed=dl
  47.     headers:
  48.       Cookie: "uid=*; pass=*"
  49.     preset: tvtp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement