index.vue 27.1 KB
Newer Older
1
<template>
DCloud-yyl's avatar
DCloud-yyl 已提交
2
	<view style="width: 300px;height: 225px;">
3 4 5 6 7 8
		<slot />
	</view>
</template>

<script lang="uts">
	import IjkPlayerView from 'io.dcloud.media.video.ijkplayer.media.IjkPlayerView';
DCloud-yyl's avatar
DCloud-yyl 已提交
9 10
	import OnPlayerChangedListener from 'io.dcloud.media.video.ijkplayer.media.OnPlayerChangedListener';
	import OnTextureRenderViewListener from 'io.dcloud.media.video.ijkplayer.media.TextureRenderView.OnTextureRenderViewListener';
11 12 13 14 15 16
	import EnumPlayStrategy from 'io.dcloud.media.video.ijkplayer.option.EnumPlayStrategy';
	import MediaPlayerParams from 'io.dcloud.media.video.ijkplayer.media.MediaPlayerParams';

	import OnInfoListener from 'tv.danmaku.ijk.media.player.IMediaPlayer.OnInfoListener';
	import IMediaPlayer from 'tv.danmaku.ijk.media.player.IMediaPlayer';
	import OnBufferingUpdateListener from 'tv.danmaku.ijk.media.player.IMediaPlayer.OnBufferingUpdateListener';
DCloud-yyl's avatar
DCloud-yyl 已提交
17
	import OnErrorListener from "tv.danmaku.ijk.media.player.IMediaPlayer.OnErrorListener";
18 19 20

	import FrameLayout from 'android.widget.FrameLayout';
	import ViewGroup from 'android.view.ViewGroup';
DCloud-yyl's avatar
DCloud-yyl 已提交
21
	import OnHierarchyChangeListener from 'android.view.ViewGroup.OnHierarchyChangeListener';
22
	import View from 'android.view.View';
DCloud-yyl's avatar
DCloud-yyl 已提交
23 24 25
	import OnKeyListener from 'android.view.View.OnKeyListener';
	import KeyEvent from 'android.view.KeyEvent';
	import WindowManager from 'android.view.WindowManager';
26 27
	import TextUtils from 'android.text.TextUtils';
	import JSONObject from 'org.json.JSONObject';
DCloud-yyl's avatar
DCloud-yyl 已提交
28 29 30 31
	import MediaPlayer from "android.media.MediaPlayer";
	import Bitmap from 'android.graphics.Bitmap';
	import Handler from 'android.os.Handler';
	import Looper from 'android.os.Looper';
DCloud-yyl's avatar
DCloud-yyl 已提交
32 33
	import DisplayMetrics from 'android.util.DisplayMetrics';
	import Context from 'android.content.Context';
34 35 36

	import Glide from 'com.bumptech.glide.Glide';

DCloud-yyl's avatar
DCloud-yyl 已提交
37 38
	import File from 'java.io.File';

39
	import { Danmu, RequestFullScreenOptions } from '../interface.uts';
DCloud-yyl's avatar
DCloud-yyl 已提交
40 41 42
	import { UniVideoTimeUpdateEventDetail, UniVideoFullScreenChangeEventDetail, UniVideoProgressEventDetail, UniVideoFullScreenClickEventDetail, UniVideoControlsToggleEventDetail } from '../interface.uts';
	import { UniVideoTimeUpdateEventImpl, UniVideoFullScreenChangeEventImpl, UniVideoErrorEventImpl, UniVideoProgressEventImpl, UniVideoFullScreenClickEventImpl, UniVideoControlsToggleEventImpl } from './event.uts';
	import { VideoErrorImpl } from '../unierror.uts';
