I'm trying to record rtp from multiple sources.
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
Nothing happened.
Please help.
George ZOU