赞
踩
代码实例:
// Web控制器
private videoController: VideoController = new VideoController()
build(){
Column(){
Video({
src: $r("app.media.test"), // 设置数据源
previewUri: "https://tenfei01.cfp.cn/creative/vcg/800/new/VCG41175510742.jpg", // 设置封面图片
controller: this.videoController // 设置控制器
})
.width(300)
.height(210)
Row({space: 10}) {
Button("播放")
.onClick(() => {
this.videoController.start()
})
Button("暂停")
.onClick(() => {
this.videoController.pause()
})
Button("继续")
.onClick(() => {
this.videoController.start()
})
}.margin({bottom:10,top:10})
Row() {
Button("全屏")
.onClick(() => {
this.videoController.requestFullscreen(true)
})
Button("退出全屏")
.onClick(() => {
this.videoController.exitFullscreen()
})
}
}.justifyContent(FlexAlign.Center)
.width("100%")
.height("100%")
}
//播放视频
onStart(event: () => void): VideoAttribute;
//暂停视频
onPause(event: () => void): VideoAttribute;
//视频完成时触发
onFinish(event: () => void): VideoAttribute;
//在全屏播放与非全屏播放状态之间切换时触发该事件
onFullscreenChange(callback: (event?: { fullscreen: boolean }) => void): VideoAttribute;
//视频准备完成时触发该事件,通过duration可以获取视频时长,单位为s
onPrepared(callback: (event?: { duration: number }) => void): VideoAttribute;
//当用户开始移动/跳到音频/视频中的新位置时
onSeeking(callback: (event?: { time: number }) => void): VideoAttribute;
//当用户重新定位视频的播放位置后执行
onSeeked(callback: (event?: { time: number }) => void): VideoAttribute;
//播放进度变化时触发该事件,单位为s,更新时间间隔为250ms
onUpdate(callback: (event?: { time: number }) => void): VideoAttribute;
//播放失败时触发该事件
onError(event: () => void): VideoAttribute;
代码实例
Video({
...
})
.onUpdate((event) => {
this.currentTime = event.time;
this.currentStringTime = this.handleChangeSliderTime(this.currentTime); //更新事件
})
.onPrepared((event) => {
console.log("视频时长:"+event.duration);
})
.onError(() => {
promptAction.showToast({
duration: 2000, //播放失败事件
message: "播放失败"
});
})
.width(300)
.height(210)
注意:
如果视频播放路径为第三方链接,需要开启网络权限。如图:
✨ 踩坑不易,还希望各位大佬支持一下 \textcolor{gray}{踩坑不易,还希望各位大佬支持一下} 踩坑不易,还希望各位大佬支持一下
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/171627?site
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。