43 44

	export default {
DCloud-yyl's avatar
DCloud-yyl 已提交
45
		name: "video",
46 47
		data() {
			return {
DCloud-yyl's avatar
DCloud-yyl 已提交
48 49 50
				playerView: null as IjkPlayerView | null,
				currentPos: 0,
				currentFrame: null as Bitmap | null,
DCloud-yyl's avatar
DCloud-yyl 已提交
51 52 53 54 55 56 57 58 59 60
				handler: new Handler(Looper.getMainLooper()),
				isEnded: false,
				isFirstLayoutFinished: false,
				isFullScreenChanged: false,
				screenWidth: 0,
				screenHeight: 0,
				layoutWidth: 0,
				layoutHeight: 0,
				videoBox: null as FrameLayout | null,
				copyPath: ''
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
			};
		},
		emits: ["play", "pause", "ended", "timeupdate", "fullscreenchange", "waiting", "error", "progress", "fullscreenclick", "controlstoggle"],
		props: {
			"src": { // 要播放视频的资源地址
				type: String,
				default: ""
			},
			"autoplay": { // 是否自动播放
				type: Boolean,
				default: false
			},
			"loop": { // 是否循环播放
				type: Boolean,
				default: false
			},
			"muted": { // 是否静音播放
				type: Boolean,
				default: false
			},
			"initialTime": { // 指定视频初始播放位置,单位为秒(s)
				type: Number,
				default: 0
			},
			"duration": { // 指定视频时长,单位为秒(s)
				type: Number,
				default: 0
			},
			"controls": { // 是否显示默认播放控件(播放/暂停按钮、播放进度、时间)
				type: Boolean,
				default: true
			},
			"danmuList": { // 弹幕列表
				type: Array<Danmu>,
				default: new Array<Danmu>()
			},
			"danmuBtn": { // 是否显示弹幕按钮,只在初始化时有效,不能动态变更
				type: Boolean,
				default: false
			},
			"enableDanmu": { // 是否展示弹幕,只在初始化时有效,不能动态变更
				type: Boolean,
				default: false
			},
			"pageGesture": { // 在非全屏模式下,是否开启亮度与音量调节手势
				type: Boolean,
				default: false
			},
			"direction": { // 设置全屏时视频的方向,不指定则根据宽高比自动判断。有效值为 0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
				type: Number,
DCloud-yyl's avatar
DCloud-yyl 已提交
111
				default: -1
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
			},
			"showProgress": { // 是否展示进度条,若不设置,宽度大于240时才会显示
				type: Boolean,
				default: true
			},
			"showFullscreenBtn": { // 是否显示全屏按钮
				type: Boolean,
				default: true
			},
			"showPlayBtn": { // 是否显示视频底部控制栏的播放按钮
				type: Boolean,
				default: true
			},
			"showCenterPlayBtn": { // 是否显示视频中间的播放按钮
				type: Boolean,
				default: true
			},
			"showLoading": { // 是否显示loading控件
				type: Boolean,
				default: true
			},
			"enableProgressGesture": { // 是否开启控制进度的手势
				type: Boolean,
				default: true
			},
			"objectFit": { // 当视频大小与 video 容器大小不一致时,视频的表现形式。contain:包含,fill:填充,cover:覆盖
				type: String,
				default: "contain"
			},
			"poster": { // 视频封面的图片网络资源地址,如果 controls 属性值为 false 则设置 poster 无效	
				type: String,
				default: ""
			},
			"showMuteBtn": { // 是否显示静音按钮
				type: Boolean,
				default: false
			},
			"title": { // 视频的标题,全屏时在顶部展示
				type: String,
				default: ""
			},
			"enablePlayGesture": { // 是否开启播放手势,即双击切换播放/暂停
				type: Boolean,
				default: false
			},
			"vslideGesture": { // 在非全屏模式下,是否开启亮度与音量调节手势(同 page-gesture)
				type: Boolean,
				default: false
			},
			"vslideGestureInFullscreen": { // 在全屏模式下,是否开启亮度与音量调节手势
				type: Boolean,
				default: true
			},
			"codec": { // 解码器选择,hardware:硬解码(硬解码可以增加解码算力,提高视频清晰度。少部分老旧硬件可能存在兼容性问题);software:ffmpeg 软解码;
				type: String,
				default: "hardware"
			},
			"httpCache": { // 是否对 http、https 视频源开启本地缓存。缓存策略:开启了此开关的视频源,在视频播放时会在本地保存缓存文件,如果本地缓存池已超过100M,在进行缓存前会清空之前的缓存(不适用于m3u8等流媒体协议)
				type: Boolean,
				default: false
			},
			"playStrategy": { // 播放策略,0:普通模式,适合绝大部分视频播放场景;1:平滑播放模式(降级),增加缓冲区大小,采用open sl解码音频,避免音视频脱轨的问题,可能会降低首屏展现速度、视频帧率,出现开屏音频延迟等。 适用于高码率视频的极端场景;2: M3U8优化模式,增加缓冲区大小,提升视频加载速度和流畅度,可能会降低首屏展现速度。 适用于M3U8在线播放的场景
				type: Number,
				default: 0
			},
			"header": { // HTTP 请求 Header
				type: UTSJSONObject,
				default: new UTSJSONObject()
			}
		},
		watch: {
			"src": {
				handler(newValue : string, oldValue : string) {
					let path = this.getSrcPath(newValue);
					if (newValue != oldValue) { // 切换资源
DCloud-yyl's avatar
DCloud-yyl 已提交
187 188 189
						this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
						this.playerView?.switchVideoPath(path);
						this.reload(true);
190 191 192 193 194 195 196 197 198 199
					} else { // 初始化资源
						this.playerView?.setVideoPath(path);
					}
				},
				immediate: false
			},
			"autoplay": {
				handler(value : boolean) {
					// 临时方案
					setTimeout(() => { // 运行在非主线程中
DCloud-yyl's avatar
DCloud-yyl 已提交
200
						this.runOnMain(function () {
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
							if (value && this.playerView?.isPlaying() == false) {
								this.playerView?.start();
							}
						});
					}, 100);
				},
				immediate: false
			},
			"loop": {
				handler(_ : boolean) {
					// do nothing
				},
				immediate: false
			},
			"muted": {
				handler(value : boolean) {
					this.playerView?.setMutePlayer(value);
				},
				immediate: false
			},
			"initialTime": {
				handler(value : number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
223
					if (value > 0) this.playerView?.seekTo(value.toInt() * 1000);
224 225 226 227 228
				},
				immediate: false
			},
			"duration": {
				handler(value : number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
229
					if (value > 0) this.playerView?.setDuration(value.toInt() * 1000);
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
				},
				immediate: false
			},
			"controls": {
				handler(value : boolean) {
					this.playerView?.setControls(value);
				},
				immediate: false
			},
			"danmuList": {
				handler(value : Array<Danmu>) {
					this.playerView?.setmDanmuList(JSON.stringify(value));
				},
				immediate: false
			},
			"danmuBtn": {
				handler(value : boolean) {
					this.playerView?.enableDanmuBtn(value);
				},
				immediate: false
			},
			"enableDanmu": {
				handler(value : boolean) {
					this.playerView?.enableDanmaku(value);
				},
				immediate: false
			},
			"pageGesture": {
				handler(value : boolean) {
					this.playerView?.setPageGesture(value);
				},
				immediate: false
			},
			"direction": {
				handler(value : number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
265
					this.playerView?.setDirection(value.toInt());
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
				},
				immediate: false
			},
			"showProgress": {
				handler(value : boolean) {
					this.playerView?.setProgressVisibility(value);
				},
				immediate: false
			},
			"showFullscreenBtn": {
				handler(value : boolean) {
					this.playerView?.setFullscreenBntVisibility(value);
				},
				immediate: false
			},
			"showPlayBtn": {
				handler(value : boolean) {
					this.playerView?.setPlayBntVisibility(value);
				},
				immediate: false
			},
			"showCenterPlayBtn": {
				handler(value : boolean) {
					this.playerView?.setCenterPlayBntVisibility(value);
				},
				immediate: false
			},
			"showLoading": {
				handler(value : boolean) {
					this.playerView?.setLoadingVisibility(value);
				},
				immediate: false
			},
			"enableProgressGesture": {
				handler(value : boolean) {
					this.playerView?.setIsEnableProgressGesture(value);
				},
				immediate: false
			},
			"objectFit": {
				handler(value : string) {
					this.playerView?.setScaleType(value);
				},
				immediate: false
			},
			"poster": {
				handler(value : string) {
					if (!TextUtils.isEmpty(value)) {
						let thumb = this.playerView?.mPlayerThumb;
						if (thumb != null) Glide.with(this.$androidContext!).load(value).into(thumb);
					}
				},
				immediate: false
			},
			"showMuteBtn": {
				handler(value : boolean) {
					this.playerView?.isMuteBtnShow(value);
				},
				immediate: false
			},
			"title": {
				handler(value : string) {
					if (!TextUtils.isEmpty(value)) this.playerView?.setTitle(value);
				},
				immediate: false
			},
			"enablePlayGesture": {
				handler(value : boolean) {
					this.playerView?.setmIsDoubleTapEnable(value);
				},
				immediate: false
			},
			"vslideGesture": {
				handler(value : boolean) {
					this.playerView?.setPageGesture(value);
				},
				immediate: false
			},
			"vslideGestureInFullscreen": {
				handler(value : boolean) {
					this.playerView?.setIsFullScreenPageGesture(value);
				},
				immediate: false
			},
			"codec": {
				handler(value : string) {
					this.playerView?.isUseMediaCodec(value == "hardware");
				},
				immediate: false
			},
			"httpCache": {
				handler(value : boolean) {
					this.playerView?.setViewHttpCacheOpen(value);
				},
				immediate: false
			},
			"playStrategy": {
				handler(value : number) {
					let strategy : EnumPlayStrategy;
					switch (value) {
						case EnumPlayStrategy.PLAY_SMOOTH.getFlagVal():
							strategy = EnumPlayStrategy.PLAY_SMOOTH;
							break;
						case EnumPlayStrategy.START_QUICK.getFlagVal():
							strategy = EnumPlayStrategy.START_QUICK;
							break;
						case EnumPlayStrategy.M3U8_SMOOTH.getFlagVal():
							strategy = EnumPlayStrategy.M3U8_SMOOTH;
							break;
						case EnumPlayStrategy.DEFAULT.getFlagVal():
						default:
							strategy = EnumPlayStrategy.DEFAULT;
							break;
					}
					this.playerView?.setFlowStrategy(strategy);
				},
				immediate: false
			},
			"header": {
				handler(newValue : UTSJSONObject, oldValue : UTSJSONObject) {
DCloud-yyl's avatar
DCloud-yyl 已提交
386 387 388 389 390
					const newHeader = JSON.stringify(newValue);
					const oldHeader = JSON.stringify(oldValue);
					this.playerView?.setHeader(newHeader);
					if (newHeader != oldHeader) { // 切换header
						this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
391
						this.playerView?.switchVideoPath(this.getSrcPath(this.src)); // 需要重新加载
DCloud-yyl's avatar
DCloud-yyl 已提交
392
						this.reload(true);
393 394 395 396 397
					}
				},
				immediate: false
			}
		},
DCloud-yyl's avatar
DCloud-yyl 已提交
398 399
		NVLoad() : IjkPlayerView {
			return new IjkPlayerView(this.$androidContext!);
400 401
		},
		NVLoaded() {
DCloud-yyl's avatar
DCloud-yyl 已提交
402
			this.playerView = this.$el;
403
			this.playerView?.init();
DCloud-yyl's avatar
DCloud-yyl 已提交
404 405
			this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this));
			this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this));
