Uni-app 详情页 播放视频功能_uni.createvideocontext-程序员宅基地

技术标签: uni-app  

逻辑:

1.课程详情页加载后,用token判断用户是否登录,登录状态则调用checkAuth的接口(只传入courseId),后端会返回hasAuth为true/false

2.点击某一章节时,登录状态则调用checkAuth的接口(传入courseId & chapterId),后端会返回hasAuth为true/false和videoId,如果这俩都有,则跳页面到视频播放页

3.跳转到视频播放页,加载完毕:请求课程详情接口、getPlay接口(传入courseId & chapterId)——后端返回formt,videoURL,duration等

功能:

4.自动跳转至上次播放时间:

        加载完视频播放页,调checkHistory得到上次的记录——接着使用视频控制进度的组件uni.createVideoContext的seek方法,将checkHistory返回的lastTime传入

5.记录播放历史:

        video标签上绑定@timeupdate方法,这个方法在播放进度变化时触发,也就是只要在播放就在不停的触发,所以每次进入方法都this.timer++,当它等于25时也就是每隔6s,调用recordHistory记录播放进度的接口,并使this.timer变回为1

6.倍速播放:

        下载f-drop-menu插件,绑定videoList,以及changeSpeed事件,使用视频控制进度的组件uni.createVideoContext的playbackRate方法

7.下一节/重学一次

        在data中,分别用new Map来new空的实例对象 ,Map字典数据结构是为了方便以[键,值]的形式存储数据,给每个小节做标记。

        在初次进入视频页,调课程详情接口时,返回的数据是章嵌套节的结构。所以先循环章,再循环节,将这个实例对象使用set方法,将小节信息设置成键值对的数组,目的是为了给每个小节做标记。

        给video绑定了ended事件——在播放结束时用这个实例对象的get方法查找读取key对应的键值,找到下一个章节对应的信息。

        判断——如果下个章节有内容,就提示下一节/重学的选项。

8.视频防盗

        在video标签中加上视频来源,否则后端会判断为为非法入侵。

<template>
  <view class="course-play">
    <u-navbar title="视频" class="header"></u-navbar>
    <video id="myVideo" :src="videoUrl" controls :header="{'Referer':'http://testapp.cn'}" :poster="cover"
      @timeupdate="timeupdate" @ended="playEnded" class="video-play"></video>
    <view class="video-control">
      <view class="" @tap="dropSpeed">倍速:{
   {speed}}</view>
      <f-drop-menu :list="videoList" v-model="show" @click="changeSpeed"></f-drop-menu>
    </view>
    <view class="tabs">
      <u-tabs-swiper ref="uTabs" :list="list" :current="current" @change="tabsChange" :is-scroll="false"
        swiperWidth="750"></u-tabs-swiper>
    </view>
    <swiper class="swiper" :current="swiperCurrent">
      <swiper-item class="swiper-item">
        <scroll-view scroll-y style="height: 800rpx;width: 100%;">
          <u-collapse accordion class="ui-collapse" :border="false" event-type="close">
            <u-collapse-item :title="item.chapterName" :open="index === 0" v-for="(item,index) in catalogueList"
              :key="item.id">
              <view class="child-item" v-for="child in item.children" :key="child.id"
                :class="child.id === current ? 'collapse-active':''" @tap="goPlay(child)">
                <view class="video-box">视频</view>
                <view class="content-box">{
   {child.chapterName}}</view>
              </view>
            </u-collapse-item>
          </u-collapse>
        </scroll-view>
      </swiper-item>
      <swiper-item class="swiper-item">
        <scroll-view scroll-y style="height: 800rpx;width: 100%;">
          <Download :downloadList="downloadList"></Download>
        </scroll-view>
      </swiper-item>
    </swiper>
    <u-toast ref="uToast" />
  </view>
</template>

