Last active
November 7, 2018 09:52
-
-
Save taking/ee5f5a071b3d15e2bd57683f84db7b1c to your computer and use it in GitHub Desktop.
Flexget Config 2018-11-07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######## Init ######### | |
| variables: secrets.yml | |
| ######## scedules ์ค์ ######## | |
| schedules: | |
| # Download Tasks | |
| - tasks: 'download_*' | |
| interval: | |
| hours: 1 # weeks, days, hours, minutes | |
| - tasks: 'move_*' | |
| interval: | |
| hours: 1 | |
| ######## templates ์ค์ ######## | |
| templates: | |
| # Transmission ์ ์ก์ฉ ์ค์ | |
| anchors: | |
| _transmission-settings: &transmission-settings | |
| host: localhost | |
| username: TORRENT์์ด๋ | |
| password: TORRENT๋น๋ฐ๋ฒํธ | |
| # Global Settings | |
| global: | |
| no_entries_ok: yes | |
| pathscrub: windows # ํ์ผ ์ด๋ฆ์ ์๋์ฐ ํ์์ผ๋ก ์ค์ (windows๊ฐ ๊ฐ์ฅ ์๊ฒฉ) | |
| free_space: | |
| path: "/{? folder.root ?}" # secrets.yml ์์ ์ค์ ํ ๋ค์ด๋ก๋ ํด๋๊ฐ ์๋ Root ํด๋ | |
| space: 5000 # 5G ์ฌ์ ๊ณต๊ฐ์ด ์์ด์ผ ๋ค์ด๋ก๋ ์งํ | |
| regexp: | |
| reject: | |
| - (s|d)ub(s|bed)?\b: {from: title} # subbed(์์ ์์ฒด ์๋ง), dubbed(๋๋น), etc ์ ์ธ | |
| - \b3-?D\b: {from: title} # 3D ์ ์ธ | |
| - \btrailer\b: {from: title} # ํธ๋ ์ผ๋ฌ ์ ์ธ | |
| - \bWEBSCR\b: {from: title} # WEBSCR ์ ์ธ (ํ์ง๊ตฌ์ง) | |
| - \bTS\b: {from: title} # TS, CAM ๋ฒ์ ์ ์ธ (ํ์ง๊ตฌ์ง) | |
| - \bCam\b: {from: title} | |
| manipulate: | |
| - title: | |
| replace: | |
| # JTBC, tvn, Olive, Mnet, ์ฑ๋A ๋ฑ ์ ๊ฑฐ (ex. [JTBC] ์๋ ํ๋ -> ์๋ ํ๋) | |
| regexp: '^\[[^\]]*\][^a-z0-9]' | |
| format: '' | |
| # ํ ๋ ํธ ์ค์ | |
| # torrent_alive: | |
| # min_seeds: 3 # ํ์ํ ์ต์ ์๋ ์ | |
| # reject_for: 15 minutes # 15๋ถ ํ์ ๋ค์ ์ฒดํฌ | |
| # ์ฝํ ์ธ ํํฐ ์ค์ | |
| content_filter: | |
| require: # ํ์ฉ ํ์ฅ์ | |
| - '*.mkv' | |
| - '*.mp4' | |
| require_mainfile: yes # ํ์ผ์ด ์ฌ๋ฌ๊ฐ ์๋ ๊ฒฝ์ฐ, mainfile ์ฒดํฌ (๋จ์ผํ์ผ์ ์๊ดX) | |
| magnets: no # ์ฝํ ์ธ ํํฐ๊ฐ ์ ์ฉ๋๋๋ก ๋ง๊ทธ๋ท(Magnet) ๋๊ธฐ | |
| ######## RSS ์ฃผ์ ์ค์ ######## | |
| # Korea ENT template | |
| kent_template: | |
| include: | |
| - input/kent.yml | |
| - want/kent.yml | |
| verify_ssl_certificates: no | |
| # ์ฝํ ์ธ ์ฌ์ด์ฆ ์ค์ | |
| content_size: | |
| min: 300 # 300MB ์ด์ | |
| max: 5000 # 5G ์ดํ | |
| series: | |
| settings: | |
| KENT: | |
| identified_by: ep | |
| ep_regexp: e(\d+) | |
| quality: 720p !1080p !360p | |
| # Korea Drama template | |
| kdrama_template: | |
| include: | |
| - input/kdrama.yml | |
| - want/kdrama.yml | |
| verify_ssl_certificates: no | |
| # ์ฝํ ์ธ ์ฌ์ด์ฆ ์ค์ | |
| content_size: | |
| min: 300 # 300MB ์ด์ | |
| max: 5000 # 5G ์ดํ | |
| series: | |
| settings: | |
| KDRAMA: | |
| #timeframe: 4 hours | |
| identified_by: ep | |
| ep_regexp: e(\d+) | |
| quality: 720p !1080p !360p | |
| #target: 720p !1080p !360p | |
| # ์ ์ฅ ํด๋ ๋ฐ ํ์ผ์ด๋ฆ ๋ณ๊ฒฝ ์ค์ | |
| transmission-kent: | |
| transmission: | |
| <<: *transmission-settings | |
| ratio: 0 | |
| main_file_only: yes | |
| rename_like_files: no | |
| #content_filename: "{{tvdb_series_name|default(series_name)|pathscrub}} - {{tvdb_ep_id|default(series_id)}}{% if tvdb_ep_name|default(False) %} - {{tvdb_ep_name|pathscrub}}{% endif %}{% if quality|default(False) %} - [{{quality}}]{% endif %}" | |
| path: "/{? folder.downssd ?}{? folder.downkent ?}/" | |
| transmission-kdrama: | |
| transmission: | |
| <<: *transmission-settings | |
| ratio: 0 | |
| main_file_only: yes | |
| rename_like_files: no | |
| #content_filename: "{{tvdb_series_name|default(series_name)|pathscrub}} - {{tvdb_ep_id|default(series_id)}}{% if tvdb_ep_name|default(False) %} - {{tvdb_ep_name|pathscrub}}{% endif %}{% if quality|default(False) %} - [{{quality}}]{% endif %}" | |
| path: "/{? folder.downssd ?}{? folder.downkdrama ?}{{tmdb_name|default(series_name)|pathscrub}}/" | |
| # Pushbullet ์ค์ | |
| pushbullet: | |
| notify: | |
| entries: | |
| title: "{{title}} ๋ค์ด๋ก๋ ์์" | |
| via: | |
| - pushbullet: | |
| api_key: "{? pushbullet.api ?}" | |
| disable-seen-retry: | |
| disable: | |
| - seen | |
| - seen_info_hash | |
| - retry_failed | |
| series-metainfo: | |
| metainfo_series: yes | |
| #tmdb_lookup: yes | |
| thetvdb_lookup: yes | |
| kdrama-metainfo: | |
| metainfo_series: yes | |
| tmdb_lookup: yes | |
| thetvdb_lookup: yes | |
| series-guessit: | |
| parsing: | |
| series: guessit | |
| ################################ | |
| tasks: | |
| download_kent_manual: | |
| priority: 10 | |
| template: | |
| - disable-seen-retry | |
| - kent_template | |
| - transmission-kent | |
| #- pushbullet | |
| download_kdrama_manual: | |
| priority: 10 | |
| template: | |
| - disable-seen-retry | |
| - kdrama_template | |
| - transmission-kdrama | |
| #- pushbullet | |
| ############ ์ด๋ ####### | |
| move_kent: | |
| priority: 50 | |
| filesystem: | |
| path: "/{? folder.downssd ?}{? folder.downkent ?}" | |
| recursive: yes | |
| retrieve: files | |
| regexp: '.*\.(avi|mkv|mp4)$' | |
| accept_all: yes | |
| move: | |
| to: "/{? folder.root ?}{? folder.kent ?}" | |
| exec: | |
| on_exit: | |
| phase: find "/{? folder.downssd ?}{? folder.downkent ?}"* -type d -empty -delete | |
| move_kdrama: | |
| priority: 51 | |
| template: | |
| - disable-seen-retry | |
| - series-metainfo | |
| - series-guessit | |
| filesystem: | |
| path: "/{? folder.downssd ?}{? folder.downkdrama ?}" | |
| recursive: yes | |
| retrieve: files | |
| regexp: '.*\.(avi|mkv|mp4)$' | |
| accept_all: yes | |
| move: | |
| # ex) Kim's Convenience/Season 1/ | |
| to: "/{? folder.root ?}{? folder.kdrama ?}" | |
| exec: | |
| on_exit: | |
| phase: find "/{? folder.downssd ?}{? folder.downkdrama ?}"* -type d -empty -delete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # input/kent.yml | |
| inputs: | |
| - rss: { url: 'https://localhost/trss.php?k=720p-next&maxpage=1&s=tf&bf=tent', silent: yes } | |
| # input/kdrama.yml | |
| inputs: | |
| - rss: { url: 'https://localhost/trss.php?k=720p-next&maxpage=1&s=tf&bf=tdrama', silent: yes } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| folder: | |
| ############### Save Path ################# | |
| # / ๊ธฐ์ค์ผ๋ก ์์ฑ | |
| save_path: 4TB/ # /4TB/AutoDownload/kent/ | |
| kent: AutoDownload/kent/ | |
| kdrama: AutoDownload/kdrama/ | |
| ############### Down Path ################# | |
| down_path: SSD/ | |
| downkent: 3/0/ | |
| downkdrama: 3/1/ | |
| ############### Push bullet ################# | |
| pushbullet: | |
| api: API๋ฒํธ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| series: | |
| KENT: # category in config.yml | |
| - '๋ฏธ์ด ์ฐ๋ฆฌ ์๋ผ' | |
| - '์๊ธฐ์ผ-๋ฐฑ๋ ์๋' | |
| - '์๋ ํ๋' | |
| - 'ํดํผํฌ๊ฒ๋' | |
| - '๋ผ๋์ค์คํ' | |
| - '๋ ํผ์ ์ฐ๋ค' | |
| - '๋ฐ๋๋งจ' | |
| - '๋ฐฑ์ข ์์ ๊ณจ๋ชฉ์๋น' | |
| - '๋์์ด๋ถ' | |
| - '๋๋ง ๋ฏฟ๊ณ ๋ฐ๋ผ์ ๋์์ด๋ถ' | |
| - '์ธ์์ ์ง' | |
| - '๋์์ด๋ชฝ2' | |
| - '๋์ฅ๊ณ ๋ฅผ ๋ถํํด' | |
| - '์ด์์ ํ๊ตญ์ ์ฒ์์ด์ง' | |
| - '์ ์ง์ ์ฐธ๊ฒฌ' | |
| - 'ํ๋ผ์ค์ผ' | |
| - '๋์ ๋ผ์ดํ' | |
| - 'ํ์ค๋จ๋ 2' | |
| - '์ ํด์ฆ ์จ ๋ ๋ธ๋ญ' | |
| - '์๋ฏธ๋ค ๋ฐ์ฐฌ' | |
| - '๊ตฌ๋ด์๋น-๋จ์ ํ์ฌ ์ ๋๊ธฐ' | |
| - '์ ์์ ๊ธฐ 6' | |
| - 'ํ์ง์์ ๋จนํ๊น ์ค๊ตญํธ' | |
| - '์ง์ง์ฌ๋์ด300' | |
| - '๊ฐ๊ทธ์ฝ์ํธ' | |
| - '์ฝ๋ฏธ๋ ๋น ๋ฆฌ๊ทธ' | |
| - '์์ธ์ ์ก 3' | |
| - '์ ๋ค๋ฐฉ ๊ฐ์๊ฒจ์ธํธ' | |
| - 'ํ์๋์ฒฉ-๊ณ ์์ธ์ ' | |
| - 'ํ๋ฆฌํ19' | |
| - '์ฃผ๋ง ์ฌ์ฉ ์ค๋ช ์' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment