Skip to content

Commit

Permalink
[skylinewebcams] Fix extraction (closes #18853)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Jan 14, 2019
1 parent 3b983ee commit 1002632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/skylinewebcams.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def _real_extract(self, url):
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)
Expand Down

0 comments on commit 1002632

Please sign in to comment.