[BACKEND] Filter out upcoming videos and post-live streams by default in TV show presets (#738)
Follow-up to filtering out live videos. YouTube channels with an upcoming video that hasn't premiered yet would also hang ytdl-sub. Perform a match-filter to skip those as well. More info on match-filters here: https://ytdl-sub.readthedocs.io/en/latest/config.html#match-filters
This commit is contained in:
parent
04b19a5ddd
commit
f05fdbc498
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ presets:
|
||||||
_base:
|
_base:
|
||||||
match_filters:
|
match_filters:
|
||||||
filters:
|
filters:
|
||||||
- "!is_live"
|
- "!is_live & !is_upcoming & !post_live"
|
||||||
overrides:
|
overrides:
|
||||||
file_uid: "{uid_sanitized}"
|
file_uid: "{uid_sanitized}"
|
||||||
file_title: "{title_sanitized}"
|
file_title: "{title_sanitized}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue