index.vue 16.5 KB
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6 7
<template>
	<view style="width: 300px;height: 225px;">
		<slot />
	</view>
</template>
<script lang="uts">
	import { UniVideoPlayerConfig, UniVideoPlayerViewPresent } from "DCUniVideo"  assert { type: "implementationOnly" };
DCloud-yyl's avatar
DCloud-yyl 已提交
8 9 10 11 12 13
	import { URL, NSDictionary, CGFloat } from "Foundation";
	import { UIImage, UIInterfaceOrientationMask, UIInterfaceOrientation, UIView, UIScreen, CGRect } from 'UIKit';
	import { Bool, Int } from 'Swift';
	import { Danmu } from "../interface.uts";
	import { UniCssFlexEdge } from "DCloudUniappRuntime";

DCloud-yyl's avatar
DCloud-yyl 已提交
14
	export default {
DCloud-yyl's avatar
DCloud-yyl 已提交
15 16 17 18 19 20
		name: "video",
		data() {
			return {
				present: null as UniVideoPlayerViewPresent | null,
				delegate: null as DCloudUniVideoComponentDelegate | null,
			};
DCloud-yyl's avatar
DCloud-yyl 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 95 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
		},
		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 as NSDictionary[],
				default: []
			},
			"danmuBtn": { // 是否显示弹幕按钮,只在初始化时有效,不能动态变更
				type: Boolean,
				default: false
			},
			"enableDanmu": { // 是否展示弹幕,只在初始化时有效,不能动态变更
				type: Boolean,
				default: false
			},
			"pageGesture": { // 在非全屏模式下,是否开启亮度与音量调节手势
				type: Boolean,
				default: false
			},
			"direction": { // 设置全屏时视频的方向,不指定则根据宽高比自动判断。有效值为 0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
				type: Number,
				default: -90
			},
			"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
DCloud-yyl's avatar
DCloud-yyl 已提交
123 124 125 126 127 128 129 130 131 132 133 134
			},
			"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
