From 6c918c5071dec8290686a4d030a1f74da3d9debf Mon Sep 17 00:00:00 2001 From: prettysunflower Date: Tue, 30 Dec 2025 15:41:19 -0500 Subject: [PATCH] [ie/nebula:season] Support more URLs (#15436) Authored by: prettysunflower --- yt_dlp/extractor/nebula.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/yt_dlp/extractor/nebula.py b/yt_dlp/extractor/nebula.py index 93d01092d6..2708c722f3 100644 --- a/yt_dlp/extractor/nebula.py +++ b/yt_dlp/extractor/nebula.py @@ -482,7 +482,7 @@ class NebulaChannelIE(NebulaBaseIE): class NebulaSeasonIE(NebulaBaseIE): IE_NAME = 'nebula:season' - _VALID_URL = rf'{_BASE_URL_RE}/(?P[\w-]+)/season/(?P\d+)' + _VALID_URL = rf'{_BASE_URL_RE}/(?P[\w-]+)/season/(?P[\w-]+)' _TESTS = [{ 'url': 'https://nebula.tv/jetlag/season/15', 'info_dict': { @@ -499,6 +499,14 @@ class NebulaSeasonIE(NebulaBaseIE): 'description': 'md5:6da9040f1c2ac559579738bfb6919d1e', }, 'playlist_count': 8, + }, { + 'url': 'https://nebula.tv/jetlag/season/13-5', + 'info_dict': { + 'id': 'jetlag_13-5', + 'title': 'Hide + Seek Across NYC', + 'description': 'md5:5b87bb9acc6dcdff289bb4c71a2ad59f', + }, + 'playlist_count': 3, }] def _build_url_result(self, item):