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