mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
Change tabs to spaces
This commit is contained in:
parent
38349518f1
commit
7cdd5339b3
@ -25,27 +25,27 @@ class AllmyvideosIE(InfoExtractor):
|
||||
}
|
||||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
video_id = mobj.group('id')
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
video_id = mobj.group('id')
|
||||
|
||||
orig_webpage = self._download_webpage(url, video_id)
|
||||
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
|
||||
data = {}
|
||||
for name, value in fields:
|
||||
data[name] = value
|
||||
orig_webpage = self._download_webpage(url, video_id)
|
||||
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
|
||||
data = {}
|
||||
for name, value in fields:
|
||||
data[name] = value
|
||||
|
||||
post = compat_urllib_parse.urlencode(data)
|
||||
headers = {
|
||||
b'Content-Type': b'application/x-www-form-urlencoded',
|
||||
}
|
||||
req = compat_urllib_request.Request(url, post, headers)
|
||||
webpage = self._download_webpage(req, video_id, note='Downloading video page ...')
|
||||
post = compat_urllib_parse.urlencode(data)
|
||||
headers = {
|
||||
b'Content-Type': b'application/x-www-form-urlencoded',
|
||||
}
|
||||
req = compat_urllib_request.Request(url, post, headers)
|
||||
webpage = self._download_webpage(req, video_id, note='Downloading video page ...')
|
||||
|
||||
#Could be several links with different quality
|
||||
links = re.findall(r'"file" : "?(.+?)",', webpage)
|
||||
#Could be several links with different quality
|
||||
links = re.findall(r'"file" : "?(.+?)",', webpage)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': data['fname'][:len(data['fname'])-4], #Remove .mp4 extension
|
||||
'url': links[len(links)-1] #Choose the higher quality link
|
||||
}
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': data['fname'][:len(data['fname'])-4], #Remove .mp4 extension
|
||||
'url': links[len(links)-1] #Choose the higher quality link
|
||||
}
|
Loading…
Reference in New Issue
Block a user