赞
踩
OhosVideoCache是一个支持边播放边缓存的库,只需要将音视频的url传递给OhosVideoCache处理之后再设置给播放器,
OhosVideoCache就可以一边下载音视频数据并保存在本地,一边读取本地缓存返回给播放器,使用者无需进行其他操作。
使用说明:
边缓存播放功能主要是通过Xcomponent组件、@ohos.multimedia.media以及OhosVideoCache三方库实现,XComponent组件主要用于绘制
视频播放的窗口,页面进来初始化服务器然后利用XComponent组件的onLoad函数来调用 VideoPlayerManager
中的initPlayer方法创建一个音视频管理实例,并通过setAVPlayerCallback函数和cacheAndPlayVideo函数来实现视频状态的监听以及边缓存边播放功能。
XComponent({ id: 'xcomponent', type: 'surface', controller: this.componentController }) .height(`${this.xComponentHeight}px`) .width(`${this.xComponentWidth}px`) .onLoad(() => { // 设置XComponent持有Surface的宽度和高度 this.componentController.setXComponentSurfaceSize({ surfaceWidth: SURFACE_WIDTH, surfaceHeight: SURFACE_HEIGHT }); this.surfaceId = this.componentController.getXComponentSurfaceId(); // 创建音视频播放实例 AvPlayManager.getInstance() .initPlayer(getContext(this) as common.UIAbilityContext, this.surfaceId, (avPlayer: media.AVPlayer) => { avPlayer.on('timeUpdate', (time: number) => { this.currentTime = time; }); this.videoDuration = handleTime(avPlayer.duration); this.total = avPlayer.duration; }) })
import common from '@ohos.app.ability.common'; import { HttpProxyCacheServer } from '@ohos/video-cache'; const CONTEXT_STR: string = 'context'; const SERVER_STR: string = 'server'; export default class GlobalProxyServer { private static instance: GlobalProxyServer | null = null; private objects: Map<string, Object | null> = new Map<string, Object | null>(); public static getInstance(): GlobalProxyServer { if (!GlobalProxyServer.instance) { GlobalProxyServer.instance = new GlobalProxyServer(); } return GlobalProxyServer.instance; } /** * 获取上下文信息 * @returns */ getContext(): common.UIAbilityContext { return this.objects.get(CONTEXT_STR) as common.UIAbilityContext; } /** * 设置上下文信息 * @param context */ setContext(context: common.UIAbilityContext): void { this.objects.set(CONTEXT_STR, context); } /** * 获取服务器 * @returns */ getServer(): HttpProxyCacheServer { return this.objects.get(SERVER_STR) as HttpProxyCacheServer; } /** * 设置服务器 * @param objectClass */ setServer(objectClass: HttpProxyCacheServer): void { try { const currentServer: HttpProxyCacheServer = this.getServer(); currentServer.shutdown(); } catch (err) { } this.objects.set(SERVER_STR, objectClass); } }
async initPlayer(context: common.UIAbilityContext, surfaceId: string,
callback: (avPlayer: media.AVPlayer) => void): Promise<void> {
logger.info(TAG, `initPlayer==initCamera surfaceId== ${surfaceId}`);
this.surfaceID = surfaceId;
try {
// 创建avPlayer实例对象
this.avPlayer = await media.createAVPlayer();
// 创建状态机变化回调函数
await this.setAVPlayerCallback(callback);
// 边缓存边播放
this.cacheAndPlayVideo(context);
} catch (err) {
logger.error(TAG, `initPlayer initPlayer err:${JSON.stringify(err)}`);
}
}
/** * 边缓存边监听函数 * @param context 上下文信息 * @returns */ async cacheAndPlayVideo(context: common.UIAbilityContext): Promise<void> { logger.info(TAG, `cacheAndPlayVideo start`); // TODO:知识点:监听缓存进度 class MyCacheListener implements CacheListener { onCacheAvailable(cacheFilePath: string, url: string, percentsAvailable: number): void { AppStorage.setOrCreate('currentCachePercent', percentsAvailable); } } GlobalProxyServer?.getInstance()?.getServer()?.registerCacheListener(new MyCacheListener(), ORIGIN_URL); // TODO:知识点:将原始的音视频url交给OhosVideoCache let proxyUrl: string | undefined = await GlobalProxyServer?.getInstance()?.getServer()?.getProxyUrl(ORIGIN_URL); // 由于avplayer不支持直接加载本地文件路径 这里需要转化为fd的路径 if (proxyUrl.startsWith(context.cacheDir)) { const file = fs.openSync(proxyUrl, fs.OpenMode.READ_ONLY); proxyUrl = `fd://${file.fd}`; } logger.info(TAG, `proxyUrl ${proxyUrl}`); // 将处理之后的url设置给播放器 this.avPlayer.url = proxyUrl; }
不涉及。
videocache // har类型
|---model
| |---GlobalProxyServer.ets // 模型层-服务器管理
| |---VideoPlayerManager.ets // 模型层-音视频管理
|---utils
| |---utils.ets // 工具
|---view
| |---VideoCacheView.ets // 视图层-应用主页面
为了能让大家更好的学习鸿蒙(HarmonyOS NEXT)开发技术,这边特意整理了《鸿蒙开发学习手册》(共计890页),希望对大家有所帮助:https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr21.cn/FV7h05
https://qr18.cn/F781PH
https://qr18.cn/F781PH
1.项目开发必备面试题
2.性能优化方向
3.架构方向
4.鸿蒙开发系统底层方向
5.鸿蒙音视频开发方向
6.鸿蒙车载开发方向
7.鸿蒙南向开发方向
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。