Page 1 of 1

Record multiple source

Posted: 10 Mar 2010 01:45
by georgezou
How do I record multiple source? Do I have to launch multiple instance of VLC?

Re: Record multiple source

Posted: 10 Mar 2010 17:41
by Rémi Denis-Courmont
Either you run multiple instances, or you use VLM as documented on the website (not very user friendly).

Re: Record multiple source

Posted: 11 Mar 2010 00:04
by georgezou
Thanks for reply, Rémi.

I read the VLM document before. Somehow I got the impression that vlm only takes one input and stream out to multiple dst.

Now I used VLC Configurator created a configure file:
# VLC media player VLM command batch
# http://www.videolan.org/vlc/

new Channel1 broadcast enabled
setup Channel1 input rtp://10.0.0.42:4444@10.0.0.102:4444
setup Channel1 output #transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access=file,mux=raw,dst='c:\rtp1.mp3'}
new Channel2 broadcast enabled
setup Channel2 input rtp://10.0.0.43:4444@10.0.0.102:4000
setup Channel2 output #transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:std{access=file,mux=raw,dst='c:\rtp2.mp3'}

control channel1 play
control channel2 play


and load the configure file:
vlc -I telnet --vlm-conf VLCConfig.vlm


Not sure what to do next. Please help.


George