VLC streaming

Hi guys,

I installed VLC on my server and want to know if there is a way for me to stream a video stream which is already streaming from another server and redelivering it over the network? And if that’s possible can I transcode the video in real-time? How?

Many thanks :e
 
Yes, it's good thanks. Do you know how to input a stream from an http server and then stream it myself on my own server? Say my server is 1 and the other is 2 so the stream is working on server 2?

http://server2.com:8080 How can I duplicate the stream to make it run on server 1 like
http://server1.com:8080

I tried
vlc -vvv input_stream --sout '#standard{access=http,mux=ogg,dst=server.example.org:8080}

vlc -vvv [url]http://serve2.com:8088/[/url] --udp-caching 1500 --sout '#standard{access=http{mime=video/x-ms-asf},mux=asf,dst=/}' --http-port=8080
 
Back
Top