So, I'm new to the VLM and trying to work through a simple example. I want to transcode audio (from a local mic) and a screen stream (from the laptop) into two different files. Eventually, I want to try and setup some mosaic magic to try and get these into one file. The key is that I don't want to stream the output, I want to save it to a file, and I'm having troubles finding examples to follow.
I tried this as my vlm file:
# Input options
new main broadcast enabled
setup main input "screen://"
setup main output #transcode{vcodec=mp4v,vb=1024,scale=1,acodec=mp4a,ab=128,channels=2}:standard{access=file,url=c:\test.mp4}
new odd broadcast enabled
setup odd input "dshow:// :dshow-vdev="" :dshow-adev="Headset Microphone (Plantronics" :dshow-size="""
setup odd output #transcode{acodec=mp3,ab=192,channels=1}:standard{access=file,url=c:\test.mp3}
# Launch everything
control main play
control odd play
And tried launching it with this:
vlc -I dummy --verbose=2 --vlm-conf temp.vlm --one-instance
And I get essentially nothing - vlc launches, gives a couple of normal sounding debug statements, and doesn't do either stream. Anyone able to give me a poke in the right direction?
Tia for any leads,
Chris