Commit eacce66a authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent 4f19a92d
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
let confirmed = false; let confirmed = false;
let rmsLevel = 0; let rmsLevel = 0;
let hasStartedSpeaking = false;
let audioContext; let audioContext;
let analyser; let analyser;
...@@ -82,7 +83,7 @@ ...@@ -82,7 +83,7 @@
const timeDomainData = new Uint8Array(analyser.fftSize); const timeDomainData = new Uint8Array(analyser.fftSize);
let lastSoundTime = Date.now(); let lastSoundTime = Date.now();
let hasStartedSpeaking = false; hasStartedSpeaking = false;
const detectSound = () => { const detectSound = () => {
const processFrame = () => { const processFrame = () => {
...@@ -162,7 +163,11 @@ ...@@ -162,7 +163,11 @@
audioChunks = []; audioChunks = [];
analyseAudio(stream); analyseAudio(stream);
}; };
mediaRecorder.ondataavailable = (event) => audioChunks.push(event.data); mediaRecorder.ondataavailable = (event) => {
if (hasStartedSpeaking) {
audioChunks.push(event.data);
}
};
mediaRecorder.onstop = async () => { mediaRecorder.onstop = async () => {
console.log('Recording stopped'); console.log('Recording stopped');
...@@ -227,12 +232,12 @@ ...@@ -227,12 +232,12 @@
{:else} {:else}
<div <div
class=" {rmsLevel * 100 > 4 class=" {rmsLevel * 100 > 4
? 'size-48' ? ' size-52'
: rmsLevel * 100 > 2 : rmsLevel * 100 > 2
? 'size-[11.5rem]' ? 'size-48'
: rmsLevel * 100 > 1 : rmsLevel * 100 > 1
? 'size-44' ? 'size-[11.5rem]'
: 'size-[10.5rem]'} transition-all bg-black dark:bg-white rounded-full" : 'size-44'} transition-all bg-black dark:bg-white rounded-full"
/> />
{/if} {/if}
</div> </div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment