仿三方智能对话分析原始会话窗口

news2025/1/25 4:45:39

设计效果如下:

设计要求如下:

1、顶部播放条播放时,文字内容自动滚动。

监听audio事件timeupdate,只要播放器在播放就会触发该事件。每行文字有开始时间begin。判断当前时间(currentTime)<=开始时间(begin)时,滚动到相应位置。

        // 监听当前播放时间和音频结束事件
        this.$refs.audioPlayer.addEventListener('timeupdate', () => {
            this.currentTime = this.$refs.audioPlayer.currentTime
            // 播放或拖动播放器文字滚动
            this.data.dialogue.some(item => {
                if (item.begin >= (this.currentTime * 1000)) {
                    this.$refs.dialogue.scrollTop = this.$refs[item.begin][0].offsetTop - 300
                    return true
                }
            })
            // 暂停播放
            if (this.endTime) {
                if (this.currentTime >= this.endTime) {
                    this.$refs.audioPlayer.pause()
                    this.endTime = 0
                }
            }
        })

2、点击文字边上的播放按钮,顶部播放器跳转到指定位置播放。

toPlay方法能拿到当前文字行的开始和结束时间(服务端给的),把播放器的当前时间设置成开始时间,结束时间设置给this.endTime,监听audio事件timeupdate中有判断:如果this.endTime存在且this.currentTime >= this.endTime,就暂停播放。

        // 文字播放按钮
        toPlay(begin, end) {
            this.$refs.audioPlayer.currentTime = begin / 1000
            this.$refs.audioPlayer.play()
            this.endTime = end / 1000
        },

3、倍速值扩展,增加2.5,3.0

audio的controls属性产生的默认播放器播放速度最大是2,直接扩展没找到解决办法。

通过属性controlslist="noplaybackrate nodownload"把他们隐藏了

noplaybackrate:隐藏播放速度

nodownload:隐藏下载

然后增加2个按钮(下载和倍速):

        <div class="audio-btns">
            <el-button type="text" class="each-btn" @click="toDownload">下载</el-button>
            <el-popover placement="bottom" trigger="hover" width="300">
                <el-button type="text" v-for="(item, i) in rateConf" :key="i" @click="toPlaybackRate(item)">{{ item }}</el-button>
                <el-button type="text" slot="reference" class="each-btn">倍速 {{ curRate === 1.0 ? '正常' : curRate }}</el-button>
            </el-popover>
        </div>

点击倍速效果如下:

倍速的实现方法:

        // 播放速度
        toPlaybackRate(rate) {
            this.curRate = rate
            this.$refs.audioPlayer.playbackRate = rate
        },

this.curRate用于展示当前选中的倍速,this.$refs.audioPlayer.playbackRate是给播放器赋值为当前选中的倍速。

4、命中规则文字红色显示

getHitRuleWords方法如下:

        // 命中文字特殊显示,b标签占7个字节,所以在计算后面的from、to时要加上前面加进去的b标签
        getHitRuleWords(words, rule) {
            rule.forEach((item, i) => {
                let from = item.from + i * 7
                let to = item.to + i * 7
                words = words.slice(0, from) + '<b>' + words.slice(from, to) + '</b>' + words.slice(to)
            })
            return words
        }

完整代码(vue实现)如下:

<template>
<div class="audio-out">
    <div class="audio-top">
        <!-- 添加一个音频元素 -->
        <audio ref="audioPlayer" preload="auto" controls controlslist="noplaybackrate nodownload" :src="data.audioUrl" style="width: 480px; height: 30px;"></audio>
        <div class="audio-btns">
            <el-button type="text" class="each-btn" @click="toDownload">下载</el-button>
            <el-popover placement="bottom" trigger="hover" width="300">
                <el-button type="text" v-for="(item, i) in rateConf" :key="i" @click="toPlaybackRate(item)">{{ item }}</el-button>
                <el-button type="text" slot="reference" class="each-btn">倍速 {{ curRate === 1.0 ? '正常' : curRate }}</el-button>
            </el-popover>
        </div>
    </div>
    <div class="audio-layer" ref="dialogue">
        <div v-for="(item, i) in data.dialogue" :key="i" :ref="item.begin">
            <template v-if="item.role === '客户'">
                <!-- 用户 or 用户命中规则 -->
                <div class="word-layer" :class="{'hit-rule': item.hitRuleInfoList.length > 0}">
                    <div class="word-header"><el-button type="primary" icon="el-icon-user" circle></el-button></div>
                    <div class="word-cont">
                        <div class="word-time">{{ item.hourMinSec }}</div>
                        <div class="word-text">
                            <div><el-button class="play-btn" type="info" icon="el-icon-caret-right" circle @click="toPlay(item.begin, item.end)"></el-button></div>
                            <template v-if="item.hitRuleInfoList">
                                <p class="text" v-html="getHitRuleWords(item.words, item.hitRuleInfoList)"></p>
                            </template>
                            <template v-else>
                                <p class="text">{{ item.words }}</p>
                            </template>
                            
                        </div>
                    </div>
                </div>
            </template>
            <template v-if="item.role === '客服'">
                <!-- 客服 -->
                <div class="word-layer layer-r" :class="{'hit-rule': item.hitRuleInfoList.length > 0}">
                    <div class="word-cont">
                        <div class="word-time">{{ item.hourMinSec }}</div>
                        <div class="word-text">
                            <template v-if="item.hitRuleInfoList">
                                <p class="text" v-html="getHitRuleWords(item.words, item.hitRuleInfoList)"></p>
                            </template>
                            <template v-else>
                                <p class="text">{{ item.words }}</p>
                            </template>
                            <div><el-button class="play-btn" type="info" icon="el-icon-caret-right" circle @click="toPlay(item.begin, item.end)"></el-button></div>
                        </div>
                    </div>
                    <div class="word-header"><el-button type="info" icon="el-icon-service" circle></el-button></div>
                </div>
            </template>
        </div>
    </div>
