我想通过v4l2src从相机捕获图像,然后捕获的图像显示在2个接收器中,一个是原始图像,一个是处理过的图像。 有谁知道如何做到这一点? 我正在使用gstreamer 1.0。
答案 0 :(得分:1)
这是符合您需求的gst-launch示例:
gst-launch-1.0 -v v4l2src ! tee name=t \
t. ! queue ! videoscale ! video/x-raw,width=640,height=480 ! \
videoconvert ! autovideosink \
t. ! queue ! videoscale ! video/x-raw,width=360,height=240 ! \
videoconvert ! autovideosink