Video streaming Bananapi M3:GStreamer无法分配缓冲区大小

Video streaming Bananapi M3:GStreamer无法分配缓冲区大小,video-streaming,gstreamer,gstreamer-1.0,banana-pi,Video Streaming,Gstreamer,Gstreamer 1.0,Banana Pi,我正在处理BananaPi M3,我想使用gstreamer管道获取实时视频流,该管道是在gstreamer管道下方为以下目的创建的: $ gst-launch-1.0 autovideosrc ! queue ! videoconvert ! video/x-raw,width=1280,height=720,framerate=[30/1,10000000/333333] ! x264enc bframes=0 speed-preset=veryfast bitrate=512 byte-s

我正在处理BananaPi M3,我想使用gstreamer管道获取实时视频流,该管道是在gstreamer管道下方为以下目的创建的:

$ gst-launch-1.0 autovideosrc ! queue ! videoconvert ! video/x-raw,width=1280,height=720,framerate=[30/1,10000000/333333] ! x264enc bframes=0 speed-preset=veryfast bitrate=512 byte-stream=TRUE tune=zerolatency ! video/x-h264,stream-format=byte-stream,alignment=au,profile=baseline ! appsink sync=TRUE emit-signals=TRUE name=appsink-video
Setting pipeline to PAUSED ...
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock
Redistribute latency...
ERROR: from element /GstPipeline:pipeline0/GstAutoVideoSrc:autovideosrc0/GstV4l2Src:autovideosrc0-actual-src-v4l: Video device did not suggest any buffer size.
Additional debug info:
gstv4l2object.c(4070): gst_v4l2_object_decide_allocation (): /GstPipeline:pipeline0/GstAutoVideoSrc:autovideosrc0/GstV4l2Src:autovideosrc0-actual-src-v4l
Execution ended after 0:00:00.545798585
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...
从上面的错误可以看出,/dev/video0设备上不支持缓冲区大小的ioctl参数,因为我是gstreamer的新手,有人能帮我解决这个问题吗

提前谢谢