index.vue 22.9 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 21 22 23

	import FrameLayout from 'android.widget.FrameLayout';
	import ViewGroup from 'android.view.ViewGroup';
	import View from 'android.view.View';
	import TextUtils from 'android.text.TextUtils';
	import JSONObject from 'org.json.JSONObject';
DCloud-yyl's avatar
DCloud-yyl 已提交
24 25 26 27
	import MediaPlayer from "android.media.MediaPlayer";
	import Bitmap from 'android.graphics.Bitmap';
	import Handler from 'android.os.Handler';
	import Looper from 'android.os.Looper';
28 29 30 31

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

	import { Danmu, RequestFullScreenOptions } from '../interface.uts';
DCloud-yyl's avatar
DCloud-yyl 已提交
32 33 34
	import { UniVideoTimeUpdateEventDetail, UniVideoFullScreenChangeEventDetail, UniVideoProgressEventDetail, UniVideoFullScreenClickEventDetail, UniVideoControlsToggleEventDetail } from '../interface.uts';
	import { UniVideoTimeUpdateEventImpl, UniVideoFullScreenChangeEventImpl, UniVideoErrorEventImpl, UniVideoProgressEventImpl, UniVideoFullScreenClickEventImpl, UniVideoControlsToggleEventImpl } from './event.uts';
	import { VideoErrorImpl } from '../unierror.uts';
35 36

	export default {
DCloud-yyl's avatar
DCloud-yyl 已提交
37
		name: "video",
38 39 40
		data() {
			return {
				rootView: null as FrameLayout | null,
DCloud-yyl's avatar
DCloud-yyl 已提交
41 42 43 44
				playerView: null as IjkPlayerView | null,
				currentPos: 0,
				currentFrame: null as Bitmap | null,
				handler: new Handler(Looper.getMainLooper())
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 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
			};
		},
		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 已提交
95
				default: -1
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 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
			},
			"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 已提交
171 172 173
						this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
						this.playerView?.switchVideoPath(path);
						this.reload(true);
174 175 176 177 178 179 180 181 182 183
					} else { // 初始化资源
						this.playerView?.setVideoPath(path);
					}
				},
				immediate: false
			},
			"autoplay": {
				handler(value : boolean) {
					// 临时方案
					setTimeout(() => { // 运行在非主线程中
DCloud-yyl's avatar
DCloud-yyl 已提交
184
						this.runOnMain(function () {
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 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 265 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
							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) {
					if (value > 0) this.playerView?.seekTo(value as Int * 1000);
				},
				immediate: false
			},
			"duration": {
				handler(value : number) {
					if (value > 0) this.playerView?.setDuration(value as Int * 1000);
				},
				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) {
					this.playerView?.setDirection(value as Int);
				},
				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 已提交
370 371 372 373 374
					const newHeader = JSON.stringify(newValue);
					const oldHeader = JSON.stringify(oldValue);
					this.playerView?.setHeader(newHeader);
					if (newHeader != oldHeader) { // 切换header
						this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
375
						this.playerView?.switchVideoPath(this.getSrcPath(this.src)); // 需要重新加载
DCloud-yyl's avatar
DCloud-yyl 已提交
376
						this.reload(true);
377 378 379 380 381 382 383 384 385 386 387 388 389 390
					}
				},
				immediate: false
			}
		},
		NVLoad() : FrameLayout {
			this.rootView = new FrameLayout(this.$androidContext!);
			this.playerView = new IjkPlayerView(this.$androidContext);
			this.rootView?.addView(this.playerView, new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
			return this.rootView!;
		},
		NVLoaded() {
			this.playerView?.init();
			this.playerView?.setPlayerRootView(this.$el);
DCloud-yyl's avatar
DCloud-yyl 已提交
391
			this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this, this.playerView!));
392 393
			this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this, this.playerView!));
			this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this));
DCloud-yyl's avatar
DCloud-yyl 已提交
394 395
			this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this));
			this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this, this.playerView!));
396 397
		},
		NVUnloaded() { // 资源回收
DCloud-yyl's avatar
DCloud-yyl 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
			if (this.$el != null) { // 如果组件绑定了视图则需要在组件销毁时释放视图相关资源
				this.playerView?.onDestroy();
				this.playerView = null;
			}
		},
		NVRecycler() {
			this.playerView = this.$el?.getChildAt(0) as IjkPlayerView;
			this.playerView?.reset();
			this.resetListener();
			if (this.currentPos > 0) {
				this.runDelayed(() => {
					this.playerView?.hidePoster();
					this.playerView?.showLastFrame(this.currentFrame);
					this.playerView?.seekTo(this.currentPos as Int);
				}, 100);
			}
414
		},
DCloud-yyl's avatar
DCloud-yyl 已提交
415
		expose: ['play', 'pause', 'seek', 'requestFullScreen', 'exitFullScreen', 'stop', 'hide', 'show', 'close', 'sendDanmu', 'playbackRate', 'currentPos', 'currentFrame'],
416 417 418 419 420
		methods: {
			/**
			 * 播放视频
			 */
			play: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
421
				this.runOnMain(function () {
422 423 424 425 426 427 428
					this.playerView?.start();
				});
			},
			/**
			 * 暂停视频
			 */
			pause: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
