py3
This commit is contained in:
parent
454d53d68a
commit
b7b4b09f0f
1 changed files with 2 additions and 2 deletions
|
@ -46,14 +46,14 @@ def video_url(youtubeId, format='mp4', timeout=cache_timeout):
|
|||
|
||||
def get_video_info(id):
|
||||
eurl = get_url(id)
|
||||
data = read_url(eurl)
|
||||
data = read_url(eurl).decode('utf-8')
|
||||
t = re.compile('\W[\'"]?t[\'"]?: ?[\'"](.+?)[\'"]').findall(data)
|
||||
if t:
|
||||
t = t[0]
|
||||
else:
|
||||
raise IOError
|
||||
url = "http://www.youtube.com/get_video_info?&video_id=%s&el=$el&ps=default&eurl=%s&hl=en_US&t=%s" % (id, quote(eurl), quote(t))
|
||||
data = read_url(url)
|
||||
data = read_url(url).decode('utf-8')
|
||||
info = {}
|
||||
for part in data.split('&'):
|
||||
key, value = part.split('=')
|
||||
|
|
Loading…
Reference in a new issue