DCloud-yyl's avatar
DCloud-yyl 已提交
135 136 137 138 139 140 141 142
			},
			"header": { // HTTP 请求 Header
				type: Map<string, string>,
				default: new Map<string, string>()
			},
		},
		watch: {
			"src": {
DCloud-yyl's avatar
DCloud-yyl 已提交
143
				handler(newValue : String, oldValue : String) {
DCloud-yyl's avatar
DCloud-yyl 已提交
144 145 146 147 148 149
					"[weak self]"
					this?.updateProp("src", newValue);
				},
				immediate: false
			},
			"autoplay": {
DCloud-yyl's avatar
DCloud-yyl 已提交
150 151
				handler(newValue : Boolean, oldValue : Boolean) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
152 153 154 155 156
					this?.updateProp("autoplay", newValue);
				},
				immediate: false
			},
			"loop": {
DCloud-yyl's avatar
DCloud-yyl 已提交
157
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
158 159 160 161 162 163
					"[weak self]"
					this?.updateProp("loop", newValue);
				},
				immediate: false
			},
			"muted": {
DCloud-yyl's avatar
DCloud-yyl 已提交
164
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
165 166 167 168 169 170
					"[weak self]"
					this?.updateProp("muted", newValue);
				},
				immediate: false
			},
			"initialTime": {
DCloud-yyl's avatar
DCloud-yyl 已提交
171 172
				handler(newValue : Number, oldValue : Number) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
173 174 175 176 177
					this?.updateProp("initialTime", newValue);
				},
				immediate: false
			},
			"duration": {
DCloud-yyl's avatar
DCloud-yyl 已提交
178
				handler(newValue : Number, oldValue : Number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
179 180 181 182 183 184
					"[weak self]"
					this?.updateProp("duration", newValue);
				},
				immediate: false
			},
			"controls": {
DCloud-yyl's avatar
DCloud-yyl 已提交
185
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
186 187 188 189 190 191
					"[weak self]"
					this?.updateProp("controls", newValue);
				},
				immediate: false
			},
			"danmuList": {
DCloud-yyl's avatar
DCloud-yyl 已提交
192
				handler(newValue : NSDictionary[], oldValue : NSDictionary[]) {
DCloud-yyl's avatar
DCloud-yyl 已提交
193 194 195 196 197 198
					"[weak self]"
					this?.updateProp("danmuList", newValue);
				},
				immediate: false
			},
			"danmuBtn": {
DCloud-yyl's avatar
DCloud-yyl 已提交
199
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
200 201 202 203 204 205
					"[weak self]"
					this?.updateProp("danmuBtn", newValue);
				},
				immediate: false
			},
			"enableDanmu": {
DCloud-yyl's avatar
DCloud-yyl 已提交
206 207
				handler(newValue : Boolean, oldValue : Boolean) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
208 209 210 211 212
					this?.updateProp("enableDanmu", newValue);
				},
				immediate: false
			},
			"pageGesture": {
DCloud-yyl's avatar
DCloud-yyl 已提交
213
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
214 215 216 217 218 219
					"[weak self]"
					this?.updateProp("pageGesture", newValue);
				},
				immediate: false
			},
			"direction": {
DCloud-yyl's avatar
DCloud-yyl 已提交
220
				handler(newValue : Number, oldValue : Number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
221 222 223 224 225 226
					"[weak self]"
					this?.updateProp("direction", newValue);
				},
				immediate: false
			},
			"showProgress": {
DCloud-yyl's avatar
DCloud-yyl 已提交
227
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
228 229 230 231 232 233
					"[weak self]"
					this?.updateProp("showProgress", newValue);
				},
				immediate: false
			},
			"showFullscreenBtn": {
DCloud-yyl's avatar
DCloud-yyl 已提交
234
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
235 236 237 238 239 240
					"[weak self]"
					this?.updateProp("showFullscreenBtn", newValue);
				},
				immediate: false
			},
			"showPlayBtn": {
DCloud-yyl's avatar
DCloud-yyl 已提交
241
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
242 243 244 245 246 247
					"[weak self]"
					this?.updateProp("showPlayBtn", newValue);
				},
				immediate: false
			},
			"showCenterPlayBtn": {
DCloud-yyl's avatar
DCloud-yyl 已提交
248
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
249 250 251 252 253 254
					"[weak self]"
					this?.updateProp("showCenterPlayBtn", newValue);
				},
				immediate: false
			},
			"showLoading": {
DCloud-yyl's avatar
DCloud-yyl 已提交
255
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
256 257 258 259 260 261
					"[weak self]"
					this?.updateProp("showLoading", newValue);
				},
				immediate: false
			},
			"enableProgressGesture": {
DCloud-yyl's avatar
DCloud-yyl 已提交
262
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
263 264 265 266 267 268
					"[weak self]"
					this?.updateProp("enableProgressGesture", newValue);
				},
				immediate: false
			},
			"objectFit": {
DCloud-yyl's avatar
DCloud-yyl 已提交
269
				handler(newValue : String, oldValue : String) {
DCloud-yyl's avatar
DCloud-yyl 已提交
270 271 272 273 274 275
					"[weak self]"
					this?.updateProp("objectFit", newValue);
				},
				immediate: false
			},
			"poster": {
DCloud-yyl's avatar
DCloud-yyl 已提交
276
				handler(newValue : String, oldValue : String) {
DCloud-yyl's avatar
DCloud-yyl 已提交
277 278 279 280 281 282
					"[weak self]"
					this?.updateProp("poster", newValue);
				},
				immediate: false
			},
			"showMuteBtn": {
DCloud-yyl's avatar
DCloud-yyl 已提交
283
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
284 285 286 287 288 289
					"[weak self]"
					this?.updateProp("showMuteBtn", newValue);
				},
				immediate: false
			},
			"title": {
DCloud-yyl's avatar
DCloud-yyl 已提交
290 291
				handler(newValue : String, oldValue : String) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
292 293 294 295 296
					this?.updateProp("title", newValue);
				},
				immediate: false
			},
			"enablePlayGesture": {
DCloud-yyl's avatar
DCloud-yyl 已提交
297
				handler(newValue : Boolean, oldValue : Boolean) {
DCloud-yyl's avatar
DCloud-yyl 已提交
298 299 300 301 302 303
					"[weak self]"
					this?.updateProp("enablePlayGesture", newValue);
				},
				immediate: false
			},
			"vslideGesture": {
DCloud-yyl's avatar
DCloud-yyl 已提交
304 305
				handler(newValue : Boolean, oldValue : Boolean) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
306 307 308 309 310
					this?.updateProp("vslideGesture", newValue);
				},
				immediate: false
			},
			"vslideGestureInFullscreen": {
DCloud-yyl's avatar
DCloud-yyl 已提交
311 312
				handler(newValue : Boolean, oldValue : Boolean) {
					"[weak self]"
DCloud-yyl's avatar
DCloud-yyl 已提交
313 314 315
					this?.updateProp("vslideGestureInFullscreen", newValue);
				},
				immediate: false
DCloud-yyl's avatar
DCloud-yyl 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
			},
			"httpCache": {
				handler(newValue : Boolean, oldValue : Boolean) {
					"[weak self]"
					this?.updateProp("httpCache", newValue);
				},
				immediate: false
			},
			"codec": {
				handler(newValue : string, oldValue : string) {
					"[weak self]"
					this?.updateProp("codec", newValue);
				},
				immediate: false
			},
			"playStrategy": {
				handler(newValue : number, oldValue : number) {
					"[weak self]"
					this?.updateProp("playStrategy", newValue);
				},
				immediate: false
DCloud-yyl's avatar
DCloud-yyl 已提交
337 338
			},
			"header": {
DCloud-yyl's avatar
DCloud-yyl 已提交
339 340 341 342 343 344
				handler(newValue : Map<string, any>, oldValue : Map<string, any>) {
					"[weak self]"
					let newStr = JSON.stringify(newValue)
					let oldStr = JSON.stringify(oldValue)
					if (newStr != oldStr) {
						this?.updateProp("header", newValue);
DCloud-yyl's avatar
DCloud-yyl 已提交
345 346 347 348
					}
				},
				immediate: false
			}