429
				this.runOnMain(function () {
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
					this.playerView?.pause();
				});
			},
			/**
			 * 跳转到指定位置
			 * @param pos 跳转到的位置,单位:秒(s)
			 */
			seek: function (pos : number) {
				this.playerView?.seekTo((pos as Int) * 1000);
			},
			/**
			 * 切换到全屏
			 * @param direction 视频方向,0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
			 */
			requestFullScreen: function (options : RequestFullScreenOptions | null) {
DCloud-yyl's avatar
DCloud-yyl 已提交
445
				this.runOnMain(function () {
446 447 448 449 450 451 452 453 454 455 456
					let direction = -90;
					if (options != null) {
						direction = options.direction as Int;
					}
					this.playerView?.fullScreen(direction as Int);
				});
			},
			/**
			 * 退出全屏
			 */
			exitFullScreen: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
457
				this.runOnMain(function () {
458 459 460 461 462 463 464
					this.playerView?.exitFullScreen();
				});
			},
			/**
			 * 停止播放视频
			 */
			stop: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
465 466 467 468 469 470
				this.runOnMain(() => {
					this.playerView?.reset();
					this.playerView?.setCenterPlayBntVisibility(this.showCenterPlayBtn);
					this.reload(false);
					this.currentPos = 0;
					this.currentFrame = null;
471 472 473 474 475 476
				});
			},
			/** 
			 * 隐藏视频播放控件
			 */
			hide: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
477
				this.runOnMain(function () {
478 479 480 481 482 483 484
					this.$el?.setVisibility(View.INVISIBLE);
				});
			},
			/**
			 * 显示视频播放控件
			 */
			show: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
485
				this.runOnMain(function () {
486 487 488 489 490 491 492
					this.$el?.setVisibility(View.VISIBLE);
				});
			},
			/**
			 * 关闭视频播放控件
			 */
			close: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
