Spaces:
Sleeping
Sleeping
File size: 7,152 Bytes
88cc829 862ccf9 88cc829 862ccf9 88cc829 862ccf9 88cc829 862ccf9 88cc829 862ccf9 88cc829 862ccf9 88cc829 862ccf9 88cc829 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
"use client";
import { useCallback, useMemo, useState } from "react";
import { useWorker } from "./useWorker";
import Constants from "../constants";
interface ProgressItem {
file: string;
loaded: number;
progress: number;
total: number;
name: string;
status: string;
}
interface TranscriberUpdateData {
data: [
string,
{ chunks: { text: string; timestamp: [number, number | null] }[] },
];
text: string;
}
interface TranscriberCompleteData {
data: {
text: string;
chunks: { text: string; timestamp: [number, number | null] }[];
};
}
export interface TranscriberData {
isComplete?: boolean;
isBusy: boolean;
text: string;
chunks: { text: string; timestamp: [number, number | null] }[];
}
export interface Transcriber {
onInputChange: () => void;
isBusy: boolean;
isComplete: boolean;
isModelLoading: boolean;
progressItems: ProgressItem[];
start: (audioData: AudioBuffer | undefined) => void;
output?: TranscriberData;
model: string;
setModel: (model: string) => void;
multilingual: boolean;
setMultilingual: (model: boolean) => void;
quantized: boolean;
setQuantized: (model: boolean) => void;
subtask: string;
setSubtask: (subtask: string) => void;
language?: string;
setLanguage: (language: string) => void;
}
export function useTranscriber(): Transcriber {
const [transcript, setTranscript] = useState<TranscriberData | undefined>(
undefined,
);
const [isBusy, setIsBusy] = useState(false);
const [isComplete, setIsComplete] = useState(false);
const [isModelLoading, setIsModelLoading] = useState(false);
const [progressItems, setProgressItems] = useState<ProgressItem[]>([]);
const webWorker = useWorker((event) => {
const message = event.data;
// Update the state with the result
switch (message.status) {
case "progress":
// Model file progress: update one of the progress items.
setProgressItems((prev) =>
prev.map((item) => {
if (item.file === message.file) {
return { ...item, progress: message.progress };
}
return item;
}),
);
break;
case "update":
// Received partial update
// console.log("update", message);
// eslint-disable-next-line no-case-declarations
const updateMessage = message as TranscriberUpdateData;
setTranscript({
isBusy: true,
text: updateMessage.data[0],
chunks: updateMessage.data[1].chunks,
});
break;
case "complete":
// Received complete transcript
// console.log("complete", message);
// eslint-disable-next-line no-case-declarations
const completeMessage = message as TranscriberCompleteData;
setTranscript({
isBusy: false,
text: completeMessage.data.text,
chunks: completeMessage.data.chunks,
});
setIsBusy(false);
setIsComplete(true);
break;
case "initiate":
// Model file start load: add a new progress item to the list.
setIsModelLoading(true);
setProgressItems((prev) => [...prev, message]);
break;
case "ready":
setIsModelLoading(false);
break;
case "error":
setIsBusy(false);
alert(
`${message.data.message} This is most likely because you are using Safari on an M1/M2 Mac. Please try again from Chrome, Firefox, or Edge.\n\nIf this is not the case, please file a bug report.`,
);
break;
case "done":
// Model file loaded: remove the progress item from the list.
setProgressItems((prev) =>
prev.filter((item) => item.file !== message.file),
);
break;
default:
// initiate/download/done
break;
}
});
const [model, setModel] = useState<string>(Constants.DEFAULT_MODEL);
const [subtask, setSubtask] = useState<string>(Constants.DEFAULT_SUBTASK);
const [quantized, setQuantized] = useState<boolean>(
Constants.DEFAULT_QUANTIZED,
);
const [multilingual, setMultilingual] = useState<boolean>(
Constants.DEFAULT_MULTILINGUAL,
);
const [language, setLanguage] = useState<string>(
Constants.DEFAULT_LANGUAGE,
);
const onInputChange = useCallback(() => {
setTranscript(undefined);
}, []);
const postRequest = useCallback(
async (audioData: AudioBuffer | undefined) => {
if (audioData) {
setTranscript(undefined);
setIsBusy(true);
setIsComplete(false);
let audio;
if (audioData.numberOfChannels === 2) {
const SCALING_FACTOR = Math.sqrt(2);
let left = audioData.getChannelData(0);
let right = audioData.getChannelData(1);
audio = new Float32Array(left.length);
for (let i = 0; i < audioData.length; ++i) {
audio[i] = SCALING_FACTOR * (left[i] + right[i]) / 2;
}
} else {
// If the audio is not stereo, we can just use the first channel:
audio = audioData.getChannelData(0);
}
webWorker.postMessage({
audio,
model,
multilingual,
quantized,
subtask: multilingual ? subtask : null,
language:
multilingual && language !== "auto" ? language : null,
});
}
},
[webWorker, model, multilingual, quantized, subtask, language],
);
const transcriber = useMemo(() => {
return {
onInputChange,
isBusy,
isComplete,
isModelLoading,
progressItems,
start: postRequest,
output: transcript,
model,
setModel,
multilingual,
setMultilingual,
quantized,
setQuantized,
subtask,
setSubtask,
language,
setLanguage,
};
}, [
onInputChange,
isBusy,
isComplete,
isModelLoading,
progressItems,
postRequest,
transcript,
model,
multilingual,
quantized,
subtask,
language,
]);
return transcriber;
} |