Cordova Phonegap 2.2.0 VideoPlayer插件

时间:2013-01-03 09:45:09

标签: java android cordova phonegap-plugins cordova-2.0.0

我一直在寻找这个年龄,但似乎无法找到任何解决方案!

当用户点击我的Android PhoneGap应用程序中的div时,我正在尝试打开MP4视频,但经过进一步研究后,我发现HTML5视频标签不受支持,并被告知从这里下载插件调用VideoPlayer。

https://github.com/macdonst/VideoPlayer

当我运行此插件时,我收到与VideoPlayer.java文件的几个部分有关的错误。

我尝试过一些插件代码,但仍然没有出现任何视频。

这个插件是否与最新版本的PhoneGap不兼容,如果没有,是否有任何Java专家可以帮助我弄清楚如何让它在Phonegap下本地运行?

我得到两个主要错误和一些警告,如下所示:

enter image description here

错误似乎与此行有关:

URLConnection con = new URL(url).openConnection();

我试图删除那段代码(因为没有想要从YT加载视频,而是从我的本地资产加载)但是仍然没有乐趣让视频播放。

config.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<!--
       Licensed to the Apache Software Foundation (ASF) under one
       or more contributor license agreements.  See the NOTICE file
       distributed with this work for additional information
       regarding copyright ownership.  The ASF licenses this file
       to you under the Apache License, Version 2.0 (the
       "License"); you may not use this file except in compliance
       with the License.  You may obtain a copy of the License at

         http://www.apache.org/licenses/LICENSE-2.0

       Unless required by applicable law or agreed to in writing,
       software distributed under the License is distributed on an
       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
       KIND, either express or implied.  See the License for the
       specific language governing permissions and limitations
       under the License.
-->
<cordova>
    <!--
    access elements control the Android whitelist.
    Domains are assumed blocked unless set otherwise
     -->

    <access origin="http://127.0.0.1*"/> <!-- allow local pages -->

    <!-- <access origin="https://example.com" /> allow any secure requests to example.com -->
    <!-- <access origin="https://example.com" subdomains="true" /> such as above, but including subdomains, such as www -->
    <access origin=".*"/>

    <log level="DEBUG"/>
    <preference name="useBrowserHistory" value="true" />
    <preference name="exit-on-suspend" value="false" />
<plugins>
    <plugin name="App" value="org.apache.cordova.App"/>
    <plugin name="Geolocation" value="org.apache.cordova.GeoBroker"/>
    <plugin name="Device" value="org.apache.cordova.Device"/>
    <plugin name="Accelerometer" value="org.apache.cordova.AccelListener"/>
    <plugin name="Compass" value="org.apache.cordova.CompassListener"/>
    <plugin name="Media" value="org.apache.cordova.AudioHandler"/>
    <plugin name="Camera" value="org.apache.cordova.CameraLauncher"/>
    <plugin name="Contacts" value="org.apache.cordova.ContactManager"/>
    <plugin name="File" value="org.apache.cordova.FileUtils"/>
    <plugin name="NetworkStatus" value="org.apache.cordova.NetworkManager"/>
    <plugin name="Notification" value="org.apache.cordova.Notification"/>
    <plugin name="Storage" value="org.apache.cordova.Storage"/>
    <plugin name="FileTransfer" value="org.apache.cordova.FileTransfer"/>
    <plugin name="Capture" value="org.apache.cordova.Capture"/>
    <plugin name="Battery" value="org.apache.cordova.BatteryListener"/>
    <plugin name="SplashScreen" value="org.apache.cordova.SplashScreen"/>
    <plugin name="Echo" value="org.apache.cordova.Echo" />
    <plugin name="Globalization" value="org.apache.cordova.Globalization"/>
    <plugin name="VideoPlayer" value="com.phonegap.plugins.video.VideoPlayer"/>
</plugins>
</cordova>

1 个答案:

答案 0 :(得分:4)

不要删除任何代码块。

我尝试使用相同的插件代码,它对我有用。

保留VideoPlayer.java文件,因为它是随插件一起下载的,只需按ctr+shift+O这将导入此插件文件所需的相关软件包。

然后使用

更改视频通话命令
window.plugins.videoPlayer.play("file:///android_asset/www/res/videos/1.mp4");

使用Cordova 2.2第3步说明将更改为,

[3]   In your res/xml/config.xml file add the following line:

    <plugin name="VideoPlayer" value="com.phonegap.plugins.video.VideoPlayer"/>

这适合我。

如果您仍然遇到问题,请告诉我。

感谢。