406
			this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this));
DCloud-yyl's avatar
DCloud-yyl 已提交
407
			this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this));
DCloud-yyl's avatar
DCloud-yyl 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
			this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this));
			this.playerView?.setOnHierarchyChangeListener(new OnHierarchyChangeListenerImpl(this));
			this.playerView?.setOnKeyListener(new OnKeyListenerImpl(this));
			this.playerView?.setFocusable(true);
			this.playerView?.setFocusableInTouchMode(true);
		},
		NVLayouted() {
			if (!this.isFirstLayoutFinished) {
				this.isFirstLayoutFinished = true;
				this.playerView?.setPlayerRootView(this.$el!.getParent() as ViewGroup);
				this.layoutWidth = this.getLayoutWidth();
				this.layoutHeight = this.getLayoutHeight();
				const metrics = new DisplayMetrics();
				(this.$androidContext!.getSystemService(Context.WINDOW_SERVICE) as WindowManager).getDefaultDisplay().getRealMetrics(metrics);
				this.screenWidth = metrics.widthPixels;
				this.screenHeight = metrics.heightPixels;
				// 调整子组件视图层级
				this.videoBox = this.playerView?.findViewWithTag<FrameLayout>("fl_video_box");
				(this.playerView as IjkPlayerView).removeView(this.videoBox);
				(this.playerView as IjkPlayerView).addView(this.videoBox, 0);
			}
			if (isFullScreenChanged) {
				isFullScreenChanged = false;
				if (this.playerView!.isFullscreen()) {
					this.playerView?.requestFocus();
					if (this.getLayoutWidth() != this.screenHeight) this.setStyleWidth(this.screenHeight.toFloat());
					if (this.getLayoutHeight() != this.screenWidth) this.setStyleHeight(this.screenWidth.toFloat());
				} else {
					this.playerView?.clearFocus();
					if (this.getLayoutWidth() != this.layoutWidth) this.setStyleWidth(this.layoutWidth.toFloat());
					if (this.getLayoutHeight() != this.layoutHeight) this.setStyleHeight(this.layoutHeight.toFloat());
				}
			}
441 442
		},
		NVUnloaded() { // 资源回收
DCloud-yyl's avatar
DCloud-yyl 已提交
443 444 445 446
			if (this.$el != null) { // 如果组件绑定了视图则需要在组件销毁时释放视图相关资源
				this.playerView?.onDestroy();
				this.playerView = null;
			}
DCloud-yyl's avatar
DCloud-yyl 已提交
447 448 449 450
			if (!this.copyPath.isEmpty()) {
				const file = new File(this.copyPath);
				if (file.exists()) file.delete();
			}
DCloud-yyl's avatar
DCloud-yyl 已提交
451 452
		},
		NVRecycler() {
DCloud-yyl's avatar
DCloud-yyl 已提交
453
			this.playerView = this.$el;
DCloud-yyl's avatar
DCloud-yyl 已提交
454 455 456 457 458 459
			this.playerView?.reset();
			this.resetListener();
			if (this.currentPos > 0) {
				this.runDelayed(() => {
					this.playerView?.hidePoster();
					this.playerView?.showLastFrame(this.currentFrame);
DCloud-yyl's avatar
DCloud-yyl 已提交
460
					this.playerView?.seekTo(this.currentPos.toInt());
DCloud-yyl's avatar
DCloud-yyl 已提交
461 462
				}, 100);
			}
463
		},
