gpt4 book ai didi

linux - Windows 10 上的 Debian 子系统中的 VLC Pulseaudio 错误

转载 作者:太空宇宙 更新时间:2023-11-04 11:47:24 24 4
gpt4 key购买 nike

我正在 Windows 10 上的 Debian 环境中编写一个小程序。我打算稍后在我的 Raspberry Pi 4 上使用此代码。

代码在一天中的特定时间通过 VLC 运行视频。

VLC代码(Python3)的核心如下。底部有完整的 Python 代码。

VLC代码:

import vlc;

Instance = vlc.Instance('--fullscreen');
player = Instance.media_player_new();
Media = Instance.media_new("../videos/starscape.mp4");
Media.get_mrl();
player.set_media(Media);

player.play();

但是,这会引发各种错误。

VLC media player 3.0.7 Vetinari (revision 3.0.7-0-g86cee31099)
shared memfd open() failed: Function not implemented
[00007fffdc1e0410] vlcpulse audio output error: PulseAudio server connection failure: Connection refused
shared memfd open() failed: Function not implemented
[00007fffdc225830] dbus interface error: Failed to connect to the D-Bus session daemon: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
[00007fffdc225830] main interface error: no suitable interface module
[00007fffdc1291a0] main libvlc error: interface "dbus,none" initialization failed
[00007fffdc204440] main interface error: no suitable interface module
[00007fffdc1291a0] main libvlc error: interface "globalhotkeys,none" initialization failed
[00007fffdc1291a0] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
error: XDG_RUNTIME_DIR not set in the environment.
[00007fffdc204440] skins2 interface error: cannot initialize OSFactory

这是我尝试修复它的方法:

  1. apt-get update 和 apt-get upgrade
  2. 卸载并重新安装 vlc
  3. 卸载并重新安装 python-vlc
  4. 卸载并重新安装 pulseaudio
  5. 谷歌这些错误并尝试随机解决方案

我以前从未在 CLI 中使用过 VLC,所以我不知道这是我的代码错误、安装错误还是 Debian 实例错误。

谁能指出正确的方法?

完整代码(仍在开发中,但总体思路已经存在)要点:https://gist.github.com/Code2Empower/7deb6e05ffd10b0ea83eaff41c8cf294

最佳答案

好吧,我是个白痴。在 Windows 10 上安装 Debian,创建一个完全 headless 的安装。

因此,VLC 当然会出错。

我也停止使用 vlc-python 调用 vlc 并使用 subprocess 模块(更干净)。

我在 Windows 环境中测试了代码,它可以正常工作。当它到达这里时,我将在 Pi 上测试它,但它应该表现相同。

这是新的 vlc 代码,以备不时之需。

import subprocess;
media = "../videos/starscape.mp4";

subprocess.Popen(["vlc.exe", media, "-f", "-L" ]);

要点:https://gist.github.com/Code2Empower/7deb6e05ffd10b0ea83eaff41c8cf294

关于linux - Windows 10 上的 Debian 子系统中的 VLC Pulseaudio 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57213776/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com