我正在使用vlcj将来自IP摄像机的实时视频流式传输到我的Java应用程序中。
问题是,每当我尝试使用局域网地址来获取流时,代码都无法打开套接字。

错误如下:

[01ac1028] access_http access error: cannot connect to 192.168.19.14:81
[01ac1028] access_mms access error: cannot connect to 192.168.19.14:81
[01adb550] main input error: open of `http://@192.168.19.14:81' failed
[01adb550] main input error: Your input can't be opened
[01adb550] main input error: VLC is unable to open the MRL 'http://@192.168.19.14:81'.


检查日志以获取详细信息。

谁能指导我如何消除这些错误?

最佳答案

mediaPlayer.playMedia("dshow://",
                    ":sout=#transcode{vcodec=h264,vb=800,fps=15,scale=1,width=1280,height=800,acodec=mp4a,ab=128,channels=2,samplerate=44100}:rtp{sdp=rtsp://@:5555/demo}",
                      ":no-sout-rtp-sap",
                     ":no-sout-standard-sap",
                      ":sout-all",
                      ":sout-keep");


用这个..

07-28 00:03