How to play a RTMP stream in VLC

rtmpstreamingvideo streamingvlc-media-player

I'm trying to get a RTMP stream to play on VLC and the URL is in this format:
rtmp://76.10.10.240/liverepeater/mp4:name.mp4

I'm able to record the stream with CooJah but I only want to watch it via VLC. Any ideas?

Best Answer

You can play RTMP in VLC with the help of RTMPDump .

rtmpdump -v -r "rtmp://ip-address/app-name/streamname" -o - | "vlc" -
Related Question