I'm working on windows form to get a website that content camera video, and then catch the image on this site
I'm using
webbrowser1.DrawToBitMap(bitmap, bitmapRect)
but the image shows all white. Then I try to catch image from another site (ex: google.com), the method work perfectly. So I think this could be because that this method could not catch video. So my question is do we have any ways to catch the video within a website through web browser control?
this the code that I embed the camera video
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="704" height="592" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="empty.mov">
<param name="autoplay" value="true">
<param name="controller" value="false">
<param name="qtsrc" value="rtsp://<link>">
<embed src="empty.mov" width="704" height="592" qtsrc="rtsp://<link>" autoplay="true" controller="false" target="myself" pluginspage="http://www.apple.com/quicktime/download/">
</object>
– Kien Dang Ngoc Nov 08 '13 at 08:18