#鸿蒙通关秘籍# 如何在鸿蒙应用中实现视频播放器的暂停/播放功能?

HarmonyOS
2024-12-11 11:29:06
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
第一小趴菜


可以使用Video组件

示例代码

@Entry
@Component
struct Video1 {
  @State message: string = 'Hello World'
 
  build() {
    Tabs() {
      TabContent() {
        Video({
          src: "https://vd4.bdstatic.com/mda-phegibuu9ba9nrpe/hd/cae_h264/1692171953345322752/mda-phegibuu9ba9nrpe.mp4?auth_key=1703502162-0-0-6fd1550e28060e61121ed6d2a773b68c&bcevod_channel=searchbox_feed&pd=1&cr=1&cd=0&pt=4&logid=0162714477&vid=1316841417577475878&abtest=all"
        }).width("90%").aspectRatio(1.3)
      }.tabBar("网络视频")
      TabContent() {
        Video({
            src:$rawfile("朋友圈背景机车.mp4")
        }).width("90%").aspectRatio(1.3)
      }.tabBar("本地视频")
    }.animationDuration(500)
  }
}
分享
微博
QQ
微信
回复
2024-12-13 15:21:14
相关问题
HarmonyOS 播放器后台暂停音频播放
31浏览 • 1回复 待解决
使用AVPlayer实现视频播放器
1597浏览 • 1回复 待解决