</div>
</template>

<script>
export default {
    name: 'audioView',
    props: {
        data: {
            type: Object,
            default () {
                return {
                    audioUrl: '',
                    dialogue: []
                }
            }
        }
    },
    data() {
        return {
            currentTime: 0,
            endTime: 0,
            rateConf: [0.5, 0.75, 1.0, 1.25, 1.5, 1.75, 2.0, 2.5, 3.0],
            curRate: 1.0
        }
    },
    watch: {
        data(n) {
            if (Object.keys(n).length <= 0) {
                this.$refs.audioPlayer.pause()
                this.currentTime = 0
                this.endTime = 0
            }
        }
    },
    mounted() {
        // 当音频加载完成时,获取总时长并更新计算属性
        this.$refs.audioPlayer.addEventListener('loadedmetadata', () => {
            this.$refs.audioPlayer.pause()
            this.currentTime = 0
            this.endTime = 0
            this.toPlaybackRate(this.curRate)
        })

        // 监听当前播放时间和音频结束事件
        this.$refs.audioPlayer.addEventListener('timeupdate', () => {
            this.currentTime = this.$refs.audioPlayer.currentTime
            // 播放或拖动播放器文字滚动
            this.data.dialogue.some(item => {
                if (item.begin >= (this.currentTime * 1000)) {
                    this.$refs.dialogue.scrollTop = this.$refs[item.begin][0].offsetTop - 300
                    return true
                }
            })
            // 暂停播放
            if (this.endTime) {
                if (this.currentTime >= this.endTime) {
                    this.$refs.audioPlayer.pause()
                    this.endTime = 0
                }
            }
        })
    },
    methods: {
        // 播放速度
        toPlaybackRate(rate) {
            this.curRate = rate
            this.$refs.audioPlayer.playbackRate = rate
        },
        // 命中文字特殊显示
        getHitRuleWords(words, rule) {
            rule.forEach((item, i) => {
                let from = item.from + i * 7
                let to = item.to + i * 7
                words = words.slice(0, from) + '<b>' + words.slice(from, to) + '</b>' + words.slice(to)
            })
            return words
        },
        // 文字播放按钮
        toPlay(begin, end) {
            this.$refs.audioPlayer.currentTime = begin / 1000
            this.$refs.audioPlayer.play()
            this.endTime = end / 1000
        },
        // 下载
        toDownload() {
            window.open(this.data.audioUrl)
        }
    }
}
</script>

