我使用此命令将相机数据发送到串行 COM 端口
gst-launch-1.0 mfvideosrc device-index=0 ! video/x-raw, width=1280, height=720, framerate=10/1 ! videoconvert ! video/x-raw, format=BGR ! filesink location=//.//COM20
效果很好。现在我想从我的第二个设备 (COM19) 接收该数据
像这样
gst-launch-1.0 filesrc location=//.//COM19 ! autovideosink
我尝试了不同的方法,但没有一个有效。
正确的接收命令是什么?谢谢!
可能需要在接收端再次解析数据
rawparse
类似的东西
gst-launch-1.0 filesrc location=//.//COM19 ! rawparse ! videoconvert ! autovideosink