<script>
  import {
    mapState
  } from 'vuex'
  import Download from '@/common/course-detail/download/index.vue'
  import courseApi from '@/service/coursedetail.js'
  import playApi from '@/service/play.js'
  export default {
    data() {
      return {
        speed: 'X1.0',
        show: false, //默认不显示
        videoList: [{
          name: '0.5',
          style: {

          }
        }, {
          name: '1.0',
          style: {

          }
        }, {
          name: '1.25',
          style: {

          }
        }, {
          name: '1.5',
          style: {

          }
        }],
        courseId: null,
        chapterId: null,
        swiperCurrent: 0,
        current: 0,
        list: [{
          name: '目录'
        }, {
          name: '下载笔记代码'
        }],
        downloadList: [],
        catalogueList: [],
        clientHeight: 0,
        cover: null, // 封面图
        videoUrl: null, // 视频
        totalTime: null, // 总时长
        timer: 1, // 控制
        indexMap: new Map(), //保存
        maps: new Map(),
        videoContext: null, // 视频控制组件
      }
    },
    computed: {
      ...mapState({
        userInfo: state => state.user.userInfo
      }),
      curId() {
        // curId 
        if (this.chapterId !== 0) {
          return this.chapterId
        } else {
          // 第一个章节里面第一个小节
          return this.catalogueList[0].children[0].id
        }
      },
    },
    components: {
      Download
    },
    onReady() {
      //视频进度控制组件
      this.videoContext = uni.createVideoContext('myVideo')
      // 动态获取头部高
      const query = uni.createSelectorQuery().in(this);
      query.select('.header').boundingClientRect(data => {
        uni.getSystemInfo({
          success: (res) => {
            this.clientHeight = res.screenHeight - data.height
          }
        });
      }).exec();
      // video
      query.select('.video-play').boundingClientRect(data => {
        this.clientHeight = this.clientHeight - data.height
      }).exec();
      // video-control
      query.select('.video-control').boundingClientRect(data => {
        this.clientHeight = this.clientHeight - data.height
      }).exec();
      // 切换
      query.select('.tabs').boundingClientRect(data => {
        this.clientHeight = this.clientHeight - data.height
      }).exec();
    },
    onLoad(params) {
      this.courseId = params.courseId
      this.chapterId = params.chapterId
      // 如果是点击了重学跳过来的 就有restudy
      let restudy = params.restudy
      this.__init()
      if (!restudy) {
        this.checkHistory()
      }
    },
    methods: {
      //点击倍速
      dropSpeed() {
        this.show = !this.show
      },
      //切换倍速
      changeSpeed(item) {
        this.speed = 'X' + item.name
        this.videoContext.playbackRate(Number(item.name))
        this.show = false
      },
      __init() {
        // 获取课程 详情
        //获取课程详情
        courseApi.getClassDetail({
          classId: this.courseId
        }).then(res => {
          if (res.meta.code === '200') {
            //当前课程的目录
            this.catalogueList = res.data.data.bizCourseChapters
            //笔记代码
            this.downloadList = res.data.data.bizCourseAttachments
            let idx = 0;
            //先循环章
            res.data.data.bizCourseChapters.map((item, index) => {
              //再循环节 
              item.children.map((ele) => {
                //本课程所有小节 组成一个不重复的数组 给每个小节做标记
                this.indexMap.set(ele.id, idx) // 节 [{'节ID',0},{'节ID',1}]
                this.maps.set('chapter_' + idx, ele) //[{'chapter_0',节信息},{'chapter_1',节信息}]
                idx++
              })
            })
          } else { //非200

          }
        }).catch(err => {
          console.log(err)
        })
        // 视频播放
        playApi.getPlay({
          courseId: this.courseId,
          chapterId: this.chapterId
        }).then(res => {
          if (res.meta.code === '200') {
            let playInfoList = res.data.playInfo.playInfoList
            let chapterInfo = res.data.chapterInfo //封面图
            let arr = playInfoList.filter(item => {
              if (item.format === 'mp4') {
                return item
              }
            })
            console.log(arr) //[{}]
            let obj = arr[0] //含videoUrl,format,duration的对象
            this.videoUrl = obj.playURL
            this.totalTime = obj.duration
            this.cover = chapterInfo.chapterLitpic
          }
        }).catch(err => {
          console.log(err)
        })

      },
      //查询上一次播放的进度
      checkHistory() {
        playApi.checkHistory({
          memberId: this.userInfo.id,
          courseId: this.courseId,
          chapterId: this.chapterId
        }).then(res => {
          if (res.meta.code === '200') { //查询到进度 并且用控件调整进度
            this.videoContext.seek(Number(res.data.data.lastTime))
          }
        }).catch(err => {
          console.log(err)
        })
      },
      //历史记录
      recordHistory(lastTime) {
        playApi.recordHistory({
          chapterId: this.chapterId,
          courseId: this.courseId,
          memberId: this.userInfo.id,
          lastTime: lastTime //上次观看时间
        }).then(res => {
          if (res.meta.code === '200') { //记录成功
            this.timer = 1
          } else {
            //记录失败
          }
        }).catch(err => {
          console.log(err)
        })
      },
      //播放进度变化时触发 历史记录 存储播放进度
      timeupdate(e) {
        let curTime = e.detail.currentTime
        console.log(curTime)
        if (this.timer === 25) {
          //调一次记录历史记录的接口
          this.recordHistory(curTime)
          console.log('记录')
        }
        this.timer++ //每次变化+1
      },
      //播放结束
      playEnded(e) {
        this.recordHistory(this.totalTime)
        // this.indexMap.set(ele.id,idx)// 节 [{'节ID',0},{'节ID',1}]
        // this.maps.set('chapter_'+idx,ele)//[{'chapter_0',节信息},{'chapter_1',节信息}]
        //查找对应项
        let index = this.indexMap.get(this.chapterId); //idx
        let nextChapter = this.maps.get('chapter_' + (index + 1)) //后面一章的节信息
        if (nextChapter) { //如果后面还有
          //下一个小节 视频
          uni.showModal({
            title: '提示',
            content: '继续下一小节',
            confirmText: '下一小节',
            cancelText: '重学',
            success: res => {
              if (res.confirm) {
                //继续学 下一小节
                uni.redirectTo({
                  url: '/pages/course-play/course-play?courseId=' + this.courseId + '&chapterId=' +
                    nextChapter.id
                })
              } else if (res.cancel) {
                //重学
                uni.redirectTo({
                  url: '/pages/course-play/course-play?courseId=' + this.courseId + '&chapterId=' + this
                    .chapterId + '&restudy=' + 'true'
                })
              }
            }
          });
        } else {
          this.$refs.uToast.show({
            title: '恭喜你学完本课程',
            type: 'success',
            icon: false
          })
        }
      },
      //播放另一个章节
      goPlay() {
        this.chapterId = child.id
        //关闭当前页 重定向
        uni.redirectTo({
          url: '/pages/course-play/course-play?courseId=' + this.courseId + '&chapterId=' + child.id
        })
      },
      tabsChange(){
        
      }
    }
  }
