gpt4 book ai didi

ffmpeg - Gstreamer 基础教程给出黑屏

转载 作者:行者123 更新时间:2023-12-04 23:17:16 24 4
gpt4 key购买 nike

我有以下 gstreamer 基本教程。当我编译并运行程序时,我只得到一个空白屏幕。当我使用 mplayer 时也会发生同样的情况,但我为其提供了 -vo x11 选项并且它运行良好(对于 mplayer)。所以,我猜gstreamer的问题也是一样的。所以,我的问题是......“我应该怎么做才能告诉程序我的输出驱动程序是 x11?”如何摆脱空白屏幕?

谢谢

#include <gst/gst.h>

int main(int argc, char *argv[]) {
GstElement *pipeline;
GstBus *bus;
GstMessage *msg;

/* Initialize GStreamer */
gst_init (&argc, &argv);

/* Build the pipeline */
/*
pipeline = gst_parse_launch ("playbin2 uri=http://docs.gstreamer.com/media/sintel_trailer-480p.webm", NULL);
*/
pipeline = gst_parse_launch ("playbin2 uri=file:///home/mylogin/gstreamerstuff/sintel_trailer-480p.webm", NULL);

/* Start playing */
gst_element_set_state (pipeline, GST_STATE_PLAYING);

/* Wait until error or EOS */
bus = gst_element_get_bus (pipeline);
msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS);

/* Free resources */
if (msg != NULL)
gst_message_unref (msg);
gst_object_unref (bus);
gst_element_set_state (pipeline, GST_STATE_NULL);
gst_object_unref (pipeline);
return 0;
}

最佳答案

在将管道设置为播放之前尝试添加此代码。

{
GstElement* vsink = gst_element_factory_make ("ximagesink", NULL);
g_object_set (G_OBJECT (pipeline), "video-sink", vsink, NULL);
}

上面的代码确保管道使用名为 ximagesink 的 GstElement。
此元素(类型 = sink)基于 X11,并使用
X11 API

关于ffmpeg - Gstreamer 基础教程给出黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18237485/

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