DCloud-yyl's avatar
DCloud-yyl 已提交
464
		expose: ['play', 'pause', 'seek', 'requestFullScreen', 'exitFullScreen', 'stop', 'hide', 'show', 'close', 'sendDanmu', 'playbackRate', 'currentPos', 'currentFrame', 'isEnded', 'isFirstLayoutFinished', 'isFullScreenChanged', 'videoBox'],
465 466 467 468 469
		methods: {
			/**
			 * 播放视频
			 */
			play: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
470
				this.runOnMain(function () {
471 472 473 474 475 476 477
					this.playerView?.start();
				});
			},
			/**
			 * 暂停视频
			 */
			pause: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
478
				this.runOnMain(function () {
479 480 481 482 483 484 485 486
					this.playerView?.pause();
				});
			},
			/**
			 * 跳转到指定位置
			 * @param pos 跳转到的位置,单位:秒(s)
			 */
			seek: function (pos : number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
487
				this.playerView?.seekTo(pos.toInt() * 1000);
488 489 490 491 492 493
			},
			/**
			 * 切换到全屏
			 * @param direction 视频方向,0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
			 */
			requestFullScreen: function (options : RequestFullScreenOptions | null) {
DCloud-yyl's avatar
DCloud-yyl 已提交
494
				this.runOnMain(function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
495
					let direction = -1;
496
					if (options != null) {
DCloud-yyl's avatar
DCloud-yyl 已提交
497
						direction = options.direction ?? -1;
498
					}
DCloud-yyl's avatar
DCloud-yyl 已提交
499
					this.playerView?.fullScreen(direction.toInt());
500 501 502 503 504 505
				});
			},
			/**
			 * 退出全屏
			 */
			exitFullScreen: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
