UniApp video 使用(自定义进度条,及微信无法暂停播放设置进度问题)

  • 在小程序开发的时候,其他小程序能够正常暂停、播放、切换进度,但是在微信小程序发现没有生效,原因是平台差异

    // 官网案例是这样获取 videoContext 的
    this.videoContext = uni.createVideoContext('myVideo')
    
    // 但是如果需要处理微信小程序的差异,则需要将 this 传入
    this.videoContext = uni.createVideoContext('myVideo', this)
    
  • 案例效果

    请添加图片描述

    <template>
        <view class="video-view">
            <!-- 播放器 -->
            <video
                autoplay
                id="myVideo"
                class="video-content"
                :src="drama.limit_url"
                :controls="false"
                @loadedmetadata="loadedmetadata"
                @timeupdate="timeUpdate"
            >
            </video>
            <!-- 遮盖层 -->
            <view class="video-cover" @click="touchPlay">
                <view class="view-cover-content">
                    <!-- 信息栏 -->
                    <view class="video-info">
                        <!-- 弹簧 -->
                        <view style="flex: 1;"></view>
                        <!-- 显示时间 -->
                        <view class="video-time" v-if="isDrag">
                            <view class="video-time-current">{{ dragStarTime }}</view>
                            <view style="padding: 0 20rpx;">/</view>
                            <text>{{ dragEndTime }}</text>
                        </view>
                        <!-- 进度栏 -->
                        <view class="slider-view" @click.stop>
                            <u-slider
                                v-model="currentTime"
                                min="0"
                                :max="duration"
                                inactiveColor="rgba(255, 255, 255, 0.2)"
                                activeColor="#F8DD52"
                                @changing="sliderChanging"
                                @change="sliderChange"
                            ></u-slider>
                        </view>
                        <!-- 当前集数 -->
                        <view class="video-info-current" @click.stop>
                            <!-- 名称 -->
                            <view class="video-info-title text-ell" v-if="drama.project_drama_name">{{ drama.project_drama_name }}-第{{ drama.eq_number }}集</view>
                            <!-- 弹簧 -->
                            <view style="flex: 1;"></view>
                            <!-- 选集 -->
                            <view class="video-info-btn" @click="touchSwitch">
                                <view class="arrow-right-title">选集</view>
                                <u-icon name="arrow-right" color="#fff"></u-icon>
                            </view>
                        </view>
                    </view>
                </view>
            </view>
        </view>
    </template>
    
    <script>
    export default {
        props: {
            // 当前剧集
            drama: {
                type: Object,
                default: () => {}
            }
        },
        data() {
            return {
                // 播放器上下文
                videoContext: undefined,
                // 播放状态
                isPlay: true,
                // 当前时长
                currentTime: 0,
                // 总时间
                duration: 0.1,
                // 是否正在拖拽进度
                isDrag: false,
                // 拖拽时视频时间
                dragStarTime: '',
                dragEndTime: '',
                // 当前还没显示过提示消息
                isShowMsg: true
            }
        },
        mounted () {
            // 获取播放器上下文(后面的 this 需要传入,在微信小程序上无法暂停播放拖拽精度,所以需要传入这个)
            this.videoContext = uni.createVideoContext('myVideo', this)
        },
        methods: {
            // 播放
            play () {
                this.videoContext.play()
            },
            // 暂停
            pause () {
                this.videoContext.pause()
            },
            // 播放状态切换
            touchPlay () {
                this.isPlay = !this.isPlay
                if (this.isPlay) {
                    this.play ()
                } else {
                    this.pause()
                }
            },
            // 播放进度发生变化
            timeUpdate (e) {
                // 拖拽时不需要进行更新
                if (!this.isDrag) {
                    // 更新进度
                    const { currentTime } = e.detail
                    this.currentTime = currentTime
                    // 播放完成
                    if (Math.trunc(currentTime) === Math.trunc(duration)) {
                        this.$emit('playcomplete', e)
                    }
                    // 返回当前播放时间
                    this.$emit('timeupdate', e)
                }
            },
            // 拖拽结束
            sliderChange (value) {
                // 停止拖拽
                this.isDrag = false
                // 判断一下是否大于基础时间
                if (this.duration > 0.1) {
                    // 跳到指定时间点
                    this.videoContext.seek(value)
                    // 并调用播放
                    this.play()
                }
            },
            // 正在拖拽
            sliderChanging (value) {
                // 开始拖拽
                this.isDrag = true
                // 刷新时间
                this.reloadVideoTime()
            },
            // 刷新显示时间
            reloadVideoTime () {
                // 当前时间
                this.dragStarTime = this.$pub.TIME_CONVERT(this.currentTime)
                // 总时间
                this.dragEndTime = this.$pub.TIME_CONVERT(this.duration)
            },
            // 加载完成
            loadedmetadata (e) {
                const { duration } = e.detail
                // 记录视频总时间
                this.duration = duration
                // 回调
                this.$emit('loadcomplete')
            },
            // 切换选集
            touchSwitch () {
                this.$emit('switch')
            }
        }
    }
    </script>
    
    <style lang="scss">
    .video-view {
        position: relative;
        width: 100%;
        height: 100%;
        .video-content {
            width: 100%;
            height: 100%;
        }
        .video-cover {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            .view-cover-content {
                position: relative;
                width: 100%;
                height: 100%;
                .video-info {
                    display: flex;
                    flex-direction: column;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 246rpx;
                    background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.40) 100%, rgba(0,0,0,0.40) 100%);
                    .slider-view {
                        flex-shrink: 0;
                    }
                    .video-info-current {
                        flex-shrink: 0;
                        display: flex;
                        align-items: center;
                        width: 100%;
                        color: #fff;
                        font-size: 34rpx;
                        padding: 0 40rpx 40rpx;
                        width: calc(100% - 80rpx);
                        .video-info-btn {
                            flex-shrink: 0;
                            display: flex;
                            align-items: center;
                            padding-left: 40rpx;
                            .arrow-right-title {
                                margin-right: 10rpx;
                            }
                        }
                    }
                    .video-time {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 64rpx;
                        color: rgba(255, 255, 255, 0.7);
                        .video-time-current {
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
    </style>
    
  • 1
    点赞
  • 19
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 4
    评论
自定义微信小程序video进度条,可以使用wx.createVideoContext()方法获取video组件实例,然后通过该实例的属性和方法来实现自定义进度条的效果。 以下是一个简单的示例代码: wxml文件部分: ```xml <video src="{{src}}" id="myVideo"></video> <view class="progress-bar" style="width: {{progress}}%;"></view> ``` js文件部分: ```javascript Page({ data: { src: '视频地址', duration: 0, // 视频总时长 currentTime: 0, // 当前播放时间 progress: 0 // 进度条进度 }, onLoad: function () { // 获取video组件实例 this.videoContext = wx.createVideoContext('myVideo', this); // 监听视频播放时间变化事件 this.videoContext.onTimeUpdate(this.handleTimeUpdate); // 获取视频总时长 this.videoContext.duration((duration) => { this.setData({ duration: duration }); }); }, handleTimeUpdate: function (e) { // 更新当前播放时间和进度条进度 this.setData({ currentTime: e.detail.currentTime, progress: e.detail.currentTime / this.data.duration * 100 }); } }); ``` css文件部分: ```css .progress-bar { height: 6px; background-color: #ccc; } ``` 在上述代码中,我们首先通过wx.createVideoContext()方法获取video组件实例,然后在onLoad()生命周期函数中监听视频播放时间变化事件,并获取视频总时长。在handleTimeUpdate()函数中,我们更新当前播放时间和进度条进度,最后在wxml文件中使用style属性来设置进度条的宽度。 需要注意的是,为了让Video组件支持进度条拖动功能,还需要在wxml文件中添加bindtouchstart、bindtouchmove和bindtouchend事件,并在js文件中添加相应的处理函数。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

卡尔特斯

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值