</script>

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_60463255/article/details/122449690

智能推荐

5个超厉害的资源搜索网站,每一款都可以让你的资源满满!_最全资源搜索引擎-程序员宅基地

文章浏览阅读1.6w次,点赞8次,收藏41次。生活中我们无时不刻不都要在网站搜索资源,但就是缺少一个趁手的资源搜索网站,如果有一个比较好的资源搜索网站可以帮助我们节省一大半时间!今天小编在这里为大家分享5款超厉害的资源搜索网站,每一款都可以让你的资源丰富精彩!网盘传奇一款最有效的网盘资源搜索网站你还在为找网站里面的资源而烦恼找不到什么合适的工具而烦恼吗?这款网站传奇网站汇聚了4853w个资源,并且它每一天都会持续更新资源;..._最全资源搜索引擎

Book类的设计(Java)_6-1 book类的设计java-程序员宅基地

文章浏览阅读4.5k次,点赞5次,收藏18次。阅读测试程序,设计一个Book类。函数接口定义:class Book{}该类有 四个私有属性 分别是 书籍名称、 价格、 作者、 出版年份,以及相应的set 与get方法;该类有一个含有四个参数的构造方法,这四个参数依次是 书籍名称、 价格、 作者、 出版年份 。裁判测试程序样例:import java.util.*;public class Main { public static void main(String[] args) { List <Book>_6-1 book类的设计java

基于微信小程序的校园导航小程序设计与实现_校园导航微信小程序系统的设计与实现-程序员宅基地

文章浏览阅读613次,点赞28次,收藏27次。相比于以前的传统手工管理方式,智能化的管理方式可以大幅降低学校的运营人员成本,实现了校园导航的标准化、制度化、程序化的管理,有效地防止了校园导航的随意管理,提高了信息的处理速度和精确度,能够及时、准确地查询和修正建筑速看等信息。课题主要采用微信小程序、SpringBoot架构技术,前端以小程序页面呈现给学生,结合后台java语言使页面更加完善,后台使用MySQL数据库进行数据存储。微信小程序主要包括学生信息、校园简介、建筑速看、系统信息等功能,从而实现智能化的管理方式,提高工作效率。

有状态和无状态登录

传统上用户登陆状态会以 Session 的形式保存在服务器上,而 Session ID 则保存在前端的 Cookie 中;而使用 JWT 以后,用户的认证信息将会以 Token 的形式保存在前端,服务器不需要保存任何的用户状态,这也就是为什么 JWT 被称为无状态登陆的原因,无状态登陆最大的优势就是完美支持分布式部署,可以使用一个 Token 发送给不同的服务器,而所有的服务器都会返回同样的结果。有状态和无状态最大的区别就是服务端会不会保存客户端的信息。

九大角度全方位对比Android、iOS开发_ios 开发角度-程序员宅基地

文章浏览阅读784次。发表于10小时前| 2674次阅读| 来源TechCrunch| 19 条评论| 作者Jon EvansiOSAndroid应用开发产品编程语言JavaObjective-C摘要:即便Android市场份额已经超过80%,对于开发者来说,使用哪一个平台做开发仍然很难选择。本文从开发环境、配置、UX设计、语言、API、网络、分享、碎片化、发布等九个方面把Android和iOS_ios 开发角度

搜索引擎的发展历史

搜索引擎的发展历史可以追溯到20世纪90年代初,随着互联网的快速发展和信息量的急剧增加,人们开始感受到了获取和管理信息的挑战。这些阶段展示了搜索引擎在技术和商业模式上的不断演进,以满足用户对信息获取的不断增长的需求。

随便推点

控制对象的特性_控制对象特性-程序员宅基地

文章浏览阅读990次。对象特性是指控制对象的输出参数和输入参数之间的相互作用规律。放大系数K描述控制对象特性的静态特性参数。它的意义是:输出量的变化量和输入量的变化量之比。时间常数T当输入量发生变化后,所引起输出量变化的快慢。(动态参数) ..._控制对象特性

FRP搭建内网穿透(亲测有效)_locyanfrp-程序员宅基地

文章浏览阅读5.7w次,点赞50次,收藏276次。FRP搭建内网穿透1.概述:frp可以通过有公网IP的的服务器将内网的主机暴露给互联网,从而实现通过外网能直接访问到内网主机;frp有服务端和客户端,服务端需要装在有公网ip的服务器上,客户端装在内网主机上。2.简单的图解:3.准备工作:1.一个域名(www.test.xyz)2.一台有公网IP的服务器(阿里云、腾讯云等都行)3.一台内网主机4.下载frp,选择适合的版本下载解压如下:我这里服务器端和客户端都放在了/usr/local/frp/目录下4.执行命令# 服务器端给执_locyanfrp

UVA 12534 - Binary Matrix 2 (网络流‘最小费用最大流’ZKW)_uva12534-程序员宅基地

文章浏览阅读687次。题目:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=93745#problem/A题意:给出r*c的01矩阵,可以翻转格子使得0表成1,1变成0,求出最小的步数使得每一行中1的个数相等,每一列中1的个数相等。思路:网络流。容量可以保证每一行和每一列的1的个数相等,费用可以算出最小步数。行向列建边,如果该格子是_uva12534

免费SSL证书_csdn alphassl免费申请-程序员宅基地

文章浏览阅读504次。1、Let's Encrypt 90天,支持泛域名2、Buypass:https://www.buypass.com/ssl/resources/go-ssl-technical-specification6个月,单域名3、AlwaysOnSLL:https://alwaysonssl.com/ 1年,单域名 可参考蜗牛(wn789)4、TrustAsia5、Alpha..._csdn alphassl免费申请

测试算法的性能(以选择排序为例)_算法性能测试-程序员宅基地

文章浏览阅读1.6k次。测试算法的性能 很多时候我们需要对算法的性能进行测试,最简单的方式是看算法在特定的数据集上的执行时间,简单的测试算法性能的函数实现见testSort()。【思想】:用clock_t计算某排序算法所需的时间,(endTime - startTime)/ CLOCKS_PER_SEC来表示执行了多少秒。【关于宏CLOCKS_PER_SEC】:以下摘自百度百科,“CLOCKS_PE_算法性能测试

Lane Detection_lanedetectionlite-程序员宅基地

文章浏览阅读1.2k次。fromhttps://towardsdatascience.com/finding-lane-lines-simple-pipeline-for-lane-detection-d02b62e7572bIdentifying lanes of the road is very common task that human driver performs. This is important ..._lanedetectionlite

推荐文章

热门文章

相关标签