2011-07-06 155 views
3

我試圖使用連接到我的筆記本電腦的網絡攝像頭的視頻直播。我正在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 …

誰知道這個問題,和/或可以嘗試幫助我嗎?

+1

你解決了你的問題嗎? – victor1234

回答

1

可能有幾個原因不提供流,並且HTTP 503不說清楚(即有關PAUSED狀態的錯誤消息,因爲一個數據流必須從NULL切換到PLAYING,並且在切換到PAUSED時必須已經播放)。

您更好的命令之前,在添加GST_DEBUG={1,9}

GST_DEBUG=3 ./test-launch --gst-debug=0 ... 

在我的情況是,

ERROR GST_PIPELINE grammar.y:691:priv_gst_parse_yyparse: no element "x264enc" 
ERROR GST_PIPELINE grammar.y:776:priv_gst_parse_yyparse: link has no sink [[email protected]] 
ERROR GST_PIPELINE grammar.y:776:priv_gst_parse_yyparse: link has no source [[email protected]] 

而且我用的openSUSE系統上安裝包gstreamer-plugins-ugly-orig-addon解決它。希望這可以幫助別人減少脫髮。