I am using IP Cam (an app for android phones) to stream live video. It basically functions as a basic IP camera. It gives me a URL where the feed is. It looks like this http://192.168.2.32:8080/
when I'm connected to my WiFi network. The video stream is at http://192.168.2.32:8080/videofeed
.
I want to capture the video feed of the camera which is at http://192.168.2.32:8080/videofeed
and embed it in an HTML5 player (the one I plan to use is Video JS) or a Flash player if the HTML5 doesn't work (prefer HTML5 though). The HTML5 player is asking me for a source file (such as .mp4, webm, mov, etc) but at http://192.168.2.32:8080/videofeed
there is no source file. It's just HTML stream.
My question is how to I embed that video stream into my HTML5 player and post it on my website.