feat: 引入prettier
This commit is contained in:
@@ -23,8 +23,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
if (webSocketStore.connected) {
|
||||
if (typeof data === "string") {
|
||||
webSocketStore.send(data);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
webSocketStore.websocket?.send(data);
|
||||
}
|
||||
}
|
||||
@@ -53,8 +52,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
* 开始录音
|
||||
*/
|
||||
const startRecording = async () => {
|
||||
if (isRecording.value)
|
||||
return;
|
||||
if (isRecording.value) return;
|
||||
messages.value = [];
|
||||
// 确保 WebSocket 已连接
|
||||
if (!webSocketStore.connected) {
|
||||
@@ -62,8 +60,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
// 等待连接建立
|
||||
await new Promise<void>((resolve) => {
|
||||
const check = () => {
|
||||
if (webSocketStore.connected)
|
||||
resolve();
|
||||
if (webSocketStore.connected) resolve();
|
||||
else setTimeout(check, 100);
|
||||
};
|
||||
check();
|
||||
@@ -73,11 +70,14 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
// 获取麦克风音频流
|
||||
const stream = await navigator.mediaDevices.getUserMedia({ audio: true });
|
||||
// 创建音频上下文,采样率16kHz
|
||||
audioContext = new (window.AudioContext || (window as any).webkitAudioContext)({
|
||||
sampleRate: 16000,
|
||||
audioContext = new (window.AudioContext ||
|
||||
(window as any).webkitAudioContext)({
|
||||
sampleRate: 16000
|
||||
});
|
||||
// 用Blob方式创建AudioWorklet模块的URL
|
||||
const blob = new Blob([audioProcessorCode], { type: "application/javascript" });
|
||||
const blob = new Blob([audioProcessorCode], {
|
||||
type: "application/javascript"
|
||||
});
|
||||
const processorUrl = URL.createObjectURL(blob);
|
||||
// 加载AudioWorklet模块
|
||||
await audioContext.audioWorklet.addModule(processorUrl);
|
||||
@@ -89,7 +89,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
workletNode = new AudioWorkletNode(audioContext, "audio-processor", {
|
||||
numberOfInputs: 1,
|
||||
numberOfOutputs: 1,
|
||||
channelCount: 1,
|
||||
channelCount: 1
|
||||
});
|
||||
// 监听来自AudioWorklet的音频数据
|
||||
workletNode.port.onmessage = (event) => {
|
||||
@@ -104,8 +104,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
mediaStreamSource.connect(workletNode);
|
||||
workletNode.connect(audioContext.destination);
|
||||
isRecording.value = true;
|
||||
}
|
||||
catch (err) {
|
||||
} catch (err) {
|
||||
// 麦克风权限失败或AudioWorklet加载失败
|
||||
console.error("需要麦克风权限才能录音", err);
|
||||
}
|
||||
@@ -115,8 +114,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
* 停止录音
|
||||
*/
|
||||
const stopRecording = () => {
|
||||
if (!isRecording.value)
|
||||
return;
|
||||
if (!isRecording.value) return;
|
||||
|
||||
// 通知后端录音结束
|
||||
sendMessage(JSON.stringify({ type: "asr_end" }));
|
||||
@@ -124,7 +122,7 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
// 停止所有音轨
|
||||
if (mediaStreamSource?.mediaStream) {
|
||||
const tracks = mediaStreamSource.mediaStream.getTracks();
|
||||
tracks.forEach(track => track.stop());
|
||||
tracks.forEach((track) => track.stop());
|
||||
}
|
||||
|
||||
// 断开音频节点
|
||||
@@ -149,6 +147,6 @@ export const useAsrStore = defineStore("asr", () => {
|
||||
messages,
|
||||
startRecording,
|
||||
stopRecording,
|
||||
sendMessage,
|
||||
sendMessage
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user