506
				this.runOnMain(function () {
507 508 509 510 511 512 513
					this.playerView?.exitFullScreen();
				});
			},
			/**
			 * 停止播放视频
			 */
			stop: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
514 515 516 517 518 519
				this.runOnMain(() => {
					this.playerView?.reset();
					this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
					this.reload(false);
					this.currentPos = 0;
					this.currentFrame = null;
520 521 522 523 524 525
				});
			},
			/** 
			 * 隐藏视频播放控件
			 */
			hide: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
526
				this.runOnMain(function () {
527 528 529 530 531 532 533
					this.$el?.setVisibility(View.INVISIBLE);
				});
			},
			/**
			 * 显示视频播放控件
			 */
			show: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
534
				this.runOnMain(function () {
535 536 537 538 539 540 541
					this.$el?.setVisibility(View.VISIBLE);
				});
			},
			/**
			 * 关闭视频播放控件
			 */
			close: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
542
				this.runOnMain(function () {
543 544 545 546 547 548 549 550 551 552
					this.playerView?.stop();
					this.playerView?.onDestroy();
					this.playerView = null;
				});
			},
			/**
			 * 发送弹幕
			 * @param data 弹幕数据
			 */
			sendDanmu: function (danmu : Danmu) {
DCloud-yyl's avatar
DCloud-yyl 已提交
553
				this.runOnMain(function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
554 555 556 557
					if (!this.enableDanmu) {
						console.error('sendDanmu is disabled, set enable-danmu true first!');
						return;
					}
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
					const data = new JSONObject();
					data.put('text', danmu.text);
					data.put('color', danmu.color);
					this.playerView?.sendDanmaku(data, true);
				});
			},
			/**
			 * 设置倍速播放
			 * @param rate 播放的倍率
			 */
			playbackRate: function (rate : number) {
				this.playerView?.playbackRate(rate.toString());
			},
			/**
			 * 内部函数
DCloud-yyl's avatar
DCloud-yyl 已提交
573 574
			 * 重新加载
			 * @param autoplay autoplay属性是否生效 切换src、header生效 stop不生效
575
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
576 577
			reload: function (autoplay : boolean) {
				this.runOnMain(function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
578 579
					this.playerView?.setDuration(this.duration.toInt() * 1000);
					this.playerView?.seekTo(this.initialTime.toInt() * 1000);
580 581
					this.playerView?.setMutePlayer(this.playerView?.isMutePlayer() == true);
					this.playerView?.clearDanma();
DCloud-yyl's avatar
DCloud-yyl 已提交
582 583
					this.playerView?.enableDanmaku(this.enableDanmu);
					if (autoplay && this.autoplay) this.playerView?.start();
584 585 586 587 588 589 590
				});
			},
			/**
			 * 内部函数
			 * 获取资源路径
			 */
			getSrcPath: function (src : string) : string {
DCloud-yyl's avatar
DCloud-yyl 已提交
591
				if (src.startsWith("https://") || src.startsWith("http://") || src.startsWith("rtmp://") || src.startsWith("rtsp://")) { // 网络地址
592 593
					return src;
				} else { // 本地地址
DCloud-yyl's avatar
DCloud-yyl 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
					const path = UTSAndroid.convert2AbsFullPath(src);
					if (path.startsWith('/android_asset')) {
						const destDirPath = UTSAndroid.getAppContext()!.getCacheDir().getAbsolutePath() + '/uni-net-cache/video/';
						const destDir = new File(destDirPath);
						if (!destDir.exists()) destDir.mkdirs();
						const destFilePath = destDirPath + path.substring(path.lastIndexOf('/') + 1);
						const destFile = new File(destFilePath);
						if (!destFile.exists()) {
							destFile.createNewFile();
							uni.getFileSystemManager().copyFileSync(src, destFilePath);
						}
						this.copyPath = destFilePath;
						return destFilePath;
					}
					return path;
609 610 611 612
				}
			},
			/**
			 * 内部函数
DCloud-yyl's avatar
DCloud-yyl 已提交
613
			 * runnable切换到主线程执行
614
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
			runOnMain: function (runnable : () => void) {
				this.handler.post(new RunnableImpl(runnable));
			},
			/**
			 * 内部函数
			 * runnable延迟执行
			 */
			runDelayed: function (runnable : () => void, delay : Long) {
				this.handler.postDelayed(new RunnableImpl(runnable), delay);
			},
			/**
			 * 内部函数
			 * 重置监听,复用时调用
			 */
			resetListener: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
