File size: 3,875 Bytes
a9b52e3 c058955 a9b52e3 50c57e9 a9b52e3 50c57e9 a9b52e3 50c57e9 a9b52e3 50c57e9 a9b52e3 50c57e9 a9b52e3 50c57e9 a9b52e3 |
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 |
<script lang="ts">
import { onMount } from "svelte";
import type { I18nFormatter } from "@gradio/utils";
import WaveSurfer from "@gryannote/wavesurfer.js";
import RecordPlugin from "@gryannote/wavesurfer.js/dist/plugins/record.js";
import type { WaveformOptions } from "../shared/types";
import DeviceSelect from "../shared/DeviceSelect.svelte";
export let recording = false;
export let paused_recording = false;
export let stop: () => void;
export let record: () => void;
export let i18n: I18nFormatter;
export let waveform_settings: Record<string, any>;
export let waveform_options: WaveformOptions = {
show_recording_waveform: true
};
let micWaveform: WaveSurfer;
let waveformRecord: RecordPlugin;
let microphoneContainer: HTMLDivElement;
let micDevices: MediaDeviceInfo[] = [];
onMount(() => {
create_mic_waveform();
});
const create_mic_waveform = (): void => {
if (micWaveform !== undefined) micWaveform.destroy();
if (!microphoneContainer) return;
micWaveform = WaveSurfer.create({
...waveform_settings,
height: 100,
container: microphoneContainer
});
waveformRecord = micWaveform.registerPlugin(RecordPlugin.create());
};
</script>
<div class="mic-wrap">
{#if waveform_options.show_recording_waveform}
<div
bind:this={microphoneContainer}
style:display={recording ? "block" : "none"}
/>
{/if}
<div class="controls">
{#if recording}
<button
class={paused_recording ? "stop-button-paused" : "stop-button"}
on:click={() => {
waveformRecord?.stopMic();
stop();
}}
>
<span class="record-icon">
<span class="pinger" />
<span class="dot" />
</span>
{paused_recording ? i18n("audio.pause") : i18n("audio.stop")}
</button>
{:else}
<button
class="record-button"
on:click={() => {
waveformRecord?.startMic();
record();
}}
>
<span class="record-icon">
<span class="dot" />
</span>
{i18n("audio.record")}
</button>
{/if}
<DeviceSelect bind:micDevices {i18n} />
</div>
</div>
<style>
.controls {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.mic-wrap {
display: block;
align-items: center;
margin: var(--spacing-xl);
}
.stop-button-paused {
display: none;
height: var(--size-8);
width: var(--size-20);
background-color: var(--block-background-fill);
border-radius: var(--radius-3xl);
align-items: center;
border: 1px solid var(--neutral-400);
margin-right: 5px;
}
.stop-button-paused::before {
content: "";
height: var(--size-4);
width: var(--size-4);
border-radius: var(--radius-full);
background: var(--primary-600);
margin: 0 var(--spacing-xl);
}
.stop-button::before {
content: "";
height: var(--size-4);
width: var(--size-4);
border-radius: var(--radius-full);
background: var(--primary-600);
margin: 0 var(--spacing-xl);
animation: scaling 1800ms infinite;
}
.stop-button {
height: var(--size-8);
width: var(--size-20);
background-color: var(--block-background-fill);
border-radius: var(--radius-3xl);
align-items: center;
border: 1px solid var(--primary-600);
margin-right: 5px;
display: flex;
}
.record-button::before {
content: "";
height: var(--size-4);
width: var(--size-4);
border-radius: var(--radius-full);
background: var(--primary-600);
margin: 0 var(--spacing-xl);
}
.record-button {
height: var(--size-8);
width: var(--size-24);
background-color: var(--block-background-fill);
border-radius: var(--radius-3xl);
display: flex;
align-items: center;
border: 1px solid var(--neutral-400);
}
@keyframes scaling {
0% {
background-color: var(--primary-600);
scale: 1;
}
50% {
background-color: var(--primary-600);
scale: 1.2;
}
100% {
background-color: var(--primary-600);
scale: 1;
}
}
</style>
|