diff options
author | pukkandan <pukkandan@gmail.com> | 2020-11-26 23:40:40 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2020-11-26 23:40:40 +0530 |
commit | a62cf342988d80148fcff608d3ff828238e9573b (patch) | |
tree | 5792af0375c832df215a3963b33dd5574c65572c | |
parent | 38d7028407b5db50e4d3c712d52b294ec1100c1f (diff) | |
download | hypervideo-pre-a62cf342988d80148fcff608d3ff828238e9573b.tar.lz hypervideo-pre-a62cf342988d80148fcff608d3ff828238e9573b.tar.xz hypervideo-pre-a62cf342988d80148fcff608d3ff828238e9573b.zip |
[spreaker] fix SpreakerShowIE test URL
-rw-r--r-- | youtube_dlc/extractor/spreaker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/spreaker.py b/youtube_dlc/extractor/spreaker.py index beee6670c..6c7e40ae4 100644 --- a/youtube_dlc/extractor/spreaker.py +++ b/youtube_dlc/extractor/spreaker.py @@ -126,7 +126,7 @@ class SpreakerPageIE(InfoExtractor): class SpreakerShowIE(InfoExtractor): _VALID_URL = r'https?://api\.spreaker\.com/show/(?P<id>\d+)' _TESTS = [{ - 'url': 'https://www.spreaker.com/show/3-ninjas-podcast', + 'url': 'https://api.spreaker.com/show/4652058', 'info_dict': { 'id': '4652058', }, |