diff options
author | unbeatable-101 <daviswill048@icloud.com> | 2023-03-12 18:25:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 04:55:05 +0530 |
commit | cbfe2e5cbe0f4649a91e323a82b8f5f774f36662 (patch) | |
tree | 9727b54fcb500a8bed75b11ad140d08f5f107c10 | |
parent | cf9fd52fabe71d6e7c30d3ea525029ffa561fc9c (diff) | |
download | hypervideo-pre-cbfe2e5cbe0f4649a91e323a82b8f5f774f36662.tar.lz hypervideo-pre-cbfe2e5cbe0f4649a91e323a82b8f5f774f36662.tar.xz hypervideo-pre-cbfe2e5cbe0f4649a91e323a82b8f5f774f36662.zip |
[extractor/nebula] Add `beta.nebula.tv` (#6516)
Authored by: unbeatable-101
-rw-r--r-- | yt_dlp/extractor/nebula.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/yt_dlp/extractor/nebula.py b/yt_dlp/extractor/nebula.py index 81e2f56e6..5c1b7c712 100644 --- a/yt_dlp/extractor/nebula.py +++ b/yt_dlp/extractor/nebula.py @@ -5,7 +5,7 @@ import urllib.error from .common import InfoExtractor from ..utils import ExtractorError, parse_iso8601 -_BASE_URL_RE = r'https?://(?:www\.)?(?:watchnebula\.com|nebula\.app|nebula\.tv)' +_BASE_URL_RE = r'https?://(?:www\.|beta\.)?(?:watchnebula\.com|nebula\.app|nebula\.tv)' class NebulaBaseIE(InfoExtractor): @@ -183,6 +183,10 @@ class NebulaIE(NebulaBaseIE): 'url': 'https://watchnebula.com/videos/money-episode-1-the-draw', 'only_matching': True, }, + { + 'url': 'https://beta.nebula.tv/videos/money-episode-1-the-draw', + 'only_matching': True, + }, ] def _fetch_video_metadata(self, slug): |