video.uvue 16.3 KB
Newer Older
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
  <view class="uni-flex-item">
    <video class="video" ref="video" id="video" :header="header" :src=src :autoplay="autoplay" :loop="loop"
      :muted="muted" :initial-time="initialTime" :duration="duration" :controls="controls" :danmu-btn="danmuBtn"
      :enable-danmu="enableDanmu" :page-gesture="pageGesture" :direction="direction" :show-progress="showProgress"
      :show-fullscreen-btn="showFullscreenBtn" :show-play-btn="showPlayBtn" :show-center-play-btn="showCenterPlayBtn"
      :show-loading="showLoading" :enable-progress-gesture="enableProgressGesture" :object-fit="objectFit"
      :poster="poster" :show-mute-btn="showMuteBtn" :title="title" :enable-play-gesture="enablePlayGesture"
      :vslide-gesture="vslideGesture" :vslide-gesture-in-fullscreen="vslideGestureInFullscreen" :codec="codec"
      :http-cache="httpCache" :play-strategy="playStrategy" :danmu-list="danmuList" @play="onPlay" @pause="onPause"
      @ended="onEnded" @timeupdate="onTimeUpdate" @waiting="onWaiting" @error="onError" @progress="onProgress"
      @fullscreenclick="onFullScreenClick" @controlstoggle="onControlsToggle" @fullscreenchange="onFullScreenChange">
    </video>
    <scroll-view class="uni-padding-wrap uni-common-mt uni-flex-item">
      <view class="uni-title">
        <text class="uni-title-text">API示例</text>
      </View>
      <view class="uni-btn-v">
        <button type="primary" @click="play">播放</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="pause">暂停</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="seek(pos)">跳转到指定位置</button>
      </view>
      <view class="uni-btn-v">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
28
        <button type="primary" @click="requestFullScreen(requestFullScreenOptions)">进入全屏</button>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="exitFullScreen">退出全屏</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="stop">停止</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="sendDanmu(danmu)">发送弹幕</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="playbackRate(rate)">设置倍速</button>
      </view>
      <view class="uni-title">
