I wanted to stream a video file from one computer to another using FFmPEG. What I tried is:
- RTSP server from here: https://github.com/revmischa/rtsp-server
- transmitted a video file a1.mp4 using ffmpeg with the following command:
ffmpeg -re -i a1.mp4 -f rtsp -muxdelay 0.1 rtsp://192.168.0.xxx:5545/abc
Played the video using VLC player.
vlc rtsp://192.168.0.xxx/abc
It works fine when I run the player in the same computer. But fails to stream into the VLC player of another computer in the network.
vlc rtsp://192.168.0.xxx/abc
Any suggestions?