<style lang="scss" scoped>
.audio-out {
    display: flex;
    flex-direction: column;
    background-color: #ddd;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.audio-top {
    background-color: #f1f3f4;
    height: 55px;
}
.audio-layer {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.audio-btns {
    text-align: right;
    .each-btn {
        padding: 0 5px;

    }
}
// 用户
.word-layer {
    display: flex;
    margin-top: 25px;
    .word-header {
        margin: 0 10px;
        .el-button--primary {
            background-color: #e1f9ff;
            border-color: #e1f9ff;
            color: #2399ff;
        }
    }
    .word-cont {
        position: relative;
        background-color: #e1f9ff;
        border-radius: 20px;
        
    }
    .word-time {
        padding: 0 10px;
        position: absolute;
        left: 0;
        top: -20px;
        color: #999;
    }
    .word-text {
        display: flex;
        align-items: center;
        padding: 5px 10px;
    }
    .text {
        line-height: 1.5em;
    }
    .el-button.is-circle {
        padding: 5px;
        font-size: 18px;
    }
    .play-btn {
        background-color: #2399ff;
        color: #e1f9ff;
        margin: 0 10px 0 0;
    }
    .play-btn.is-circle {
        padding: 0;
        border: 0
    }
}
// 客服
.layer-r {
    justify-content: right;
    .word-time {
        left: auto;
        right: 0;
    }
    .word-cont {
        background-color: #c9c9c9;
    }
    .play-btn {
        background-color: #333;
        color: #c9c9c9;
        margin: 0 0 0 10px;
    }
}
// 命中规则
.hit-rule {
    .word-cont {
        background-color: #fdf2f3;
    }
    .play-btn {
        background-color: #bd0926;
        color: #fdf2f3;
    }
    /deep/.text b {
        color: #FF0000;
        font-weight: normal;
    }
}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1397069.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【分布式技术】Elastic Stack部署,实操logstash的过滤模块常用四大插件

目录 一、Elastic Stack&#xff0c;之前被称为ELK Stack 完成ELK与Filebeat对接 步骤一&#xff1a;安装nginx做测试 步骤二&#xff1a;完成filebeat二进制部署 步骤三&#xff1a;准备logstash的测试文件filebeat.conf 步骤四&#xff1a;完成实验测试 二、logstash拥有…

【REMB 】翻译:草案remb-03

REMB REMB消息 以及 绝对时间戳选项 在带宽估计中的使用 :an absolute-value timestamp option for use in bandwidth estimatoin. 接收方带宽估计的RTCP消息 REMB 这位大神翻译的更好。 RTCP message for Receiver Estimated Maximum Bitrate draft-alvestrand-rmcat-remb-03…

vite多页面打包学习(一)

一、前期准备 首先初始化两套独立的vue实例和相关生态&#xff08;多页面嘛&#xff09;&#xff0c;如下 我在src文件下创建了pages大文件夹&#xff0c;并初始化了两套页面分别为index和page1&#xff0c;每套页面都有自己单独的组件、路由、状态、入口等等&#xff0c;这里…

python数字图像处理基础(十一)——光流估计

目录 概念Lucas-Kanade算法函数表达式 概念 光流是空间运动物体在观测成像平面上的像素运动的“瞬时速度”&#xff0c;根据各个像素点的速度矢量特征&#xff0c;可以对图像进行动态分析&#xff0c;例如目标跟踪。要求如下&#xff1a; 亮度恒定&#xff1a;同一点随着时间…

FPGA之分布RAM(1)

SLICEM 资源可以实现分布式 RAM。可以实现的 RAM 类型&#xff1a; 单口 RAM 双端口 简单的双端口 四端口 下表给出了通过1SLICEM中的4个LUT可以实现的RAM类型 1.32 X2 Quad Port Distributed RAM 我们介绍过把 6 输入 LUT 当作 2 个 5输入 LUT 使用&#xff0c;在这里&a…

easyui渲染隐藏域<input type=“hidden“ />为textbox可作为分割条使用

最近在修改前端代码的时候&#xff0c;偶然发现使用javascript代码渲染的方式将<input type"hidden" />渲染为textbox时&#xff0c;会显示一个神奇的效果&#xff0c;这个textbox输入框并不会隐藏&#xff0c;而是显示未一个细条&#xff0c;博主发现非常适合…

【2015~2024】大牛直播SDK演化史

大牛直播SDK的由来 大牛直播SDK始于2015年&#xff0c;最初我们只是想做个低延迟的RTMP推拉流解决方案&#xff0c;用于移动单兵等毫秒级延迟的场景下&#xff0c;我们先是实现了Android平台RTMP直播推送模块&#xff0c;当我们用市面上可以找到的RTMP播放器测试时延的时候&am…

Debezium发布历史75

原文地址&#xff1a; https://debezium.io/blog/2019/10/22/audit-logs-with-kogito/ 欢迎关注留言&#xff0c;我是收集整理小能手&#xff0c;工具翻译&#xff0c;仅供参考&#xff0c;笔芯笔芯. 使用 Kogito 进行审核日志的管理服务 十月 22, 2019 作者&#xff1a; Mac…

三维重建(3)--单视几何

目录 一、无穷远点、无穷远线、无穷远平面 1、2D平面上的无穷远问题 2、3D平面上的无穷远问题 二、影消点与影消线 1、2D平面上的无穷远点&#xff0c;无穷远线变换 2、影消点 3、影消线 三、单视重构 1、两平行线夹角与影消线关系 2、单视图标定 一、无穷远点、无…

Apifox 国产接口自动化利器 之入门篇

Apifox 产品介绍 Apifox 是集 API 文档、API 调试、API Mock、API 自动化测试多项实用功能为一体的 API 管理平台&#xff0c;定位为 Postman Swagger Mock JMeter。旨在通过一套系统、一份数据&#xff0c;解决多个工具之间的数据同步问题。只需在 Apifox 中定义 API 文档…

Java 全栈知识点问题汇总(上)

Java 全栈知识点问题汇总&#xff08;上&#xff09; 1 Java 基础 1.1 语法基础 面向对象特性&#xff1f;a a b 与 a b 的区别3*0.1 0.3 将会返回什么? true 还是 false?能在 Switch 中使用 String 吗?对equals()和hashCode()的理解?final、finalize 和 finally 的不同…

Win10 打开文件突然鼠标变成一个蓝色大圈卡住点不了也打不开文件,重启电脑也是这样

环境: Win10 专业版 加密客户端环境 问题描述: Win10 打开桌面word文件突然鼠标变成一个蓝色大圈卡住点不了也打不开文件,重启电脑也是这样,只有蓝色圈变大没有鼠标指针出现圈卡着不会动,和那些有鼠标箭头加小蓝色圈不一样 解决方案: 某网上查看的,还是要自己排查…

OceanBase集群扩缩容

​ OceanBase 数据库采用 Shared-Nothing 架构&#xff0c;各个节点之间完全对等&#xff0c;每个节点都有自己的 SQL 引擎、存储引擎、事务引擎&#xff0c;天然支持多租户&#xff0c;租户间资源、数据隔离&#xff0c;集群运行的最小资源单元是Unit&#xff0c;每个租户在每…

LeetCode、2300. 咒语和药水的成功对数【中等,排序+二分】

文章目录 前言LeetCode、2300. 咒语和药水的成功对数【中等&#xff0c;排序二分】题目及类型思路及代码 资料获取 前言 博主介绍&#xff1a;✌目前全网粉丝2W&#xff0c;csdn博客专家、Java领域优质创作者&#xff0c;博客之星、阿里云平台优质作者、专注于Java后端技术领域…

聚铭入选“2023中国数字安全能力图谱(精选版)”安全运营领域

近日&#xff0c;国内权威数字安全领域第三方调研机构数世咨询正式发布《2023年度中国数字安全能力图谱&#xff08;精选版&#xff09;》。聚铭网络作为国内领先的安全运营商&#xff0c;凭借在细分领域突出优势&#xff0c;成功入选该图谱“安全运营”领域代表厂商。 据悉&a…

python tkinter 最简洁的计算器按钮排列

代码如下&#xff0c;只要再加上按键绑定事件函数&#xff0c;计算器既可使用了。 import tkinter as tk from tkinter.ttk import Separator,Buttonif __name__ __main__:Buttons [[%,CE,C,←],[1/x,x,√x,],[7, 8, 9, x],[4, 5, 6, -],[1, 2, 3, ],[, 0, ., ]]root tk.T…

MyBatis 使用报错: Can‘t generate mapping method with primitive return type

文章目录 前言问题原因解决方案个人简介 前言 今天在新项目中使用 MyBatis 报如下错误&#xff1a;Cant generate mapping method with primitive return type 问题原因 发现是 Mapper 注解引入错误&#xff0c;错误引入 org.mapstruct.Mapper, 实际应该引入 org.apache.ibat…

FlinkAPI开发之状态管理

案例用到的测试数据请参考文章&#xff1a; Flink自定义Source模拟数据流 原文链接&#xff1a;https://blog.csdn.net/m0_52606060/article/details/135436048 Flink中的状态 概述 有状态的算子 状态的分类 托管状态&#xff08;Managed State&#xff09;和原始状态&…

如何实现 H5 秒开?

我在简历上写了精通 H5&#xff0c;结果面试官上来就问&#xff1a; 同学&#xff0c;你说你精通 H5 &#xff0c;那你能不能说一下怎么实现 H5 秒 由于没怎么做过性能优化&#xff0c;我只能凭着印象&#xff0c;断断续续地罗列了几点&#xff1a; 网络优化&#xff1a;http2、…

JOSEF约瑟 双位置继电器UEG/C-4H4D AC220V 新款导轨安装 端子号可订做

系列型号&#xff1a; UEG/C-2H双稳态中间继电器&#xff1b;UEG/C-1H1D双稳态中间继电器&#xff1b; 双稳态中间继电器UEG/C-4H4D&#xff1b;UEG/C-3H1D双稳态中间继电器&#xff1b; UEG/C-2H2D双稳态中间继电器&#xff1b;UEG/C-4H双稳态中间继电器&#xff1b; UEG/…