Setting pipeline to PAUSED ... Pipeline is PREROLLING ... WARNING: from element /GstPipeline:pipeline0/GstAutoAudioSink:autoaudiosink0: Could not open audio device for playback. Additional debug info: gstalsasink.c(865): gst_alsasink_open (): /GstAlsaSink:autoaudiosink0-actual-sink-alsa: Playback open error on device 'default': Invalid argument WARNING: from element /GstPipeline:pipeline0/GstQTDemux:demux: Delayed linking failed. Additional debug info: ./grammar.y(510): gst_parse_no_more_pads (): /GstPipeline:pipeline0/GstQTDemux:demux: failed delayed linking pad video_0 of GstQTDemux named demux to some pad of GstQueue named queue0 WARNING: from element /GstPipeline:pipeline0/GstQTDemux:demux: Delayed linking failed. Additional debug info: ./grammar.y(510): gst_parse_no_more_pads (): /GstPipeline:pipeline0/GstQTDemux:demux: failed delayed linking pad audio_0 of GstQTDemux named demux to some pad of GstQueue named queue1 ERROR: from element /GstPipeline:pipeline0/GstQTDemux:demux: Internal data stream error. Additional debug info: qtdemux.c(6073): gst_qtdemux_loop (): /GstPipeline:pipeline0/GstQTDemux:demux: streaming stopped, reason not-linked (-1) ERROR: pipeline doesn't want to preroll. Setting pipeline to NULL ... Freeing pipeline ...
时间: 2024-02-01 10:04:29 浏览: 207
根据您的提示信息,播放器无法打开音频设备进行播放。要解决此问题,您可以尝试更改播放器使用的音频设备。
```
gst-launch-1.0 filesrc location=/path/to/your/video.mp4 ! qtdemux name=demux \
demux.video_0 ! queue ! mpegvideoparse ! decodebin ! videoconvert ! autovideosink \
demux.audio_0 ! queue ! mpegaudioparse ! decodebin ! audioconvert ! alsasink device=hw:0,0
```
在此命令中,我们使用 `alsasink` 元素将音频数据发送到 Linux 系统上的 ALSA 音频驱动程序。`device=hw:0,0` 参数指定使用硬件设备 `hw:0,0` 进行播放。如果您的系统上有多个音频设备,请根据实际情况更改设备名称。
相关问题
setting pipeline to PAUSED ... ERROR: Pipeline doesn't want to pause. WARNING: from element /GstPipeline:pipeline0/GstWaylandSink:waylandsink0: Could not initialise Wayland output Additional debug info: gstwaylandsink.c(333): gst_wayland_sink_find_display (): /GstPipeline:pipeline0/GstWaylandSink:waylandsink0: Failed to create GstWlDisplay: 'Failed to connect to the wayland display '(default)'' Setting pipeline to NULL ... Freeing pipeline ... framerate=30/1 ! queue ! jpegdec ! videoconvert ! waylandsinkh=1920,height=1080,f Setting pipeline to PAUSED ... ERROR: Pipeline doesn't want to pause. WARNING: from element /GstPipeline:pipeline0/GstWaylandSink:waylandsink0: Could not initialise Wayland output Additional debug info: gstwaylandsink.c(333): gst_wayland_sink_find_display (): /GstPipeline:pipeline0/GstWaylandSink:waylandsink0: Failed to create GstWlDisplay: 'Failed to connect to the wayland display '(default)'' Setting pipeline to NULL ... Freeing pipeline ...
这个错误通常是由于 GStreamer 使用的 Wayland 显示服务器连接失败引起的。
你可以尝试以下解决方法:
1. 检查 Wayland 显示服务器连接:检查 Wayland 显示服务器是否正确连接。你可以使用以下命令来测试 Wayland 连接:
```
$ echo $WAYLAND_DISPLAY
```
如果输出为空,说明 Wayland 显示服务器没有正确连接。你可以尝试重新启动 Wayland 显示服务器或者重新连接。
2. 检查 GStreamer 插件:检查是否安装了 GStreamer 的 Wayland 插件。你可以通过以下命令来查看已安装的插件:
```
$ gst-inspect-1.0 | grep waylandsink
```
如果没有找到 waylandsink 插件,你需要安装 GStreamer 的 Wayland 插件。
3. 检查 GStreamer 配置文件:检查 GStreamer 配置文件是否正确。你可以尝试删除 ~/.config/gstreamer-1.0 目录并重启 GStreamer。
如果以上方法都没有解决问题,你可以考虑升级 GStreamer 或者重新编译 GStreamer 插件来解决问题。
Setting pipeline to PAUSED ... ERROR: Pipeline doesn't want to pause. ERROR: from element /GstPipeline:pipeline0/GstAlsaSink:alsasink0: Could not open audio device for playback. Additional debug info: gstalsasink.c(865): gst_alsasink_open (): /GstPipeline:pipeline0/GstAlsaSink:alsasink0: Playback open error on device 'default': Invalid argument Setting pipeline to NULL ... Freeing pipeline ...
这个错误通常是由于音频设备驱动程序或者配置问题所导致的。您可以尝试以下解决方法:
1. 检查音频设备是否正确配置。您可以使用 `alsamixer` 命令或者系统设置来检查音频设备的配置是否正确。
2. 检查当前用户是否有权限访问音频设备。您可以使用 `groups` 命令来检查您是否在 `audio` 用户组中。如果不在,可以使用以下命令将当前用户添加到 `audio` 用户组中:
```
sudo usermod -a -G audio <your_username>
```
然后重新登录以使更改生效。
3. 如果上述方法无效,您可以尝试卸载并重新安装 ALSA 音频设备驱动程序。您可以使用以下命令来卸载 ALSA 音频设备驱动程序:
```
sudo apt-get remove --purge alsa-base pulseaudio
```
然后重新安装 ALSA 音频设备驱动程序:
```
sudo apt-get install alsa-base pulseaudio
```
4. 如果上述方法仍然无效,您可以尝试使用其他音频输出插件来替换 `alsasink` 元素。例如,您可以尝试使用 `autoaudiosink` 元素将音频输出到默认音频设备:
```
gst-launch-1.0 filesrc location=/path/to/your/video.mp4 ! qtdemux name=demux \
demux.video_0 ! queue ! decodebin ! videoconvert ! autovideosink \
demux.audio_0 ! queue ! decodebin ! audioconvert ! autoaudiosink
```
请注意,此命令使用 `autoaudiosink` 元素替换了 `alsasink` 元素,并将音频输出到默认音频设备。
阅读全文