about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-01-14 23:23:51 +0700
committerSergey M․ <dstftw@gmail.com>2019-01-14 23:23:51 +0700
commit10026329c2534635876921da229f382098b8f8e8 (patch)
tree461c94b1dce34b23febf15f0541d67d03722d188
parent3b983ee471305946709dcb83fa3799fc26a7db03 (diff)
downloadyoutube-dl-10026329c2534635876921da229f382098b8f8e8.tar.gz
youtube-dl-10026329c2534635876921da229f382098b8f8e8.tar.xz
youtube-dl-10026329c2534635876921da229f382098b8f8e8.zip
[skylinewebcams] Fix extraction (closes #18853)
-rw-r--r--youtube_dl/extractor/skylinewebcams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/skylinewebcams.py b/youtube_dl/extractor/skylinewebcams.py
index 5b4aaac6f..b7f8ac736 100644
--- a/youtube_dl/extractor/skylinewebcams.py
+++ b/youtube_dl/extractor/skylinewebcams.py
@@ -26,7 +26,7 @@ class SkylineWebcamsIE(InfoExtractor):
         webpage = self._download_webpage(url, video_id)
 
         stream_url = self._search_regex(
-            r'url\s*:\s*(["\'])(?P<url>(?:https?:)?//.+?\.m3u8.*?)\1', webpage,
+            r'(?:url|source)\s*:\s*(["\'])(?P<url>(?:https?:)?//.+?\.m3u8.*?)\1', webpage,
             'stream url', group='url')
 
         title = self._og_search_title(webpage)