Video Player
A Cordova plugin that simply allows you to immediately play a video in fullscreen mode.
Requires Cordova plugin: com.moust.cordova.videoplayer
. For more info, please see the VideoPlayer plugin docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic 视频播放 Video Player插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic 视频播放 Video Player插件支持的平台(Supported Platforms)
- Android
Ionic 视频播放 Video Player插件的用法(Usage)
import { VideoPlayer } from '@ionic-native/video-player/ngx';
constructor(private videoPlayer: VideoPlayer) { }
...
// Playing a video.
this.videoPlayer.play('file:///android_asset/www/movie.mp4').then(() => {
console.log('video completed');
}).catch(err => {
console.log(err);
});