使用python从url播放视频?
这些对我不起作用 如何播放网络视频使用 Opencv 和 python 和 是否可以使用 OpenCV 将 https://(例如 YouTube)中的视频流传输到 python 中? 。 我的程序返回一个我想从 cli 本身播放的链接(最好是模块而不是可执行文件)
代码:
from bs4 import BeautifulSoup
import requests
anime_name = 'one piece'.replace(' ', '%20')
soup = BeautifulSoup(requests.get('https://gogoanime.fi//search.html?keyword=' + anime_name).text, 'html.parser')
count = 0
number = 1
episode_number = 102
all_url = []
for k, i in enumerate(soup.find_all('a')):
if str(i.get('href')).startswith('/category') and k % 2 == 0:#it returns duplicate so using this to remove it
count += 1
print('[' + str(count) + ']', str(i.get('href'))[10:].replace('-', ' '))
all_url.append('https://gogoanime.fi//' + str(i.get('href')))
print(f'https://gogoanime.fi//{all_url[number-1][31:]}-episode-{episode_number}')
最后一行 返回链接,它不是文件,它在浏览器中流式传输视频 我想使用 python 播放该网址。尝试正常使用 vlc,但由于某种原因它会卡住。 Windows 7 python 3.8.8 也不介意网站实际这样做的 url 中的反斜杠数量。
These didn't work for me
How to to play videos from the web using Opencv and python
and
Is it possible to stream video from https:// (e.g. YouTube) into python with OpenCV?
.
My program returns a link which I want to play from cli itself (preferably a module and not an executable)
Code:
from bs4 import BeautifulSoup
import requests
anime_name = 'one piece'.replace(' ', '%20')
soup = BeautifulSoup(requests.get('https://gogoanime.fi//search.html?keyword=' + anime_name).text, 'html.parser')
count = 0
number = 1
episode_number = 102
all_url = []
for k, i in enumerate(soup.find_all('a')):
if str(i.get('href')).startswith('/category') and k % 2 == 0:#it returns duplicate so using this to remove it
count += 1
print('[' + str(count) + ']', str(i.get('href'))[10:].replace('-', ' '))
all_url.append('https://gogoanime.fi//' + str(i.get('href')))
print(f'https://gogoanime.fi//{all_url[number-1][31:]}-episode-{episode_number}')
The last line
returns the link it is not a file it streams the video in the browser
I want to play that url using python. Tried using vlc normally but for some reason it will get stuck. Windows 7 python 3.8.8 also don't mind the number of backslash in the url the website actually made it that way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑:修复了我传递浏览器 url 而不是我使用 mpv 的源 url
Edit: Fixed I was passing browser url instead of source url I used mpv