Hi,
I am successfully using the plugin to open a VLC window and view input from a webcam.
Here's the HTML:
<body bgcolor="yellow">
<h1>Demo of VLC mozilla plugin - Example 1</h1>
<embed type="application/x-vlc-plugin"
name="video1"
id="VLCPlayer"
autoplay="yes" loop="no" width="400" height="300"
src="dshow:// :dshow-vdev="" :dshow-adev="" :dshow-size="" "
/>
<br>
<a href="#" onclick='document.video1.play()'>Play video1</a>
<a href="#" onclick='document.video1.pause()'>Pause video1</a>
<a href="#" onclick='document.video1.stop()'>Stop video1</a>
<a href="#" onclick='document.video1.fullscreen()'>Fullscreen</a>
</body>
</html>
What do I add to stream the output via UDP to (let's say) 11.22.33.44:1234 ?
The plugin help seems to only include input, but not output.
Thanks.