This commit is contained in:
weipengfei 2023-10-13 10:57:53 +08:00
parent 8e54160b67
commit 6a6a855373
1 changed files with 0 additions and 24 deletions

View File

@ -92,17 +92,13 @@ async function handleCopy() {
}
}
const playStatus = ref('end')
const playStatus = ref('end')
let playing = 0
let sok = false
let sok = false
async function radioPlay() {
console.log('播放', props.mp3)
audioElements.length = 0
audioElements.length = 0
const socket = new WebSocket('wss://chat.lihaink.cn/zhanti/tts')
sok = true
sok = true
const promise = () => {
return new Promise((resolve, reject) => {
@ -117,8 +113,6 @@ async function radioPlay() {
await promise()
socket.onerror = (event: any) => { sok = false; console.log('连接错误事件: ', event); console.log('sok状态', sok);
}
// WebSocket
socket.onclose = (event: any) => {
@ -127,9 +121,6 @@ async function radioPlay() {
console.log('sok状态', sok);
}
// socket.send(JSON.stringify({
// data: '012Mate 60Mate 607000',
// }))
// socket.send(JSON.stringify({
// data: '012Mate 60Mate 607000',
// }))
@ -138,7 +129,6 @@ async function radioPlay() {
data: props.text,
}))
playStatus.value = 'playing'
playStatus.value = 'playing'
let i = 0
// WebSocket
socket.onmessage = (event: any) => {
@ -178,7 +168,6 @@ const onAudioEnd = (index: any) => {
audioElements[playing].play()
}
else { playStatus.value = 'end' }
else { playStatus.value = 'end' }
}
//
const audioElements = reactive([])
@ -189,25 +178,17 @@ const playAudio = (playIndex: any) => {
}
watch(() => audioElements.length, (newVal, oldVal) => {
if (playStatus.value == 'pause')
return
if (newVal > playing && playFlag == false && newVal > 0) {
if (playStatus.value == 'pause')
return
if (newVal > playing && playFlag == false && newVal > 0) {
audioElements[playing].play()
playStatus.value = 'playing'
}
playStatus.value = 'playing'
}
})
let pauseIndex = -1
let pauseIndex = -1
//
const pauseAudio = () => {
pauseIndex = playing + 0
playStatus.value = 'pause'
pauseIndex = playing + 0
playStatus.value = 'pause'
for (let i = 0; i < audioElements.length; i++)
@ -218,11 +199,6 @@ const noPauseAudio = () => {
audioElements[pauseIndex].play()
pauseIndex = -1
}
const noPauseAudio = () => {
playStatus.value = 'playing'
audioElements[pauseIndex].play()
pauseIndex = -1
}
</script>
<template>