630 631
				this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this));
				this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this));
DCloud-yyl's avatar
DCloud-yyl 已提交
632 633
				this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this));
				this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this));
DCloud-yyl's avatar
DCloud-yyl 已提交
634 635 636
				this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this));
				this.playerView?.setOnHierarchyChangeListener(new OnHierarchyChangeListenerImpl(this));
				this.playerView?.setOnKeyListener(new OnKeyListenerImpl(this));
637 638 639 640
			}
		}
	}

DCloud-yyl's avatar
DCloud-yyl 已提交
641
	class RunnableImpl implements Runnable {
642 643 644 645 646 647 648 649 650 651 652 653 654 655

		private runnable : (() => void) | null;

		constructor(runnable : (() => void) | null) {
			this.runnable = runnable;
		}

		override run() : void {
			this.runnable?.invoke();
		}
	}

	class OnPlayerChangedListenerImpl implements OnPlayerChangedListener {

DCloud-yyl's avatar
DCloud-yyl 已提交
656
		private comp : UTSContainer<IjkPlayerView>;
DCloud-yyl's avatar
DCloud-yyl 已提交
657
		private playerView : IjkPlayerView;
658

DCloud-yyl's avatar
DCloud-yyl 已提交
659
		constructor(comp : UTSContainer<IjkPlayerView>) {
660 661
			super();
			this.comp = comp;
DCloud-yyl's avatar
DCloud-yyl 已提交
662
			this.playerView = comp.$el!;
663 664 665
		}

		override onChanged(type : String, msg : String) : void {
DCloud-yyl's avatar
DCloud-yyl 已提交
666 667 668 669 670
			switch (type) {
				case "timeupdate":
					this.comp.$emit("timeupdate", new UniVideoTimeUpdateEventImpl(JSON.parse<UniVideoTimeUpdateEventDetail>(msg)!));
					break;
				case "fullscreenchange":
DCloud-yyl's avatar
DCloud-yyl 已提交
671
					(this.comp as VideoComponent).isFullScreenChanged = true;
DCloud-yyl's avatar
DCloud-yyl 已提交
672 673 674 675 676
					const detail = JSON.parse<UniVideoFullScreenChangeEventDetail>(msg)!;
					if (detail.fullScreen) { // 进入全屏时取消监听,避免触发暂停逻辑
						this.playerView.setOnTextureRenderViewListener(null);
					} else { // 退出全屏时重新监听
						setTimeout(() => {
DCloud-yyl's avatar
DCloud-yyl 已提交
677
							this.playerView.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this.comp));
DCloud-yyl's avatar
DCloud-yyl 已提交
678 679 680 681 682 683 684 685
						}, 100);
					}
					this.comp.$emit("fullscreenchange", new UniVideoFullScreenChangeEventImpl(detail));
					break;
				case "fullscreenclick":
					this.comp.$emit("fullscreenclick", new UniVideoFullScreenClickEventImpl(JSON.parse<UniVideoFullScreenClickEventDetail>(msg)!));
					break;
				case "controlstoggle":
DCloud-yyl's avatar
DCloud-yyl 已提交
686 687 688 689 690 691 692
					const detail = JSON.parse<UniVideoControlsToggleEventDetail>(msg)!;
					if (detail.show && this.playerView.isFullscreen()) {
						setTimeout(() => {
							if (!this.playerView.isFocused()) this.playerView.requestFocus();
						}, 100);
					}
					this.comp.$emit("controlstoggle", new UniVideoControlsToggleEventImpl(detail));
DCloud-yyl's avatar
DCloud-yyl 已提交
693 694 695 696 697
					break;
				case "error":
					this.comp.$emit("error", new UniVideoErrorEventImpl(new VideoErrorImpl(100001)));
					break;
			}
