用python控制vlc

时间:2017-08-04 21:02:47

标签: python vlc

我想在vlc中使用Python脚本控制两件事。首先是打开网络流,将流地址添加为其中的URL并进行播放。 (这可能是可以跳过的)

第二件事是在特定时间拍摄快照并使用该图片。当我看到不同类型的库和模块时,它们只能播放,暂停,回放视频等内容。

有人可以帮我这个吗?

提前致谢!

1 个答案:

答案 0 :(得分:1)

您可以使用os.chdir(path)os.system(command)

查找vlc可执行文件(.exe)的位置,并将路径存储在变量中。 然后,您可以使用os.system执行给定的命令。

Here you see a list of possible command-line options for VLC

示例代码:

import os

vlc_path = "C:\path\to\vlc"
net_stream = "http://host[:port]/file" # You can use other protocols too

os.chdir(vlc_path)
os.system(f"vlc {net_stream}")