Page 1 of 1

EasyCap video capture over IE

Posted: 11 Dec 2017 02:09
by rocampos
Hi, im triyin to get the EasyCap video capture over Internet Explorer instead any video capture software, im using this code:

<div id="Gcode122" class="dfltc">
<object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://downloads.videolan.org/pub/video ... /axvlc.cab" width="800" height="450" id="vlc" events="True">
<param name="Src" value="dshow://"></param>
<param name="ShowDisplay" value="True" ></param>
<param name="AutoLoop" value="no"></param>
<param name="AutoPlay" value="yes"></param>
<embed type="application/x-google-vlc-plugin" name="vlcfirefox" autoplay="yes" loop="no" width="800" height="450" target="dshow://"></embed>
</object> </div>
</div>

but it only works when i manually open the HonesTech TVR software, and i need it to work without opening any software, is it Possible?

Thank you for your help

Re: EasyCap video capture over IE

Posted: 11 Jan 2018 20:52
by da2424
Try to set the dshow video device:

<embed type="application/x-vlc-plugin" id="vlc" autoplay="no" loop="no" width="800" height="450" />
<script type="text/javascript">
var vlc = document.getElementById("vlc");
var options = ":dshow-vdev=name of your capturing software :dshow-adev=name of an audio device"; //You can see the available devices in the VLC GUI
vlc.playlist.add("dshow://", "", options);
vlc.playlist.play();
</script>