Hi All,
I am new to VLC so forgive me if I'm ignorant of all the VLC features. I'm currently using VLC 0.9.9 on Windows XP.
I initially used VLC to read a MPEG TS file containing multiple programmes (services). I simply selected the programme to play using the GUI menu (Playback -> Programme). So far so good.
I would now like to stream the TS file over UDP on the same computer. I therefore ran 2 instances of VLC, one as a server and one as a client. For the server, I ran the command:
vlc -vvv d:\data\myvideo.ts --sout "#std{access=udp,mux=ts,dst=127.0.0.1:1234}" --sout-all
It's important that ALL services are streamed to the client, hence the use of --sout-all. On the client side, I ran the command:
vlc udp://@:1234
The problem is that the client creates a separate window for each programme in the TS and plays the programmes simultaneously. I would like to be able to select the required programme as before, i.e. through the GUI menu (Playback -> Programme). That way only one of the programmes is played.
Are there any command line options I can use for the VLC client (or VLC server) that prevents each programme being played in a separate window and allows me to select only one of the programmes to play via the GUI menu?
Many thanks for your help.