当前位置: 首页 > article >正文

HarmonyOS ArkTS中视频播放Video组件实现竖屏到横屏切换

在开发HarmonyOS应用时,视频播放是一个常见的需求。ArkTS提供了Video组件来满足这一需求。本文将介绍如何使用ArkTS的Video组件,并实现视频播放时从竖屏切换到横屏的功能。

视频播放组件简介

Video组件是ArkTS中用于播放视频的内置组件,它支持多种功能,包括自动播放、静音、循环播放等。通过Video组件,开发者可以方便地在应用中集成视频播放功能。

实现步骤

1. 导入必要的模块

首先,我们需要导入VideoItemwindowcommon模块:

import { VideoItem } from "../../common/bean/apiTypes";
import { window } from "@kit.ArkUI";
import { common } from "@kit.AbilityKit";

2. 定义视频播放组件

接下来,我们定义一个VideoPlayer组件,并在组件中使用Video组件来播放视频:

@Component
struct VideoPlayer {
  @State title: string = ''
  private controller: VideoController | undefined;
  @State previewUri: Resource = $r('app.media.play_circle_fill');
  @State videoSrc: string = 'http://staticvip.iyuba.cn/video/small/202412/1009544_c.mp4' // 使用时请替换为实际视频加载网址

  aboutToAppear() {
    // 获取视频播放参数
    interface params {
      item: VideoItem;
    }
    let ctx = getContext(this) as common.UIAbilityContext;
    let par = ctx.pathInfo.param as params;
    this.videoSrc = par.item.srtEngVideo;
    this.title = par.item.title;
  }

  private changeOrientation(isLandscape: boolean) {
    let context = getContext(this) as common.UIAbilityContext;
    window.getLastWindow(context).then((lastWindow) => {
      lastWindow.setPreferredOrientation(isLandscape ? window.Orientation.LANDSCAPE : window.Orientation.PORTRAIT);
    });
  }

  build() {
    NavDestination() {
      Column() {
        Stack() {
          Video({
            src: this.videoSrc,
            previewUri: this.previewUri,
            controller: this.controller
          })
            .width('100%')
            .muted(false) // 设置是否静音
            .controls(true) // 设置是否显示默认控制条
            .autoPlay(true) // 设置是否自动播放
            .loop(false) // 设置是否循环播放
            .objectFit(ImageFit.Contain) // 设置视频适配模式
            .onError(() => {          // 失败事件回调
              console.info("Video error.");
            })
            .onFullscreenChange(event => {
              if (event.fullscreen) {
                this.changeOrientation(true);
              } else {
                this.changeOrientation(false);
              }
            })
            .zIndex(1)

          Text(this.title)
            .fontColor(Color.White)
            .alignSelf(ItemAlign.Center)
            .margin({ bottom: 280 })
            .zIndex(2)
        }
      }.width('100%')
    }
    .width("100%")
    .height("100%")
    .onReady(ctx => {
      interface params {
        item: VideoItem;
      }
      let par = ctx.pathInfo.param as params;
      this.videoSrc = par.item.srtEngVideo;
      this.title = par.item.title;
    })
    .onShown(() => {
      console.info('VideoPlayer onShown');
    })
  }
}

3. 处理全屏事件

Video组件的onFullscreenChange事件中,我们根据视频是否进入全屏来切换屏幕方向:

.onFullscreenChange(event => {
  if (event.fullscreen) {
    this.changeOrientation(true);
  } else {
    this.changeOrientation(false);
  }
})

4. 切换屏幕方向

changeOrientation方法用于设置屏幕的方向:

private changeOrientation(isLandscape: boolean) {
  let context = getContext(this) as common.UIAbilityContext;
  window.getLastWindow(context).then((lastWindow) => {
    lastWindow.setPreferredOrientation(isLandscape ? window.Orientation.LANDSCAPE : window.Orientation.PORTRAIT);
  });
}

注意事项

  1. 视频源:确保使用的视频源URL是有效的,并且网络可以访问。
  2. 权限:确保应用具有必要的权限来请求设备信息和访问网络。

结论

通过本文的介绍,您已经掌握了如何在HarmonyOS ArkTS中使用Video组件,并实现视频播放时从竖屏切换到横屏的功能。这一功能的实现可以提升用户体验,使视频观看更加方便。希望本文对您有所帮助。

作者介绍

作者:csdn猫哥

原文链接:https://blog.csdn.net/yyz_1987/article/details/144553700

团队介绍

坚果派团队由坚果等人创建,团队拥有12个华为HDE带领热爱HarmonyOS/OpenHarmony的开发者,以及若干其他领域的三十余位万粉博主运营。专注于分享HarmonyOS/OpenHarmony、ArkUI-X、元服务、仓颉等相关内容,团队成员聚集在北京、上海、南京、深圳、广州、宁夏等地,目前已开发鸿蒙原生应用和三方库60+,欢迎交流。

版权声明

本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。


http://www.kler.cn/a/446762.html

相关文章:

  • 嵌入式单片机的运行方式详解
  • 大数据面试题--企业面试真题
  • SpringBoot开发——整合JSONPath解析JSON信息
  • Linux实现两台服务器之间ssh连接
  • rfid标签打印开发指导
  • C语言经典100例
  • Centos7安装k8s集群
  • kafka常用命令(持续更新)
  • Vivado安装System Generator不支持新版Matlab解决方法
  • 国标GB28181协议平台Liveweb:搭建建筑工地无线视频联网监控系统方案
  • 命令行音乐库管理工具Beets
  • HTML语法规范
  • 自动生成发票数据并存入Excel
  • 【大语言模型】ACL2024论文-28 TTM-RE: 增强记忆的文档级关系抽取
  • 你了解TCP/IP参考模型吗
  • 8086汇编(16位汇编)学习笔记00.DEBUG命令使用解析及范例大全
  • Qt开发经验 --- 避坑指南(2)
  • Ajax简单理解
  • raft: Failed to contact
  • 从零搭建纯前端飞机大战游戏(附源码)
  • Restaurants WebAPI(三)——Serilog/
  • 前端学习二
  • SQL血缘解析
  • ubuntu镜像开荒ssh
  • [数据结构] 链表
  • 【Linux开发工具】版本控制器git