How does a YouTube movie downloader work? - YouTube

帅比萌擦擦* 提交于 2019-12-18 01:12:12

问题


I'm wordering how apps such as Video DownloadHelper work.


Any ideas?


回答1:


UPDATE: This answer may now be outdated, see comments below. This was going to happen eventually anyway, as YouTube phases out FLV and shifts toward HTML5 video...

They simply resolve the link to the actual FLV file, and download it.

This is done by copying the video identifier from the URL:

http://www.youtube.com/watch?v=WEeqHj3Nj2c

Which is used to request info about the video:

http://www.youtube.com/get_video_info?&video_id=WEeqHj3Nj2c

The video info includes a TOKEN, which you can then you use to make another request:

http://www.youtube.com/get_video?video_id=WEeqHj3Nj2c&t=TOKEN

If all goes well, YouTube will respond with HTTP 303 See Other, including a Location header with a direct link to the FLV file.




回答2:


Looking at the extension code, you can see it's doing it by regex parsing HTTP responses for various content types. The code is located in network-probe.js.

Specifically its using the http-on-examine-response event in the Firefox addon sdk - https://developer.mozilla.org/en-US/docs/Observer_Notifications#HTTP_requests



来源:https://stackoverflow.com/questions/3172962/how-does-a-youtube-movie-downloader-work-youtube

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!