RTSP using ffmpeg

1.9k Views Asked by At

I wanted to stream a video file from one computer to another using FFmPEG. What I tried is:

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?

0

There are 0 best solutions below