Python:从页面中提取视频流链接

问题描述 投票:0回答:2

我想知道是否有办法从页面中提取视频流链接。 例如在Youtube和页面中http://www.youtube.com/watch?v=he5fpsmH_2g提取视频的实际下载链接并下载它,就像VideoGet所做的那样。

提前致谢。

python video-streaming
2个回答
1
投票

查看clive的src代码,了解如何从脚本中完成它。


0
投票

使用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)
© www.soinside.com 2019 - 2024. All rights reserved.