mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[daum] Fix extraction (Closes #7949)
This commit is contained in:
parent
89abf7bf4d
commit
3a70ed9ebe
@ -37,9 +37,11 @@ def _real_extract(self, url):
|
|||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
canonical_url = 'http://tvpot.daum.net/v/%s' % video_id
|
canonical_url = 'http://tvpot.daum.net/v/%s' % video_id
|
||||||
webpage = self._download_webpage(canonical_url, video_id)
|
webpage = self._download_webpage(canonical_url, video_id)
|
||||||
|
og_url = self._og_search_url(webpage, default=None) or self._search_regex(
|
||||||
|
r'<link[^>]+rel=(["\'])canonical\1[^>]+href=(["\'])(?P<url>.+?)\2',
|
||||||
|
webpage, 'canonical url', group='url')
|
||||||
full_id = self._search_regex(
|
full_id = self._search_regex(
|
||||||
r'src=["\']http://videofarm\.daum\.net/controller/video/viewer/Video\.html\?.*?vid=(.+?)[&"\']',
|
r'tvpot\.daum\.net/v/([^/]+)', og_url, 'full id')
|
||||||
webpage, 'full id')
|
|
||||||
query = compat_urllib_parse.urlencode({'vid': full_id})
|
query = compat_urllib_parse.urlencode({'vid': full_id})
|
||||||
info = self._download_xml(
|
info = self._download_xml(
|
||||||
'http://tvpot.daum.net/clip/ClipInfoXml.do?' + query, video_id,
|
'http://tvpot.daum.net/clip/ClipInfoXml.do?' + query, video_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user