Hello, just new to this forum.
I am trying to setup vlc working with wowza using rtp. They are installed in the same windows host. I have read all the posts in this thread but still cannot get things working. hope you guys can give me some advice.
following the tutorial:
vlc commands(1 audio sample and 1 video sample):
vlc -vvv “c:\Downloads\BreatheMe.mp3” :sout=#rtp{dst=192.168.1.45,sdp=http://192.168.1.45:8888/test.sdp}
vlc -vvv “c:\Downloads\Extremists.flv” :sout=#transcode{vcodec=mp4v,vb=800,scale=1,acodec=mp4a,ab=128,channels=2}:duplicate{dst=rtp{dst=192.168.1.45,mux=mp4,port=1234,port-audio=1234,port-video=1234,sdp=http://192.168.1.45:8888/test.sdp}}
192.168.1.45 is my local ip, using 127.0.0.1 is the same.
I can catch them with “vlc http://192.168.1.45:8888/test.sdp” to play.
And in “nativertp.html”, I set stream to “http://192.168.1.45:8888/test.sdp” and click “play”.
From the console I can see there is no error, the last line is “INFO stream play http://192.168.1.45:8888/test.sdp -”
However, there is nothing playing in the html page.
there are also lines like “INFO server comment - UDPTransport.bind: /192.168.1.45:50000”. I guess this is the communication between VLC & WOWZA and I try to play “udp://@192.168.1.45:5000” with VLC and it works, although the video is distorted.
I also try this vlc command:
vlc -vvv “c:\Downloads\BreatheMe.mp3” :sout=#rtp{dst=192.168.1.45,sdp=rtsp://192.168.1.45:8888/test.sdp}
I can use VLC player to catch it, but when I use “rtsp://192.168.1.45:8888/test.sdp” as the stream in “nativertp.html”, I got an error “ERROR serve comment - RTPSessionDescriptionDataProviderBasicRTSPWorker.processResponse: CSeq less than zero”. Finally I got a “*** RTSP/RTPS re-streaming timeout.”
anyone has any idea? I gotta use vlc cuz it works in linux, which is my future goal. thanks a lot.