我試圖使用連接到我的筆記本電腦的網絡攝像頭的視頻直播。我正在Linux Ubuntu中工作。與RTSP流媒體攝像頭
下面是服務器端和客戶端GStreamer的管道:
流媒體服務器:我試圖用GST-RTSP服務器從V4L2設備服務於視頻。
./test-launch --gst-debug=0 "(v4l2src ! video/x-raw-yuv,width=352,height=288,framerate=15/1 ! x264enc ! rtph264pay name=pay0 pt=96 )"
接收機:
gst-launch -v rtspsrc location=rtsp://192.168.XX.XX:8554/test ! decodebin ! autovideosink
我有這樣的錯誤消息:
Setting pipeline to PAUSED …
ERROR: Pipeline doesn’t want to pause.
ERROR: from element /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0: Could not read from resource. Additional debug info: gstrtspsrc.c(4573): gst_rtspsrc_send(): /GstPipeline:pipeline0/GstRTSPSrc:rtspsrc0: Got error response: 503 (Service Unavailable).
Setting pipeline to NULL …
Freeing pipeline …
誰知道這個問題,和/或可以嘗試幫助我嗎?
你解決了你的問題嗎? – victor1234