Skip to content

Commit

Permalink
[openload] Recognize IPv6 stream URLs (closes #16137)
Browse files Browse the repository at this point in the history
  • Loading branch information
zopieux authored and dstftw committed Apr 24, 2018
1 parent 0ff51ad commit 7603054
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion youtube_dl/extractor/openload.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,10 @@ def _real_extract(self, url):
get_element_by_id('streamurj', webpage) or
self._search_regex(
(r'>\s*([\w-]+~\d{10,}~\d+\.\d+\.0\.0~[\w-]+)\s*<',
r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)'), webpage,
r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)',
r'>\s*([\w-]+~\d{10,}~(?:[a-f\d]+:){2}:~[\w-]+)\s*<',
r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)\s*<',
r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)'), webpage,
'stream URL'))

video_url = 'https://openload.co/stream/%s?mime=true' % decoded_id
Expand Down

0 comments on commit 7603054

Please sign in to comment.