Skip to content
Advertisement

Can’t download YouTube video

I’m having trouble retrieving the YouTube video automatically. Here’s the code. The problem is the last part. download = urllib.request.urlopen(download_url).read()

JavaScript

There’s an error message (thanks Wooble):

JavaScript

Advertisement

Answer

The code on the original question relies on several assumptions about the content of YouTube pages and URLs (expressed in constructs such as “url.split(‘something=’)[1]”) which may not always be true. I tested it and it might depend even on which related videos show on the page. You might have tripped on any of those specificities.

Here’s a cleaner version, which uses urllib to parse URLs and query strings, and which successfully downloads a video. I’ve removed some of the try/except which didn’t do much but exit, for clarity. Incidentally, it deals with Unicode video titles by removing non-ASCII characters from the filename to which the video is saved. It also takes any numbers of YouTube URLs and downloads them all. Finally, it masks its user-agent as Chrome for Mac (which is what I currently use).

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement