Skip to content

Instantly share code, notes, and snippets.

@guivazcabral
Last active March 18, 2020 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guivazcabral/ce82c488059471328ade4930c2a982bc to your computer and use it in GitHub Desktop.
Save guivazcabral/ce82c488059471328ade4930c2a982bc to your computer and use it in GitHub Desktop.
Flexget config
// REMEMBER TO FILL IN YOUR TRANSMISSION USERNAME/PASSWORD
tasks:
clean-transmission:
from_transmission:
host: localhost
port: 9091
username:
password:
disable: [seen, seen_info_hash]
if:
- transmission_progress == 100: accept
transmission:
host: localhost
port: 9091
username:
password:
action: remove
download-tv:
rss: http://showrss.info/user/114732.rss?magnets=true&namespaces=false&name=null&quality=anyhd&re=null
all_series: yes
transmission:
host: localhost
port: 9091
username:
password:
path: /mnt/volume/flexget/tv/
exists_series:
- /mnt/volume/media/tv/
- /mnt/volume/flexget/tv/
sort-tv:
filesystem:
path: /mnt/volume/flexget/tv
regexp: '.*\.(avi|mkv|mp4)$'
recursive: True
accept_all: yes
seen: local
tvmaze_lookup: yes
all_series:
parse_only: yes
move:
to: "/mnt/volume/media/tv/{{ tvmaze_series_name|default(series_name)|replace(':', '') }}"
rename: "{{ tvmaze_series_name|default(series_name)|replace(':', '') }}.{{ series_id }}"
clean_source: 100
download-movies:
rss: https://yts.lt/rss/0/1080p/all/0
imdb_lookup: yes
require_field: imdb_id
imdb:
min_score: 7.0
min_votes: 1000
min_year: 2000
reject_genres:
- News
- Documentary
- Horror
- Biography
- Reality-Tv
- Musical
- Music
accept_languages:
- english
exists_movie:
- /mnt/volume/media/movies/
- /mnt/volume/flexget/movies/
content_size:
max: 3500
min: 250
quality: 1080p
transmission:
host: localhost
port: 9091
username:
password:
path: /mnt/volume/flexget/movies/
sort-movies:
imdb_lookup: yes
filesystem:
path: /mnt/volume/flexget/movies
regexp: '.*\.(mkv|mp4)$'
recursive: yes
require_field:
- imdb_name
- imdb_year
accept_all: yes
move:
to: "/mnt/volume/media/movies/{{imdb_name|replace(':','')}} ({{imdb_year}})"
clean_source: 100
schedules:
- tasks: clean-transmission
interval:
hours: 24
- tasks: download-tv
interval:
minutes: 120
- tasks: sort-tv
interval:
minutes: 30
- tasks: download-movies
interval:
hours: 24
- tasks: sort-movies
interval:
hours: 24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment