diff options
author | Luc Ritchie <luc.ritchie@gmail.com> | 2022-03-18 05:53:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 02:53:07 -0700 |
commit | 028f6437f1cb45bb9b3b286cba173b0588337feb (patch) | |
tree | d50e562e7585365fe17704b4612ba8a273ae7dde | |
parent | 43c38abd1f151ca16e63d7d32c833bfd9c8d726d (diff) | |
download | hypervideo-pre-028f6437f1cb45bb9b3b286cba173b0588337feb.tar.lz hypervideo-pre-028f6437f1cb45bb9b3b286cba173b0588337feb.tar.xz hypervideo-pre-028f6437f1cb45bb9b3b286cba173b0588337feb.zip |
[afreecatv] Match new vod url (#3097)
Authored by: wlritchi
-rw-r--r-- | yt_dlp/extractor/afreecatv.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/yt_dlp/extractor/afreecatv.py b/yt_dlp/extractor/afreecatv.py index f25fc47fa..e8118d931 100644 --- a/yt_dlp/extractor/afreecatv.py +++ b/yt_dlp/extractor/afreecatv.py @@ -32,7 +32,7 @@ class AfreecaTVIE(InfoExtractor): /app/(?:index|read_ucc_bbs)\.cgi| /player/[Pp]layer\.(?:swf|html) )\?.*?\bnTitleNo=| - vod\.afreecatv\.com/PLAYER/STATION/ + vod\.afreecatv\.com/(PLAYER/STATION|player)/ ) (?P<id>\d+) ''' @@ -170,6 +170,9 @@ class AfreecaTVIE(InfoExtractor): }, { 'url': 'http://vod.afreecatv.com/PLAYER/STATION/15055030', 'only_matching': True, + }, { + 'url': 'http://vod.afreecatv.com/player/15055030', + 'only_matching': True, }] @staticmethod |