【发布时间】:2020-07-28 23:05:40
【问题描述】:
在我的 Ionic 4 应用程序中,我需要从图库中选择一个视频并使用 HTML5 的视频标签在画布上播放它。我能够正确选择文件,但我错过了作为 HTML5 视频标签源的确切需要提供的内容。
来自home.page.ts的片段:
this.chooser.getFile('video/*').then((value:ChooserResult)=>{
this.fileObject = value;
})
来自home.page.html的片段:
<video controls>
<source src={{fileObject.dataURI}} type="video/mp4">
Your browser does not support the video tag.
</video>
【问题讨论】:
标签: angularjs ionic-framework cordova-plugins ionic4