I am unsure about the terminology for what I am trying to accomplish, so I'll describe what I want to do:
I already set up a vlc broadcast on server A using:
Code: Select all
vlc --sout="#transcode{vcodec=h264,vb=600,scale=1,acodec=mp4a,ab=128,channels=1}:http{mux=ffmpeg{mux=flv},dst=:4321/vlc.flv}}"
Since server A has bandwidth limitations, I would like to use server B (for discussions sake with unlimited bandwidth) to grab the stream from server A and relay it to the enduser WHEN somebody accesses server B in order to watch the stream. Alternatively, server A could stream whenever I feel to stream something, to server B, which just would not provide a stream to the enduser, if stream A->B is not active at the time.
Any pointers on how to realize such setup, or on the terminology I should search for ?