我使用GStreamer 1.10.4在Java应用程序中执行原始视频流播放。
这是我在Java应用程序之外用于视频播放的命令:它工作正常
gst-launch-1.0 -v udpsrc multicast-group=239.192.2.1 auto-multicast=true port="5000" caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)RAW, sampling=(string)YCbCr-4:2:2, depth=(string)8, width=(string)1920, height=(string)1080, colorimetry=(string)BT709-2, payload=(int)96, a-framerate=(string)20" ! rtpvrawdepay ! decodebin ! videobox top=90 bottom=90 ! autovideosink sync=false
现在,我需要在我的Java应用程序中实现此管道。我正在使用:
我能够在Java中构建简单的管道(如videotestsrc!autovideosink),这些管道在我的UI中正确显示。
但是,当我按照上面的命令行中所述构建原始流解码管道时,事情变得更加困难。
提醒: udpsrc! rtpvrawdepay! decodebin!视频框! autovideosink
问题是我无法将decodebin的src0 pad连接到视频播放器的接收器:我收到NOFORMAT错误
以下是我用于管道构建的相关代码:
String[] gstreamerArgs = new String[1];
gstreamerArgs[0] = "-v";
Gst.init("Video", gstreamerArgs);
mPipeline = new Pipeline("pipeline");
// Create elements =================================================================
elmt_udpsrc = ElementFactory.make("udpsrc", "udpsrc");
elmt_udpsrc.set("multicast-group", "239.192.2.1");
elmt_udpsrc.set("auto-multicast", true);
elmt_udpsrc.set("port", 5000);
Caps caps = new Caps("application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)RAW, sampling=(string)YCbCr-4:2:2, depth=(string)8, width=(string)1920, height=(string)1080, colorimetry=(string)BT709-2, payload=(int)96, a-framerate=(string)20");
elmt_udpsrc.set("caps", caps);
elmt_rtpvrawdepay = ElementFactory.make("rtpvrawdepay", "rtpvrawdepay");
elmt_decodebin = ElementFactory.make("decodebin", "decodebin"); // has a "Sometimes" pad
elmt_decodebin.connect(new PAD_ADDED() {
@Override
public void padAdded(final Element element, final Pad pad) {
if (pad.isLinked()) {
return;
}
// Prints "Linking Decodebin pad : src_0 to sink"
System.out.println("VideoHandlerUI - Linking Decodebin pad : " + pad.getName() + " to " + elmt_autovideosink.getStaticPad("sink").getName());
PadLinkReturn retour = pad.link(elmt_videobox.getStaticPad("sink")); // NOFORMAT error !
inspect(mPipeline);
mPipeline.play();
}
});
elmt_videobox = ElementFactory.make("videobox", "videobox");
elmt_autovideosink = videoUIComponent.getElement();
elmt_autovideosink.set("sync", false);
// Build Pipeline =================================================================
mPipeline.addMany(elmt_udpsrc, elmt_rtpvrawdepay, elmt_decodebin, elmt_videobox, elmt_autovideosink);
bStatus1 = Element.linkMany(elmt_udpsrc, elmt_rtpvrawdepay, elmt_decodebin); // TRUE
bStatus2 = Element.linkMany(elmt_videobox, elmt_autovideosink); // TRUE
以下是在链接尝试之后padAdded回调中的inspect(管道)函数的输出:
GstVideoComponent
Sink pad: sink connected to peer parent=BaseTransform: [videobox] / Pad: [src]
videobox
Sink pad: sink DISCONNECTED
Src pad: src connected to peer parent=AppSink: [GstVideoComponent] / Pad: [sink]
decodebin
Sink pad: sink connected to peer parent=Element: [rtpvrawdepay] / Pad: [src]
Sink pad: src_0 DISCONNECTED
rtpvrawdepay
Sink pad: sink connected to peer parent=BaseSrc: [udpsrc] / Pad: [src]
Src pad: src connected to peer parent=DecodeBin: [decodebin] / GhostPad: [sink]
udpsrc
Src pad: src connected to peer parent=Element: [rtpvrawdepay] / Pad: [sink]
我编写此管道的方式非常接近other examples I found on the web。我不明白为什么我在这两个元素之间出现NOFORMAT错误,因为同一个管道工作正常:
我还尝试将decodebin直接链接到videosink元素(不使用视频文件夹),但我得到了相同的结果。
我在代码中可能忘记了任何棘手的事情吗?我怎么能更深入地看看元素垫片中出现了什么呢?
答案 0 :(得分:0)
我发现了这个问题。 appsink功能与decodebin的功能不匹配。 我通过删除decodebin元素并用视频转换元素替换它来解决了这个问题,并且视频播放工作正常。