Browse Source

[openload] Recognize IPv6 stream URLs (closes #16137)

master-ytdl-org
Alexandre Macabies 7 years ago
committed by Sergey M
parent
commit
76030543cd
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      youtube_dl/extractor/openload.py

+ 4
- 1
youtube_dl/extractor/openload.py View File

@ -340,7 +340,10 @@ class OpenloadIE(InfoExtractor):
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


Loading…
Cancel
Save