我尝试过使用 Ionic Native Video Player,但是它不起作用。当我尝试播放任何视频时,它只会显示没有音频或任何内容的黑屏。然后,我尝试了 HTML5 视频标签。但是,它仅适用于 MP4,不适用于 .MOV 文件。
是否有任何插件或解决方案?
ionic 原生视频播放器
ionViewDidLoad() {
this.videoPlayer
.play("../../assets/sample.mov")
.then(() => {
console.log("video completed");
})
.catch(err => {
console.log(err);
});
}
HTML5 视频播放器
<video fullscreen="fullscreen" autoplay="true">
<source src="../../assets/sample.mov" type="video/mp4">
</video>
Best Answer-推荐答案 strong>
这段代码在我的项目中运行良好
<video fullscreen="fullscreen" autoplay="true">
<source src="../../assets/sample.mov" type="video/mp4">
</video>
enter image description here
关于android - 如何在 Ionic 3 上播放 .MOV 视频文件?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/51964120/
|