1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 16:44:32 +01:00

Update uninettuno.py

Typing error...
This commit is contained in:
ipers 2018-02-24 19:50:27 +00:00 committed by GitHub
parent 953944e2fe
commit 8aa3570b43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ class UninettunoIE(InfoExtractor):
webpage_url = 'https://www.uninettuno.tv/Video.aspx?v=' + video_id
webpage = self._download_webpage(webpage_url, video_id)
self.report_extraction(video_id)
video_url = self._html_search_regex(r'[{sources: [{ file: "//(.+?)" ,type: "mp4" }]', webpage, u'video URL')
video_url = self._html_search_regex(r'[{sources: [{ file: "//(.+?)" ,type: "mp4" }]', webpage, 'video URL')
return [{
'id': video_id,
'url': video_url,