DCloud-yyl's avatar
DCloud-yyl 已提交
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
		},

		created() {
			let config = UniVideoPlayerConfig.init(options = this.attributes)
			this.delegate = new DCloudUniVideoComponentDelegate(this)
			this.present = new UniVideoPlayerViewPresent.init(config, this.delegate)
			if (this.delegate != null) {
				this.present!.delegate = this.delegate
			}
		},

		NVLoad() : UIView {
			if (this.present != null) {
				return this.present!.contentView;
			} else {
				return new UIView()
			}
		},

		NVLayouted() {
			if (!UTSiOS.isScreenLocked()) {
				this.present?.updateViewFrame(this.calculatedFrame);
DCloud-yyl's avatar
DCloud-yyl 已提交
371
			}
DCloud-yyl's avatar
DCloud-yyl 已提交
372 373 374 375 376 377 378 379
		},

		unmounted() { //释放播放器
			this.present?.destroy();
		},

		expose: ['play', 'pause', 'seek', 'stop', 'sendDanmu', 'playbackRate', 'requestFullScreen', 'exitFullScreen', 'showStatusBar', 'hideStatusBar'],

DCloud-yyl's avatar
DCloud-yyl 已提交
380 381 382 383 384
		methods: {
			/**
			 * 播放视频
			 */
			play: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
385
				this.present?.play()
DCloud-yyl's avatar
DCloud-yyl 已提交
386 387 388 389 390
			},
			/**
			 * 暂停视频
			 */
			pause: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
391
				this.present?.pause()
DCloud-yyl's avatar
DCloud-yyl 已提交
392 393 394 395 396
			},
			/**
			 * 跳转到指定位置
			 * @param pos 跳转到的位置,单位:秒(s)
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
397
			seek: function (pos : number) {
DCloud-yyl's avatar
DCloud-yyl 已提交
398 399 400 401 402 403
				this.present?.seek(pos.floatValue)
			},
			/**
			 * 切换到全屏
			 * @param direction 视频方向,0(正常竖向), 90(屏幕逆时针90度), -90(屏幕顺时针90度)
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
404 405
			requestFullScreen: function (direction : number) {
				let dir = UniVideoPlayerConfig.direction(direction)
DCloud-yyl's avatar
DCloud-yyl 已提交
406 407 408 409 410 411 412 413 414 415 416 417
				this.present?.requestFullScreen(dir)
			},
			/**
			 * 退出全屏
			 */
			exitFullScreen: function () {
				this.present?.exitFullScreenForJS()
			},
			/**
			 * 停止播放视频
			 */
			stop: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
418
				this.present?.stop()
DCloud-yyl's avatar
DCloud-yyl 已提交
419 420 421 422
			},
			/** 
			 * 显示状态栏,仅在iOS全屏下有效
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
423
			showStatusBar: function () {
DCloud-yyl's avatar
DCloud-yyl 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436
				this.present?.showStatusBar()
			},
			/**
			 * 隐藏状态栏,仅在iOS全屏下有效
			 */
			hideStatusBar: function () {
				this.present?.hideStatusBar()
			},

			/**
			 * 发送弹幕
			 * @param data 弹幕数据
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
437
			sendDanmu: function (data : Map<string, any>) {
DCloud-yyl's avatar
DCloud-yyl 已提交
438 439 440 441 442 443
				this.present?.sendDanmu(data)
			},
			/**
			 * 设置倍速播放
			 * @param rate 播放的倍率
			 */
