使用python从url播放视频?

发布于 2025-01-10 04:18:26 字数 1241 浏览 0 评论 0原文

这些对我不起作用 如何播放网络视频使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见你 2025-01-17 04:18:26

编辑:修复了我传递浏览器 url 而不是我使用 mpv 的源 url

Edit: Fixed I was passing browser url instead of source url I used mpv

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文