gpt4 book ai didi

ipad - 如何在 PhoneGap 应用程序中显示本地视频?

转载 作者:行者123 更新时间:2023-11-28 21:39:54 25 4
gpt4 key购买 nike

如何在适用于 iPad 的 PhoneGap 应用程序中显示视频?

我找不到任何引用资料。

最佳答案

在 Ipad 的情况下,您应该使用 html 5 video 标签,其使用示例如下:

<video controls="controls" autoplay="autoplay">
<source src="yourVideo.mp4" type="video/mp4" />
<source src="yourVideo.webm" type="video/webm" />
<source src="yourVideo.ogv" type="video/ogg" />
</video>

我只将它与 mp4 扩展一起使用,我的视频使用 h264 编解码器进行视频编码,使用 AAC 编解码器进行音频编解码器编码。

在 Android 中,我使用了来自 github 的名为 web Intent 的 Phonegap 插件(https://github.com/phonegap/phonegap-plugins/tree/master/Android/WebIntent),一个使用示例是:

window.plugins.webintent.startActivity({
action: WebIntent.ACTION_VIEW,
url: 'http"//yourVideo.mp4'},
function() {console.log('Is wirking :D!');},
function() {console.log('Failed to open the URL :( !!');}
);

资源:

http://diveintohtml5.info/ (html5/ipad/iphone)

http://www.808.dk/?code-html-5-video (html5/ipad/iphone)

http://smus.com/android-phonegap-plugins (安卓)

关于ipad - 如何在 PhoneGap 应用程序中显示本地视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4854153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com