Phonegap Android 应用程序中的错误 VideoCapture

发布于 2025-01-06 10:28:10 字数 1185 浏览 1 评论 0原文

我正在尝试使用phonegap在android应用程序中捕获视频,但遇到问题

类型错误:表达式“navigator.device.capture.captureVideo”的结果[未定义]不是函数。

下面是我的代码
我在 head 中包含了以下内容

<script type="text/javascript" src="js/phonegap-1.2.0.js"></script>
<script src="js/jquery-1.6.4.min.js"></script>

<script type="text/javascript">
 function recordVideo(){
 var capture = navigator.device.capture;
 var options1 = { limit: 1 };
navigator.device.capture.captureVideo(captureSuccess, captureError, options1);
alert("Record");
 }

function captureSuccess(mediaFiles) {
    var i, len;
    for (i = 0, len = mediaFiles.length; i < len; i += 1) {

       alert(mediaFiles[i].name);
    }       
}

function captureError(error) {
    var msg = 'An error occurred during capture: ' + error.code;

    alert(msg);
}
</script>

以及用于捕获按钮单击 Capture Video

但我在控制台上收到此错误

类型错误:表达式“navigator.device.capture.captureVideo”的结果[未定义]不是函数。

请帮我。

提前致谢。

蒂米尔

I am trying to capture video in android app using phonegap, but facing problem

TypeError: Result of expression 'navigator.device.capture.captureVideo' [undefined] is not a function.

Here bellow is my code
I included following in head

<script type="text/javascript" src="js/phonegap-1.2.0.js"></script>
<script src="js/jquery-1.6.4.min.js"></script>

<script type="text/javascript">
 function recordVideo(){
 var capture = navigator.device.capture;
 var options1 = { limit: 1 };
navigator.device.capture.captureVideo(captureSuccess, captureError, options1);
alert("Record");
 }

function captureSuccess(mediaFiles) {
    var i, len;
    for (i = 0, len = mediaFiles.length; i < len; i += 1) {

       alert(mediaFiles[i].name);
    }       
}

function captureError(error) {
    var msg = 'An error occurred during capture: ' + error.code;

    alert(msg);
}
</script>

And code for capturing on a button click <a href="javascript:void(0);" onClick="recordVideo();">Capture Video</a>

But I getting this error on console

TypeError: Result of expression 'navigator.device.capture.captureVideo' [undefined] is not a function.

Please help me.

Thanks in advance.

Timir

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宛菡 2025-01-13 10:28:10

您应该添加所需的插件(https:// github.com/apache/cordova-plugin-media-capture/blob/master/doc/index.md)

如果您使用的是 intel xdk,请转到项目 ->;插件和权限

You should add the required plugin (https://github.com/apache/cordova-plugin-media-capture/blob/master/doc/index.md)

If you are using intel xdk go to project -> plugins and permissions

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文