Y
yurj26 已提交
43
        <text class="uni-title-text">属性示例</text>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
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 123 124 125 126 127
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setSrc(_src)">设置播放资源</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setAutoplay()">设置是否自动播放(未播放时设置有效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setLoop()">设置是否循环播放(本次播放完成后生效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setMuted()">设置是否静音播放</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setInitialTime(_initialTime)">设置初始播放位置(本次播放完成后生效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setDuration(_duration)">设置视频时长(未播放时设置有效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setControls()">设置是否显示默认播放控件</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setDanmuBtn()">设置是否显示弹幕按钮</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setPageGesture()">非全屏模式下,设置是否开启亮度与音量调节手势</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setDirection(_direction)">设置全屏时视频的方向</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowProgress()">设置是否显示进度条</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowFullscreenBtn()">设置是否显示全屏按钮</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowPlayBtn()">设置是否显示视频底部控制栏的播放按钮</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowCenterPlayBtn()">设置是否显示视频中间的播放按钮</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowLoading()">设置是否显示loading控件</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setEnableProgressGesture()">设置是否开启控制进度的手势</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setObjectFit(_objectFit)">设置视频大小与video容器大小不一致时,视频的表现形式</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setPoster(_poster)">设置视频封面</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setShowMuteBtn()">设置是否显示静音按钮</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setTitle(_title)">设置视频标题</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setEnablePlayGesture()">设置是否开启播放手势</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setVslideGesture()">非全屏模式下,设置是否开启亮度与音量调节手势</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setVslideGestureInFullscreen()">全屏模式下,设置是否开启亮度与音量调节手势</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setCodec(_codec)">设置解码器(未播放时设置有效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setHttpCache()">设置是否对http、https视频源开启本地缓存(未播放时设置有效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setPlayStrategy(_playStrategy)">设置播放策略(未播放时设置有效)</button>
      </view>
      <view class="uni-btn-v">
        <button type="primary" @click="setHeader(_header)">设置header</button>
      </view>
    </scroll-view>
  </view>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
128 129 130
</template>

<script lang="uts">
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
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
  export default {
    onReady() {
      this.videoContext = uni.createVideoContext('video', this);
    },
    data() {
      return {
        videoContext: null as VideoContext | null,
        // 属性
        src: "https://img.cdn.aliyun.dcloud.net.cn/guide/uniapp/%E7%AC%AC1%E8%AE%B2%EF%BC%88uni-app%E4%BA%A7%E5%93%81%E4%BB%8B%E7%BB%8D%EF%BC%89-%20DCloud%E5%AE%98%E6%96%B9%E8%A7%86%E9%A2%91%E6%95%99%E7%A8%8B@20181126-lite.m4v",
        _src: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni-app-video-courses.mp4",
        autoplay: false,
        loop: false,
        muted: false,
        initialTime: 0,
        _initialTime: 6,
        duration: -1,
        _duration: 60,
        controls: true,
        danmuList: [{
          text: '要显示的文本',
          color: '#FF0000',
          time: 3
        }, {
          text: '要显示的文本2',
          color: '#31ff23',
          time: 5
        }, {
          text: '要显示的文本3',
          color: '#f13ef8',
          time: 7
        }, {
          text: '要显示的文本4',
          color: '#4972f8',
          time: 9
        }, {
          text: '要显示的文本5',
          color: '#000000',
          time: 11
        }] as Array<Danmu>,
        danmuBtn: false,
        enableDanmu: true,
        pageGesture: false,
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
173 174 175
        direction: -90,
        _direction: 0,
        requestFullScreenOptions: {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
176 177 178 179 180 181 182 183 184 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
          direction: -90
        } as RequestFullScreenOptions,
        showProgress: true,
        showFullscreenBtn: true,
        showPlayBtn: true,
        showCenterPlayBtn: true,
        showLoading: true,
        enableProgressGesture: true,
        objectFit: "contain",
        _objectFit: "fill",
        poster: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni-android.png",
        _poster: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni-ios.png",
        showMuteBtn: false,
        title: "video-component",
        _title: "video-component video-component",
        enablePlayGesture: false,
        vslideGesture: false,
        vslideGestureInFullscreen: true,
        codec: "hardware",
        _codec: "software",
        httpCache: true,
        playStrategy: 0,
        _playStrategy: 2,
        header: {
          'User-Agent': 'header test'
        } as UTSJSONObject,
        _header: {
          'User-Agent': 'header test2'
        } as UTSJSONObject,
        // API
        pos: 10,
        rate: 1.5,
        danmu: {
          text: '要显示的文本',
          color: '#FF0000'
211 212 213 214 215
        } as Danmu,
        // 自动化测试
        isPlaying: false,
        isPause: false,
        isFullScreen: false
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
216 217 218 219 220 221 222 223 224 225
      }
    },
    methods: {
      // API
      play: function () {
        console.log("play");
        this.videoContext?.play();
      },
      pause: function () {
        console.log("pause");
226 227
        (uni.getElementById("video") as UniVideoElement).pause(); //as写法测试。注意id不对时as会崩溃
        // this.videoContext?.pause();
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
      },
      seek: function (pos : number) {
        console.log("seek -> " + pos);
        this.videoContext?.seek(pos);
      },
      requestFullScreen: function (options : RequestFullScreenOptions) {
        console.log("requestFullScreen -> " + options);
        this.videoContext?.requestFullScreen(options);
      },
      exitFullScreen: function () {
        console.log("exitFullScreen");
        this.videoContext?.exitFullScreen();
      },
      stop: function () {
        console.log("stop");
243 244
        uni.getElementById<UniVideoElement>("video")?.stop(); //泛型写法测试
        // this.videoContext?.stop();
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
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
      },
      sendDanmu: function (danmu : Danmu) {
        console.log("sendDanmu -> " + danmu);
        this.videoContext?.sendDanmu(danmu);
      },
      playbackRate: function (rate : number) {
        console.log("playbackRate -> " + rate);
        this.videoContext?.playbackRate(rate);
      },
      // 属性
      setSrc: function (src : string) {
        this.src = src;
        console.log("src -> " + this.src)
      },
      setAutoplay: function () {
        this.autoplay = !this.autoplay;
        console.log("autoplay -> " + this.autoplay)
      },
      setLoop: function () {
        this.loop = !this.loop;
        console.log("loop -> " + this.loop)
      },
      setMuted: function () {
        this.muted = !this.muted;
        console.log("muted -> " + this.muted)
      },
      setInitialTime: function (initialTime : number) {
        this.initialTime = initialTime;
        console.log("initialTime -> " + this.initialTime)
      },
      setDuration: function (duration : number) {
        this.duration = duration;
        console.log("duration -> " + this.duration)
      },
      setControls: function () {
        this.controls = !this.controls;
        console.log("controls -> " + this.controls)
      },
      setDanmuBtn: function () {
        this.danmuBtn = !this.danmuBtn;
        console.log("danmuBtn -> " + this.danmuBtn)
      },
      setPageGesture: function () {
        this.pageGesture = !this.pageGesture;
        console.log("pageGesture -> " + this.pageGesture)
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
291
      setDirection: function (direction : number) {
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
292
        this.direction = direction;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
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
        console.log("direction -> " + this.direction)
      },
      setShowProgress: function () {
        this.showProgress = !this.showProgress;
        console.log("showProgress -> " + this.showProgress)
      },
      setShowFullscreenBtn: function () {
        this.showFullscreenBtn = !this.showFullscreenBtn;
        console.log("showFullscreenBtn -> " + this.showFullscreenBtn)
      },
      setShowPlayBtn: function () {
        this.showPlayBtn = !this.showPlayBtn;
        console.log("showPlayBtn -> " + this.showPlayBtn)
      },
      setShowCenterPlayBtn: function () {
        this.showCenterPlayBtn = !this.showCenterPlayBtn;
        console.log("showCenterPlayBtn -> " + this.showCenterPlayBtn)
      },
      setShowLoading: function () {
        this.showLoading = !this.showLoading;
        console.log("showLoading -> " + this.showLoading)
      },
      setEnableProgressGesture: function () {
        this.enableProgressGesture = !this.enableProgressGesture;
        console.log("enableProgressGesture -> " + this.enableProgressGesture)
      },
      setObjectFit: function (objectFit : string) {
        this.objectFit = objectFit;
        console.log("objectFit -> " + this.objectFit)
      },
      setPoster: function (poster : string) {
        this.poster = poster;
        console.log("poster -> " + this.poster)
      },
      setShowMuteBtn: function () {
        this.showMuteBtn = !this.showMuteBtn;
        console.log("showMuteBtn -> " + this.showMuteBtn)
      },
      setTitle: function (title : string) {
        this.title = title;
        console.log("title -> " + this.title)
      },
      setEnablePlayGesture: function () {
        this.enablePlayGesture = !this.enablePlayGesture;
        console.log("enablePlayGesture -> " + this.enablePlayGesture)
      },
      setVslideGesture: function () {
        this.vslideGesture = !this.vslideGesture;
        console.log("vslideGesture -> " + this.vslideGesture)
      },
      setVslideGestureInFullscreen: function () {
        this.vslideGestureInFullscreen = !this.vslideGestureInFullscreen;
        console.log("vslideGestureInFullscreen -> " + this.vslideGestureInFullscreen)
      },
      setCodec: function (codec : string) {
        this.codec = codec;
        console.log("codec -> " + this.codec)
      },
      setHttpCache: function () {
        this.httpCache = !this.httpCache;
        console.log("httpCache -> " + this.httpCache)
      },
      setPlayStrategy: function (playStrategy : number) {
        this.playStrategy = playStrategy;
        console.log("playStrategy -> " + this.playStrategy)
      },
      setHeader: function (header : UTSJSONObject) {
        this.header = header;
        console.log("header -> " + this.header)
      },
      // 事件
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
364 365
      onPlay: function (res : Event) {
        console.log(res.type);
366 367
        this.isPlaying = true;
        this.isPause = false;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
368
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
369 370
      onPause: function (res : Event) {
        console.log(res.type);
371 372
        this.isPlaying = false;
        this.isPause = true;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
373
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
374 375
      onEnded: function (res : Event) {
        console.log(res.type);
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
376
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
377 378
      onTimeUpdate: function (res : VideoTimeUpdateEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
379
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
380 381
      onFullScreenChange: function (res : VideoFullScreenChangeEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
382
        this.isFullScreen = !this.isFullScreen;
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
383
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
384 385
      onWaiting: function (res : Event) {
        console.log(res.type);
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
386
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
387 388
      onError: function (res : VideoErrorEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
389
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
390 391
      onProgress: function (res : VideoProgressChangeEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
392
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
393 394
      onFullScreenClick: function (res : VideoFullScreenClickEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
395
      },
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
396 397
      onControlsToggle: function (res : VideoControlsToggleEvent) {
        console.log(res.type + " -> " + JSON.stringify(res.detail));
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
      },
      // 自动化测试
      playTest: function () {
        this.videoContext?.play();
      },
      pauseTest: function () {
        this.videoContext?.pause();
      },
      requestFullScreenTest: function () {
        const options : RequestFullScreenOptions = {
          direction: -90
        };
        this.videoContext?.requestFullScreen(options);
      },
      exitFullScreenTest: function () {
        this.videoContext?.exitFullScreen();
      },
      stopTest: function () {
        this.videoContext?.stop();
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
417 418 419
      }
    }
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
420 421 422
</script>

<style>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
423 424 425 426
  .video {
    width: 750rpx;
    height: 400rpx;
  }
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
427
</style>