698 699 700 701 702
		}
	}

	class OnInfoListenerImpl implements OnInfoListener {

DCloud-yyl's avatar
DCloud-yyl 已提交
703
		private comp : UTSContainer<IjkPlayerView>;
704 705
		private playerView : IjkPlayerView;

DCloud-yyl's avatar
DCloud-yyl 已提交
706
		constructor(comp : UTSContainer<IjkPlayerView>) {
707 708
			super();
			this.comp = comp;
DCloud-yyl's avatar
DCloud-yyl 已提交
709
			this.playerView = comp.$el!;
710 711 712 713 714
		}

		override onInfo(iMediaPlayer : IMediaPlayer | null, status : Int, extra : Int) : boolean {
			switch (status) {
				case MediaPlayerParams.STATE_COMPLETED:
DCloud-yyl's avatar
DCloud-yyl 已提交
715
					this.comp.$emit("ended", new UniEvent("ended"));
DCloud-yyl's avatar
DCloud-yyl 已提交
716
					(this.comp as VideoComponent).isEnded = true;
DCloud-yyl's avatar
DCloud-yyl 已提交
717
					if ((this.comp as VideoComponent).loop) {
DCloud-yyl's avatar
DCloud-yyl 已提交
718 719
						let initialTime = (this.comp as VideoComponent).initialTime;
						if (initialTime > 0) this.playerView.seekTo(initialTime.toInt() * 1000);
720
						this.playerView.start();
DCloud-yyl's avatar
DCloud-yyl 已提交
721
						(this.comp as VideoComponent).isEnded = false;
722 723 724
					}
					break;
				case MediaPlayerParams.STATE_PLAYING:
DCloud-yyl's avatar
DCloud-yyl 已提交
725
					this.comp.$emit("play", new UniEvent("play"));
DCloud-yyl's avatar
DCloud-yyl 已提交
726 727 728 729 730 731 732
					setTimeout(() => {
						if ((this.comp as VideoComponent).isEnded) {
							let initialTime = (this.comp as VideoComponent).initialTime;
							if (initialTime > 0) this.playerView.seekTo(initialTime.toInt() * 1000);
							(this.comp as VideoComponent).isEnded = false;
						}
					}, 100);
733 734
					break;
				case MediaPlayerParams.STATE_PAUSED:
DCloud-yyl's avatar
DCloud-yyl 已提交
735
					this.comp.$emit("pause", new UniEvent("pause"));
736 737
					break;
				case MediaPlayerParams.STATE_PREPARING:
DCloud-yyl's avatar
DCloud-yyl 已提交
738 739
				case IMediaPlayer.MEDIA_INFO_BUFFERING_START: // 开始缓冲
					this.comp.$emit("waiting", new UniEvent("waiting"));
740 741
					break;
				case MediaPlayerParams.STATE_SEEKCOMPLETE:
DCloud-yyl's avatar
DCloud-yyl 已提交
742
					// TODO
743 744 745 746 747 748 749 750
					break;
			}
			return false;
		}
	}

	class OnBufferingUpdateListenerImpl implements OnBufferingUpdateListener {

DCloud-yyl's avatar
DCloud-yyl 已提交
751
		private comp : UTSContainer<IjkPlayerView>;
752

DCloud-yyl's avatar
DCloud-yyl 已提交
753
		constructor(comp : UTSContainer<IjkPlayerView>) {
754 755 756 757
			super();
			this.comp = comp;
		}

DCloud-yyl's avatar
DCloud-yyl 已提交
758 759 760 761 762 763 764 765 766 767
		override onBufferingUpdate(iMediaPlayer : IMediaPlayer | null, i : Int) : void {
			const detail : UniVideoProgressEventDetail = {
				buffered: i
			};
			this.comp.$emit("progress", new UniVideoProgressEventImpl(detail));
		}
	}

	class OnErrorListenerImpl implements OnErrorListener {

DCloud-yyl's avatar
DCloud-yyl 已提交
768
		private comp : UTSContainer<IjkPlayerView>;
DCloud-yyl's avatar
DCloud-yyl 已提交
769

DCloud-yyl's avatar
DCloud-yyl 已提交
770
		constructor(comp : UTSContainer<IjkPlayerView>) {
DCloud-yyl's avatar
DCloud-yyl 已提交
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
			super();
			this.comp = comp;
		}

		override onError(iMediaPlayer : IMediaPlayer | null, what : Int, extra : Int) : Boolean {
			if (what == MediaPlayer.MEDIA_ERROR_UNKNOWN) {
				this.comp.$emit("error", new UniVideoErrorEventImpl(new VideoErrorImpl(200001)));
			} else {
				this.comp.$emit("error", new UniVideoErrorEventImpl(new VideoErrorImpl(300001, new SourceError(what + '-' + extra))));
			}
			return true;
		}
	}

	class OnTextureRenderViewListenerImpl implements OnTextureRenderViewListener {

DCloud-yyl's avatar
DCloud-yyl 已提交
787
		private comp : UTSContainer<IjkPlayerView>;
DCloud-yyl's avatar
DCloud-yyl 已提交
788 789
		private playerView : IjkPlayerView;

DCloud-yyl's avatar
DCloud-yyl 已提交
790
		constructor(comp : UTSContainer<IjkPlayerView>) {
DCloud-yyl's avatar
DCloud-yyl 已提交
791 792
			super();
			this.comp = comp;
DCloud-yyl's avatar
DCloud-yyl 已提交
793
			this.playerView = comp.$el!;
DCloud-yyl's avatar
DCloud-yyl 已提交
794 795 796 797 798 799 800
		}

		override onDetachedFromWindow() : void {
			if (this.playerView.isPlaying()) {
				this.playerView.pause();
				this.playerView.setCenterPlayBntVisibility((this.comp as VideoComponent).showCenterPlayBtn);
				(this.comp as VideoComponent).currentPos = this.playerView.getCurPosition();
DCloud-yyl's avatar
DCloud-yyl 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
				const frame = this.playerView.captureFrame();
				(this.comp as VideoComponent).currentFrame = frame;
				this.playerView.showLastFrame(frame);
			}
		}
	}

	class OnHierarchyChangeListenerImpl implements OnHierarchyChangeListener {

		private comp : UTSContainer<IjkPlayerView>;
		private playerView : IjkPlayerView;

		constructor(comp : UTSContainer<IjkPlayerView>) {
			super();
			this.comp = comp;
			this.playerView = comp.$el!;
		}

		override onChildViewAdded(parent : View, child : View) : void {
			// 处理子组件动态添加的情况
			if ((this.comp as VideoComponent).isFirstLayoutFinished) {
				if (this.playerView.indexOfChild((this.comp as VideoComponent).videoBox) != 0) {
					this.playerView.removeView((this.comp as VideoComponent).videoBox);
					this.playerView.addView((this.comp as VideoComponent).videoBox, 0);
				}
			}
		}

		override onChildViewRemoved(parent : View, child : View) : void {

		}
	}

	class OnKeyListenerImpl implements OnKeyListener {

		private comp : UTSContainer<IjkPlayerView>;
		private playerView : IjkPlayerView;

		constructor(comp : UTSContainer<IjkPlayerView>) {
			super();
			this.comp = comp;
			this.playerView = comp.$el!;
		}

		override onKey(v : View, keyCode : Int, event : KeyEvent) : Boolean {
			if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
				if (this.playerView.isFullscreen()) {
					(this.comp as VideoComponent).exitFullScreen();
					return true;
				}
DCloud-yyl's avatar
DCloud-yyl 已提交
851
			}
DCloud-yyl's avatar
DCloud-yyl 已提交
852
			return false;
853 854 855
		}
	}
</script>