DCloud-yyl's avatar
DCloud-yyl 已提交
444
			playbackRate: function (rate : string) {
DCloud-yyl's avatar
DCloud-yyl 已提交
445
				this.present?.palybackRate(rate);
DCloud-yyl's avatar
DCloud-yyl 已提交
446 447 448 449 450 451 452
			},

			updateProp: function (key : string, value : any | null) {
				DispatchQueue.main.async(execute = () : void => {
					this.present?.setControlValue(value, key)
				})

DCloud-yyl's avatar
DCloud-yyl 已提交
453 454 455 456
			}
		}
	}
	@UTSiOS.keyword("private")
DCloud-yyl's avatar
DCloud-yyl 已提交
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
	class DCloudUniVideoComponentDelegate implements UniVideoPlayerProtocol {
		@UTSiOS.keyword("weak")
		private component : VideoComponent | null = null
		private originalFrame : CGRect | null = null

		//todotest
		constructor(component : VideoComponent) {
			this.component = component
			super.init()
		}

		getCookieString(url : URL) : string | null {
			return UTSiOS.getCookieString(url)
		}

		getCurrentUA() : string {
			return UTSiOS.getUserAgent()
		}

		sendEvent(name : string, params : Dictionary<string, any> | null) {
			switch (name) {
				case "play":
				case "pause":
				case "waiting":
				case "ended":
				case "error":
				case "click":
					this.component?.__$$emit(name);
					break;
				case "timeupdate":
				case "fullscreenclick":
				case "fullscreenchange":
				case "controlstoggle":
					this.component?.__$$emit(name, params);
					break;
				default:
					break;
			}
		}

		loadImage(url : string, complete : (image : UIImage) => void) {
			UTSiOS.loadImage(url, (image, data) => {
				if (image != null) {
					complete(image!);
				}
			});
		}

		lockScreen() {
			UTSiOS.lockScreen()
		}

		unlockScreen() {
			UTSiOS.unlockScreen()
		}

		setFullScreen(yesOrNo : boolean) {
			UTSiOS.setFullScreen(yesOrNo)
		}

		setHomeIndicatorAutoHidden(yesOrNo : boolean) {
			UTSiOS.setHomeIndicatorAutoHidden(yesOrNo)
		}

		setTempOrientation(temp : UIInterfaceOrientationMask) {
			UTSiOS.setTempOrientation(temp)
		}

		configSupportOrientation(orientation : UIInterfaceOrientation) : boolean {
			return UTSiOS.configSupportOrientation(orientation)
		}

		setDeviceInterfaceOrientation(orientation : UIInterfaceOrientation) {
			UTSiOS.setDeviceInterfaceOrientation(orientation)
		}

		h5Path2SysPath(path : string, basePath : string | null) : string {
			return UTSiOS.getResourceAbsolutePath(path, basePath)
		}

		workRootPath() : string {
			return UTSiOS.getWorkRootPath()
		}

		videoPlayerWillEnterFullScreen(orientation : UIInterfaceOrientation) {
			this.originalFrame = this.component?.view.frame
			const deviceSize = UIScreen.main.bounds.size
			const min = min(deviceSize.width, deviceSize.height)
			const max = max(deviceSize.width, deviceSize.height)
			if (orientation == UIInterfaceOrientation.portrait) {
				this.component?.setStyleWidth(width = Float(min))
				this.component?.setStyleHeight(height = Float(max))
			} else {
				this.component?.setStyleWidth(width = Float(max))
				this.component?.setStyleHeight(height = Float(min))
			}
			this.component?.domNode?.setPositionEdge(UniCssFlexEdge.top, value = -Float(this.originalFrame?.minY ?? 0))
			this.component?.domNode?.setPositionEdge(UniCssFlexEdge.left, value = -Float(self.originalFrame?.minX ?? 0))
			this.component?.setNeedsLayout()
		}

		videoPlayerWillExitFullScreen(orientation : UIInterfaceOrientation) {
			if (this.originalFrame != null) {
				const width = this.originalFrame!.size.width
				const height = this.originalFrame!.size.height
				this.component?.setStyleWidth(width = Float(width))
				this.component?.setStyleHeight(height = Float(height))
				this.component?.domNode?.setPositionEdge(UniCssFlexEdge.top, value = 0)
				this.component?.domNode?.setPositionEdge(UniCssFlexEdge.left, value = 0)
				this.component?.setNeedsLayout()
			}
		}

		videoPlayerExitFullScreen(orientation : UIInterfaceOrientation) {

		}

		videoPlayerEnterFullScreen(orientation : UIInterfaceOrientation) {

		}

		videoCacheDir() : string {
			return UTSiOS.getVideoCacheDir()
		}
DCloud-yyl's avatar
DCloud-yyl 已提交
581
	}
DCloud-yyl's avatar
DCloud-yyl 已提交
582
</script>