493
				this.runOnMain(function () {
494 495 496 497 498 499 500 501 502 503
					this.playerView?.stop();
					this.playerView?.onDestroy();
					this.playerView = null;
				});
			},
			/**
			 * 发送弹幕
			 * @param data 弹幕数据
			 */
			sendDanmu: function (danmu : Danmu) {
DCloud-yyl's avatar
DCloud-yyl 已提交
504
				this.runOnMain(function () {
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
					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 已提交
520 521
			 * 重新加载
			 * @param autoplay autoplay属性是否生效 切换src、header生效 stop不生效
522
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
523 524
			reload: function (autoplay : boolean) {
				this.runOnMain(function () {
525 526 527 528
					this.playerView?.setDuration(this.duration as Int * 1000);
					this.playerView?.seekTo(this.initialTime as Int * 1000);
					this.playerView?.setMutePlayer(this.playerView?.isMutePlayer() == true);
					this.playerView?.clearDanma();
DCloud-yyl's avatar
DCloud-yyl 已提交
529 530
					this.playerView?.enableDanmaku(this.enableDanmu);
					if (autoplay && this.autoplay) this.playerView?.start();
531 532 533 534 535 536 537
				});
			},
			/**
			 * 内部函数
			 * 获取资源路径
			 */
			getSrcPath: function (src : string) : string {
DCloud-yyl's avatar
DCloud-yyl 已提交
538
				if (src.startsWith("https://") || src.startsWith("http://") || src.startsWith("rtmp://") || src.startsWith("rtsp://")) { // 网络地址
539 540
					return src;
				} else { // 本地地址
DCloud-yyl's avatar
DCloud-yyl 已提交
541
					return UTSAndroid.convert2AbsFullPath(src);
542 543 544 545
				}
			},
			/**
			 * 内部函数
DCloud-yyl's avatar
DCloud-yyl 已提交
546
			 * runnable切换到主线程执行
547
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
			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 () {
				this.playerView?.setOnPlayerChangedListener(new OnPlayerChangedListenerImpl(this, this.playerView!));
				this.playerView?.setOnInfoListener(new OnInfoListenerImpl(this, this.playerView!));
				this.playerView?.setOnBufferingUpdateListener(new OnBufferingUpdateListenerImpl(this));
				this.playerView?.setOnErrorListener(new OnErrorListenerImpl(this));
				this.playerView?.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this, this.playerView!));
568 569 570 571
			}
		}
	}

DCloud-yyl's avatar
DCloud-yyl 已提交
572
	class RunnableImpl implements Runnable {
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587

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

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

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

	class OnPlayerChangedListenerImpl implements OnPlayerChangedListener {

		private comp : UTSContainer<FrameLayout>;
DCloud-yyl's avatar
DCloud-yyl 已提交
588
		private playerView : IjkPlayerView;
589

DCloud-yyl's avatar
DCloud-yyl 已提交
590
		constructor(comp : UTSContainer<FrameLayout>, playerView : IjkPlayerView) {
591 592
			super();
			this.comp = comp;
DCloud-yyl's avatar
DCloud-yyl 已提交
593
			this.playerView = playerView;
594 595 596
		}

		override onChanged(type : String, msg : String) : void {
DCloud-yyl's avatar
DCloud-yyl 已提交
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
			switch (type) {
				case "timeupdate":
					this.comp.$emit("timeupdate", new UniVideoTimeUpdateEventImpl(JSON.parse<UniVideoTimeUpdateEventDetail>(msg)!));
					break;
				case "fullscreenchange":
					const detail = JSON.parse<UniVideoFullScreenChangeEventDetail>(msg)!;
					if (detail.fullScreen) { // 进入全屏时取消监听,避免触发暂停逻辑
						this.playerView.setOnTextureRenderViewListener(null);
					} else { // 退出全屏时重新监听
						setTimeout(() => {
							this.playerView.setOnTextureRenderViewListener(new OnTextureRenderViewListenerImpl(this.comp, this.playerView));
						}, 100);
					}
					this.comp.$emit("fullscreenchange", new UniVideoFullScreenChangeEventImpl(detail));
					break;
				case "fullscreenclick":
					this.comp.$emit("fullscreenclick", new UniVideoFullScreenClickEventImpl(JSON.parse<UniVideoFullScreenClickEventDetail>(msg)!));
					break;
				case "controlstoggle":
					this.comp.$emit("controlstoggle", new UniVideoControlsToggleEventImpl(JSON.parse<UniVideoControlsToggleEventDetail>(msg)!));
					break;
				case "error":
					this.comp.$emit("error", new UniVideoErrorEventImpl(new VideoErrorImpl(100001)));
					break;
			}
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
			// if (type == "fullscreenchange") {
			// 	if (playerView?.isFullscreen() == true) {
			// 		let container = rootView?.getChildAt(1);
			// 		if (container == null) return;
			// 		setTimeout(() => {
			// 			rootView?.removeView(container);
			// 			playerView?.addView(container);
			// 			container?.bringToFront();
			// 		}, 100);
			// 	} else {
			// 		let container = playerView?.getChildAt(1);
			// 		if (container == null) return;
			// 		setTimeout(() => {
			// 			playerView?.removeView(container);
			// 			rootView?.addView(container);
			// 			container?.bringToFront();
			// 		}, 100);
			// 	}
			// }
		}
	}

	class OnInfoListenerImpl implements OnInfoListener {

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

		constructor(comp : UTSContainer<FrameLayout>, playerView : IjkPlayerView) {
			super();
			this.comp = comp;
			this.playerView = playerView;
		}

		override onInfo(iMediaPlayer : IMediaPlayer | null, status : Int, extra : Int) : boolean {
			switch (status) {
				case MediaPlayerParams.STATE_COMPLETED:
DCloud-yyl's avatar
DCloud-yyl 已提交
658 659 660
					this.comp.$emit("ended", new UniEvent("ended"));
					if ((this.comp as VideoComponent).loop) {
						let initialTime = (this.comp as VideoComponent).initialTime as Int;
661 662 663 664 665
						if (initialTime > 0) this.playerView.seekTo(initialTime * 1000);
						this.playerView.start();
					}
					break;
				case MediaPlayerParams.STATE_PLAYING:
DCloud-yyl's avatar
DCloud-yyl 已提交
666
					this.comp.$emit("play", new UniEvent("play"));
667 668
					break;
				case MediaPlayerParams.STATE_PAUSED:
DCloud-yyl's avatar
DCloud-yyl 已提交
669
					this.comp.$emit("pause", new UniEvent("pause"));
670 671
					break;
				case MediaPlayerParams.STATE_PREPARING:
DCloud-yyl's avatar
DCloud-yyl 已提交
672 673
				case IMediaPlayer.MEDIA_INFO_BUFFERING_START: // 开始缓冲
					this.comp.$emit("waiting", new UniEvent("waiting"));
674 675
					break;
				case MediaPlayerParams.STATE_SEEKCOMPLETE:
DCloud-yyl's avatar
DCloud-yyl 已提交
676
					// TODO
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
					break;
			}
			return false;
		}
	}

	class OnBufferingUpdateListenerImpl implements OnBufferingUpdateListener {

		private comp : UTSContainer<FrameLayout>;

		constructor(comp : UTSContainer<FrameLayout>) {
			super();
			this.comp = comp;
		}

DCloud-yyl's avatar
DCloud-yyl 已提交
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
		override onBufferingUpdate(iMediaPlayer : IMediaPlayer | null, i : Int) : void {
			const detail : UniVideoProgressEventDetail = {
				buffered: i
			};
			this.comp.$emit("progress", new UniVideoProgressEventImpl(detail));
		}
	}

	class OnErrorListenerImpl implements OnErrorListener {

		private comp : UTSContainer<FrameLayout>;

		constructor(comp : UTSContainer<FrameLayout>) {
			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 {

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

		constructor(comp : UTSContainer<FrameLayout>, playerView : IjkPlayerView) {
			super();
			this.comp = comp;
			this.playerView = playerView;
		}

		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();
				(this.comp as VideoComponent).currentFrame?.recycle();
				(this.comp as VideoComponent).currentFrame = this.playerView.captureFrame();
			}
738 739 740
		}
	}
</script>