我想知道是否有办法从页面中提取视频流链接。 例如在Youtube和页面中http://www.youtube.com/watch?v=he5fpsmH_2g提取视频的实际下载链接并下载它,就像VideoGet所做的那样。
提前致谢。
查看clive的src代码,了解如何从脚本中完成它。
使用youtube_dl,这是一个python代码示例
import youtube_dl
with youtube_dl.YoutubeDL() as ydl:
info = ydl.extract_info('https://www.youtube.com/watch?v=fhCsHxZUdoU', download=False)
# print all streams data including url, quality, etc...
for stream in info['formats']:
print(stream)