5

I have a problem streaming video using VLC. I want to use RTSP protocol. I have set the streaming as follows:

  • Open VLC;
  • Press CTRL+S in order to open streaming options;
  • Add the video file;
  • Add destination setup as RTSP, port 8554 and path "/";
  • Activated transcoding;
  • Press "Stream";

Using the same pc, I went on "localhost:8554", but the browser shows me a "404 Client error (/)" page with a link to VideoLAN (which is the company that have produced VLC).

How can I watch my video streaming, and how can I access to it from another PC?

EnCoder
  • 51

1 Answers1

-3

It may be a firewall issue. Firewall may block incoming connections on port 8554.

I am not sure how make available connectivity on Windows, but you can run this command in Linux:

sudo iptables -A INPUT -p tcp --dport 8554 -j ACCEPT

It will allow incoming traffic on 8554 port