Modern browsers except IE handle MJPEG (Motion JPEG). Here is an example fiddle.
Can I detect support for MJPEG? I have looked through Modernizr in vain.
|
Modern browsers except IE handle Can I detect support for
| ||||
|
feedback
|
|
I've tried the most obvious way to detect if the image could be loaded or not:
In case image could be loaded | |||
|
feedback
|
|
Modernizr only supports the following formats for detection right now: ogg, webm and h264. The video element has a call called
Make sure you visit the W3C's information on canPlayType. It looks like the mime type should be "video/mjpeg" and not "video/mjpg" as you specified earlier. | ||||
|
feedback
|
|
Sadly for this you would need to use an ActiveX control to support mjpg in IE. See How to embed mjpeg file on a webpage. | |||
|
feedback
|