diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2025-01-25 21:12:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-26 03:12:32 +0000 |
commit | 797d2472a299692e01ad1500e8c3b7bc1daa7fe4 (patch) | |
tree | 6fba178e271867f403d13e95705d8201a49b78b9 /yt_dlp/extractor/stacommu.py | |
parent | 3b99a0f0e07f0120ab416f34a8f5ab75d4fdf1d1 (diff) |
[ie/TheaterComplexTownPPV] Support `live` URLs (#11720)
Closes #11718
Authored by: bashonly
Diffstat (limited to 'yt_dlp/extractor/stacommu.py')
-rw-r--r-- | yt_dlp/extractor/stacommu.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/yt_dlp/extractor/stacommu.py b/yt_dlp/extractor/stacommu.py index d2f207fcc..830018518 100644 --- a/yt_dlp/extractor/stacommu.py +++ b/yt_dlp/extractor/stacommu.py @@ -207,7 +207,7 @@ class TheaterComplexTownVODIE(TheaterComplexTownBaseIE): class TheaterComplexTownPPVIE(TheaterComplexTownBaseIE): - _VALID_URL = r'https?://(?:www\.)?theater-complex\.town/(?:(?:en|ja)/)?ppv/(?P<id>\w+)' + _VALID_URL = r'https?://(?:www\.)?theater-complex\.town/(?:(?:en|ja)/)?(?:ppv|live)/(?P<id>\w+)' IE_NAME = 'theatercomplextown:ppv' _TESTS = [{ 'url': 'https://www.theater-complex.town/ppv/wytW3X7khrjJBUpKuV3jen', @@ -229,6 +229,9 @@ class TheaterComplexTownPPVIE(TheaterComplexTownBaseIE): }, { 'url': 'https://www.theater-complex.town/ja/ppv/qwUVmLmGEiZ3ZW6it9uGys', 'only_matching': True, + }, { + 'url': 'https://www.theater-complex.town/en/live/79akNM7bJeD5Fi9EP39aDp', + 'only_matching': True, }] _API_PATH = 'events' |