I have a web cam that I want to put a snapshot on a web page. If I put this in my browswer it returns a username and password pop-up
http://CAM_IP_ADD:PORT/Streaming/Channels/1/picture
If I enter a username and password I get a snapshot. So I found that if I enter this into my browser it returns a snapshot
http://USERNAME:PASSWORD@CAM_IP_ADD:PORT/Streaming/Channels/1/picture
So I figured I would create a simple HTML with this
<!DOCTYPE html>
<html>
<body>
<img src="http://USERNAME:PASSWORD@CAM_IP_ADD:PORT/Streaming/Channels/1/picture">
</body>
</html>
But it does not return an image. How can I authenticate this to get it to work?