Skip to content

Commit 2090dbd

Browse files
committed
[youtube] fix get_video_info request
1 parent 0a04e03 commit 2090dbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

youtube_dl/extractor/youtube.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,7 @@ def _real_extract(self, url):
14501450
'Refetching age-gated info webpage',
14511451
'unable to download video info webpage', query={
14521452
'video_id': video_id,
1453-
'eurl': 'https://www.youtube.com/embed/' + video_id,
1453+
'eurl': 'https://youtube.googleapis.com/v/' + video_id,
14541454
}, fatal=False)),
14551455
lambda x: x['player_response'][0],
14561456
compat_str) or '{}', video_id)

0 commit comments

Comments
 (0)