简体   繁体   English

jQuery网络摄像头插件不适用于移动浏览器

[英]jQuery webcam plugin not working with mobile browsers

Hi I am using this plugin in my application which is going to use in android browsers also. 嗨,我在我的应用程序中使用了插件, 插件也将在android浏览器中使用。 I got a message that on firefox that 'plugin is needed' when i go to adobe for flugin then it says no plugin available for the device. 我收到一条消息,在firefox上,当我去Adobe观察Flugin时,“需要插件”,然后说该设备没有可用的插件。 with chrome on android it says this plugin is not supported... 在Android上使用chrome表示不支持此插件...

what I suppose to do? 我该怎么办? How it will work on cellphone and tablet also? 它也将如何在手机和平​​板电脑上运行?

This solution will never work in mobiles, here is why. 此解决方案永远无法在手机上使用,这就是原因。

$("#camera").webcam({
    width: 320,
    height: 240,
    mode: "callback",
    swffile: "/download/jscam_canvas_only.swf",
    onTick: function() {},
    onSave: function() {},
    onCapture: function() {},
    debug: function() {},
    onLoad: function() {}
});

this jscam_canvas_only.swf which is a flash object can't not work in mobiles . jscam_canvas_only.swf是Flash对象,无法在手机上使用

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM