working?
This commit is contained in:
parent
e97db391ce
commit
4bc1284c57
5 changed files with 397 additions and 25 deletions
|
|
@ -336,22 +336,8 @@ presets:
|
||||||
# inspection of the URL and conditionally adding another
|
# inspection of the URL and conditionally adding another
|
||||||
# ytdl-sub url download with the scraping and download reversed
|
# ytdl-sub url download with the scraping and download reversed
|
||||||
_multi_url_bilateral_inner:
|
_multi_url_bilateral_inner:
|
||||||
overrides:
|
preset:
|
||||||
enable_bilateral_scraping: True
|
- "_url_bilateral_overrides"
|
||||||
"%is_bilateral_url": >-
|
|
||||||
{ %contains( $0, "youtube.com/playlist" ) }
|
|
||||||
"%bilateral_url": >-
|
|
||||||
{
|
|
||||||
%if(
|
|
||||||
%and(
|
|
||||||
enable_bilateral_scraping,
|
|
||||||
subscription_has_download_archive,
|
|
||||||
%is_bilateral_url($0)
|
|
||||||
),
|
|
||||||
$0,
|
|
||||||
""
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
download:
|
download:
|
||||||
- url: "{ %bilateral_url(url) }"
|
- url: "{ %bilateral_url(url) }"
|
||||||
|
|
|
||||||
21
src/ytdl_sub/prebuilt_presets/helpers/url_bilateral.yaml
Normal file
21
src/ytdl_sub/prebuilt_presets/helpers/url_bilateral.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
presets:
|
||||||
|
# multi-url with bilateral scraping built into it via
|
||||||
|
# inspection of the URL and conditionally adding another
|
||||||
|
# ytdl-sub url download with the scraping and download reversed
|
||||||
|
_url_bilateral_overrides:
|
||||||
|
overrides:
|
||||||
|
enable_bilateral_scraping: True
|
||||||
|
"%is_bilateral_url": >-
|
||||||
|
{ %contains( $0, "youtube.com/playlist" ) }
|
||||||
|
"%bilateral_url": >-
|
||||||
|
{
|
||||||
|
%if(
|
||||||
|
%and(
|
||||||
|
enable_bilateral_scraping,
|
||||||
|
subscription_has_download_archive,
|
||||||
|
%is_bilateral_url($0)
|
||||||
|
),
|
||||||
|
$0,
|
||||||
|
""
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
@ -29,15 +29,6 @@ presets:
|
||||||
- "_kodi_base"
|
- "_kodi_base"
|
||||||
- "_jellyfin_tv_show"
|
- "_jellyfin_tv_show"
|
||||||
|
|
||||||
####################################################################################################
|
|
||||||
|
|
||||||
# TV show from one or more sources. Uses {url}'s avatar and banner as poster and fanart
|
|
||||||
_tv_show_by_date:
|
|
||||||
preset: "_multi_url_bilateral"
|
|
||||||
overrides:
|
|
||||||
avatar_uncropped_thumbnail_file_name: "{tv_show_poster_file_name}"
|
|
||||||
banner_uncropped_thumbnail_file_name: "{tv_show_fanart_file_name}"
|
|
||||||
|
|
||||||
####################################################################################################
|
####################################################################################################
|
||||||
|
|
||||||
_episode_video_tags:
|
_episode_video_tags:
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,15 @@ presets:
|
||||||
- "plex_tv_show_by_date"
|
- "plex_tv_show_by_date"
|
||||||
- "season_by_year__episode_by_month_day"
|
- "season_by_year__episode_by_month_day"
|
||||||
|
|
||||||
|
####################################################################################################
|
||||||
|
|
||||||
|
# TV show from one or more sources. Uses {url}'s avatar and banner as poster and fanart
|
||||||
|
_tv_show_by_date:
|
||||||
|
preset: "_multi_url_bilateral"
|
||||||
|
overrides:
|
||||||
|
avatar_uncropped_thumbnail_file_name: "{tv_show_poster_file_name}"
|
||||||
|
banner_uncropped_thumbnail_file_name: "{tv_show_fanart_file_name}"
|
||||||
|
|
||||||
####################################################################################################
|
####################################################################################################
|
||||||
|
|
||||||
_season_by_year:
|
_season_by_year:
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,7 @@ presets:
|
||||||
uid: "avatar_uncropped"
|
uid: "avatar_uncropped"
|
||||||
- name: "{tv_show_fanart_file_name}"
|
- name: "{tv_show_fanart_file_name}"
|
||||||
uid: "banner_uncropped"
|
uid: "banner_uncropped"
|
||||||
|
|
||||||
- url: "{collection_season_2_url}"
|
- url: "{collection_season_2_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "2"
|
collection_season_number: "2"
|
||||||
|
|
@ -86,6 +87,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_3_url}"
|
- url: "{collection_season_3_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "3"
|
collection_season_number: "3"
|
||||||
|
|
@ -93,6 +95,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_4_url}"
|
- url: "{collection_season_4_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "4"
|
collection_season_number: "4"
|
||||||
|
|
@ -100,6 +103,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_5_url}"
|
- url: "{collection_season_5_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "5"
|
collection_season_number: "5"
|
||||||
|
|
@ -107,6 +111,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_6_url}"
|
- url: "{collection_season_6_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "6"
|
collection_season_number: "6"
|
||||||
|
|
@ -114,6 +119,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_7_url}"
|
- url: "{collection_season_7_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "7"
|
collection_season_number: "7"
|
||||||
|
|
@ -121,6 +127,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_8_url}"
|
- url: "{collection_season_8_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "8"
|
collection_season_number: "8"
|
||||||
|
|
@ -128,6 +135,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_9_url}"
|
- url: "{collection_season_9_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "9"
|
collection_season_number: "9"
|
||||||
|
|
@ -135,6 +143,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_10_url}"
|
- url: "{collection_season_10_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "10"
|
collection_season_number: "10"
|
||||||
|
|
@ -142,6 +151,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_11_url}"
|
- url: "{collection_season_11_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "11"
|
collection_season_number: "11"
|
||||||
|
|
@ -149,6 +159,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_12_url}"
|
- url: "{collection_season_12_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "12"
|
collection_season_number: "12"
|
||||||
|
|
@ -156,6 +167,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_13_url}"
|
- url: "{collection_season_13_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "13"
|
collection_season_number: "13"
|
||||||
|
|
@ -163,6 +175,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_14_url}"
|
- url: "{collection_season_14_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "14"
|
collection_season_number: "14"
|
||||||
|
|
@ -170,6 +183,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_15_url}"
|
- url: "{collection_season_15_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "15"
|
collection_season_number: "15"
|
||||||
|
|
@ -177,6 +191,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_16_url}"
|
- url: "{collection_season_16_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "16"
|
collection_season_number: "16"
|
||||||
|
|
@ -184,6 +199,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_17_url}"
|
- url: "{collection_season_17_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "17"
|
collection_season_number: "17"
|
||||||
|
|
@ -191,6 +207,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_18_url}"
|
- url: "{collection_season_18_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "18"
|
collection_season_number: "18"
|
||||||
|
|
@ -198,6 +215,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_19_url}"
|
- url: "{collection_season_19_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "19"
|
collection_season_number: "19"
|
||||||
|
|
@ -205,6 +223,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_20_url}"
|
- url: "{collection_season_20_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "20"
|
collection_season_number: "20"
|
||||||
|
|
@ -212,6 +231,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_21_url}"
|
- url: "{collection_season_21_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "21"
|
collection_season_number: "21"
|
||||||
|
|
@ -219,6 +239,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_22_url}"
|
- url: "{collection_season_22_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "22"
|
collection_season_number: "22"
|
||||||
|
|
@ -226,6 +247,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_23_url}"
|
- url: "{collection_season_23_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "23"
|
collection_season_number: "23"
|
||||||
|
|
@ -233,6 +255,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_24_url}"
|
- url: "{collection_season_24_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "24"
|
collection_season_number: "24"
|
||||||
|
|
@ -240,6 +263,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_25_url}"
|
- url: "{collection_season_25_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "25"
|
collection_season_number: "25"
|
||||||
|
|
@ -247,6 +271,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_26_url}"
|
- url: "{collection_season_26_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "26"
|
collection_season_number: "26"
|
||||||
|
|
@ -254,6 +279,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_27_url}"
|
- url: "{collection_season_27_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "27"
|
collection_season_number: "27"
|
||||||
|
|
@ -261,6 +287,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_28_url}"
|
- url: "{collection_season_28_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "28"
|
collection_season_number: "28"
|
||||||
|
|
@ -268,6 +295,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_29_url}"
|
- url: "{collection_season_29_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "29"
|
collection_season_number: "29"
|
||||||
|
|
@ -275,6 +303,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_30_url}"
|
- url: "{collection_season_30_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "30"
|
collection_season_number: "30"
|
||||||
|
|
@ -282,6 +311,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_31_url}"
|
- url: "{collection_season_31_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "31"
|
collection_season_number: "31"
|
||||||
|
|
@ -289,6 +319,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_32_url}"
|
- url: "{collection_season_32_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "32"
|
collection_season_number: "32"
|
||||||
|
|
@ -296,6 +327,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_33_url}"
|
- url: "{collection_season_33_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "33"
|
collection_season_number: "33"
|
||||||
|
|
@ -303,6 +335,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_34_url}"
|
- url: "{collection_season_34_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "34"
|
collection_season_number: "34"
|
||||||
|
|
@ -310,6 +343,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_35_url}"
|
- url: "{collection_season_35_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "35"
|
collection_season_number: "35"
|
||||||
|
|
@ -317,6 +351,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_36_url}"
|
- url: "{collection_season_36_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "36"
|
collection_season_number: "36"
|
||||||
|
|
@ -324,6 +359,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_37_url}"
|
- url: "{collection_season_37_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "37"
|
collection_season_number: "37"
|
||||||
|
|
@ -331,6 +367,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_38_url}"
|
- url: "{collection_season_38_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "38"
|
collection_season_number: "38"
|
||||||
|
|
@ -338,6 +375,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_39_url}"
|
- url: "{collection_season_39_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "39"
|
collection_season_number: "39"
|
||||||
|
|
@ -345,6 +383,7 @@ presets:
|
||||||
playlist_thumbnails:
|
playlist_thumbnails:
|
||||||
- name: "{season_poster_file_name}"
|
- name: "{season_poster_file_name}"
|
||||||
uid: "latest_entry"
|
uid: "latest_entry"
|
||||||
|
|
||||||
- url: "{collection_season_40_url}"
|
- url: "{collection_season_40_url}"
|
||||||
variables:
|
variables:
|
||||||
collection_season_number: "40"
|
collection_season_number: "40"
|
||||||
|
|
@ -648,6 +687,332 @@ presets:
|
||||||
s39_url: ""
|
s39_url: ""
|
||||||
s40_url: ""
|
s40_url: ""
|
||||||
|
|
||||||
|
_tv_show_collection_bilateral:
|
||||||
|
preset:
|
||||||
|
- "_url_bilateral_overrides"
|
||||||
|
|
||||||
|
download:
|
||||||
|
- url: "{collection_season_1_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "1"
|
||||||
|
collection_season_name: "{collection_season_1_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_2_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "2"
|
||||||
|
collection_season_name: "{collection_season_2_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_3_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "3"
|
||||||
|
collection_season_name: "{collection_season_3_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_4_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "4"
|
||||||
|
collection_season_name: "{collection_season_4_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_5_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "5"
|
||||||
|
collection_season_name: "{collection_season_5_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_6_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "6"
|
||||||
|
collection_season_name: "{collection_season_6_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_7_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "7"
|
||||||
|
collection_season_name: "{collection_season_7_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_8_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "8"
|
||||||
|
collection_season_name: "{collection_season_8_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_9_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "9"
|
||||||
|
collection_season_name: "{collection_season_9_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_10_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "10"
|
||||||
|
collection_season_name: "{collection_season_10_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_11_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "11"
|
||||||
|
collection_season_name: "{collection_season_11_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_12_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "12"
|
||||||
|
collection_season_name: "{collection_season_12_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_13_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "13"
|
||||||
|
collection_season_name: "{collection_season_13_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_14_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "14"
|
||||||
|
collection_season_name: "{collection_season_14_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_15_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "15"
|
||||||
|
collection_season_name: "{collection_season_15_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_16_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "16"
|
||||||
|
collection_season_name: "{collection_season_16_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_17_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "17"
|
||||||
|
collection_season_name: "{collection_season_17_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_18_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "18"
|
||||||
|
collection_season_name: "{collection_season_18_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_19_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "19"
|
||||||
|
collection_season_name: "{collection_season_19_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_20_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "20"
|
||||||
|
collection_season_name: "{collection_season_20_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_21_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "21"
|
||||||
|
collection_season_name: "{collection_season_21_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_22_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "22"
|
||||||
|
collection_season_name: "{collection_season_22_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_23_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "23"
|
||||||
|
collection_season_name: "{collection_season_23_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_24_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "24"
|
||||||
|
collection_season_name: "{collection_season_24_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_25_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "25"
|
||||||
|
collection_season_name: "{collection_season_25_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_26_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "26"
|
||||||
|
collection_season_name: "{collection_season_26_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_27_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "27"
|
||||||
|
collection_season_name: "{collection_season_27_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_28_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "28"
|
||||||
|
collection_season_name: "{collection_season_28_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_29_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "29"
|
||||||
|
collection_season_name: "{collection_season_29_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_30_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "30"
|
||||||
|
collection_season_name: "{collection_season_30_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_31_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "31"
|
||||||
|
collection_season_name: "{collection_season_31_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_32_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "32"
|
||||||
|
collection_season_name: "{collection_season_32_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_33_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "33"
|
||||||
|
collection_season_name: "{collection_season_33_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_34_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "34"
|
||||||
|
collection_season_name: "{collection_season_34_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_35_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "35"
|
||||||
|
collection_season_name: "{collection_season_35_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_36_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "36"
|
||||||
|
collection_season_name: "{collection_season_36_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_37_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "37"
|
||||||
|
collection_season_name: "{collection_season_37_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_38_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "38"
|
||||||
|
collection_season_name: "{collection_season_38_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_39_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "39"
|
||||||
|
collection_season_name: "{collection_season_39_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
- url: "{collection_season_40_url}"
|
||||||
|
variables:
|
||||||
|
collection_season_number: "40"
|
||||||
|
collection_season_name: "{collection_season_40_name}"
|
||||||
|
download_reverse: True
|
||||||
|
ytdl_options:
|
||||||
|
playlist_items: "-1:0:-1"
|
||||||
|
|
||||||
|
|
||||||
####################################################################################################
|
####################################################################################################
|
||||||
# DEPRECATED SEASON PRESETS
|
# DEPRECATED SEASON PRESETS
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue