我正在尝试在处理3上显示来自ip camera的rtsp流,vlc可以显示流并且我尝试使用opencv进行处理但它没有工作错误说它无法加载gstreamer,任何想法?< / p>
处理代码:
import codeanticode.gsvideo.*;
import processing.video.*;
import codeanticode.syphon.*;
Capture myCapture;
GSPipeline pipe;
void setup() {
size(640,480, P2D);
pipe = new GSPipeline(this, "rtspsrc location=rtsp://192.168.0.200/mpeg4 ! rtpmp4vdepay ! ffdec_mpeg4");
pipe.play();
}
void draw() {
if (pipe.available()) {
pipe.read();
image(pipe, 0, 0);
}
}