File size: 8,174 Bytes
8766bc5 | 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | <script context="module" lang="ts">
import type { FileData } from "@gradio/upload";
import { BaseButton } from "@gradio/button/static";
export interface AudioData extends FileData {
crop_min?: number;
crop_max?: number;
}
</script>
<script lang="ts">
import { onDestroy, createEventDispatcher } from "svelte";
import { Upload, ModifyUpload } from "@gradio/upload";
import { BlockLabel } from "@gradio/atoms";
import { Music } from "@gradio/icons";
// @ts-ignore
import Range from "svelte-range-slider-pips";
import { loaded } from "../shared/utils";
import { _ } from "svelte-i18n";
import type { IBlobEvent, IMediaRecorder } from "extendable-media-recorder";
export let value: null | { name: string; data: string } = null;
export let label: string;
export let show_label = true;
export let name = "";
export let source: "microphone" | "upload" | "none";
export let pending = false;
export let streaming = false;
export let autoplay = false;
export let show_edit_button = true;
// TODO: make use of this
// export let type: "normal" | "numpy" = "normal";
let recording = false;
let recorder: IMediaRecorder;
let mode = "";
let header: Uint8Array | undefined = undefined;
let pending_stream: Uint8Array[] = [];
let submit_pending_stream_on_pending_end = false;
let player: HTMLAudioElement;
let inited = false;
let crop_values: [number, number] = [0, 100];
const STREAM_TIMESLICE = 500;
const NUM_HEADER_BYTES = 44;
let audio_chunks: Blob[] = [];
let module_promises: [
Promise<typeof import("extendable-media-recorder")>,
Promise<typeof import("extendable-media-recorder-wav-encoder")>
];
function get_modules(): void {
module_promises = [
import("extendable-media-recorder"),
import("extendable-media-recorder-wav-encoder"),
];
}
if (streaming) {
get_modules();
}
const dispatch = createEventDispatcher<{
change: AudioData | null;
stream: AudioData;
edit: never;
play: never;
pause: never;
stop: never;
end: never;
drag: boolean;
error: string;
upload: FileData;
clear: never;
start_recording: never;
stop_recording: never;
}>();
function blob_to_data_url(blob: Blob): Promise{
return new Promise((fulfill, reject) => {
let reader = new FileReader();
reader.onerror = reject;
reader.onload = () => fulfill(reader.result as string);
reader.readAsDataURL(blob);
});
}
const dispatch_blob = async (
blobs: Uint8Array[] | Blob[],
event: "stream" | "change" | "stop_recording"
): Promise<void> => {
let _audio_blob = new Blob(blobs, { type: "audio/wav" });
value = {
data: await blob_to_data_url(_audio_blob),
name: "audio.wav",
};
dispatch(event, value);
};
async function prepare_audio(): Promise<void> {
let stream: MediaStream | null;
try {
stream = await navigator.mediaDevices.getUserMedia({ audio: true });
} catch (err) {
if (err instanceof DOMException && err.name == "NotAllowedError") {
dispatch("error", $_("audio.allow_recording_access"));
return;
}
throw err;
}
if (stream == null) return;
if (streaming) {
const [{ MediaRecorder, register }, { connect }] = await Promise.all(
module_promises
);
await register(await connect());
recorder = new MediaRecorder(stream, { mimeType: "audio/wav" });
recorder.addEventListener("dataavailable", handle_chunk);
} else {
recorder = new MediaRecorder(stream);
recorder.addEventListener("dataavailable", (event) => {
audio_chunks.push(event.data);
});
recorder.addEventListener("stop", async () => {
recording = false;
await dispatch_blob(audio_chunks, "change");
await dispatch_blob(audio_chunks, "stop_recording");
audio_chunks = [];
});
}
inited = true;
}
async function handle_chunk(event: IBlobEvent): Promise<void> {
let buffer = await event.data.arrayBuffer();
let payload = new Uint8Array(buffer);
if (!header) {
header = new Uint8Array(buffer.slice(0, NUM_HEADER_BYTES));
payload = new Uint8Array(buffer.slice(NUM_HEADER_BYTES));
}
if (pending) {
pending_stream.push(payload);
} else {
let blobParts = [header].concat(pending_stream, [payload]);
dispatch_blob(blobParts, "stream");
pending_stream = [];
}
}
$: if (submit_pending_stream_on_pending_end && pending === false) {
submit_pending_stream_on_pending_end = false;
if (header && pending_stream) {
let blobParts: Uint8Array[] = [header].concat(pending_stream);
pending_stream = [];
dispatch_blob(blobParts, "stream");
}
}
async function record(): Promise<void> {
recording = true;
dispatch("start_recording");
if (!inited) await prepare_audio();
header = undefined;
if (streaming) {
recorder.start(STREAM_TIMESLICE);
} else {
recorder.start();
}
}
onDestroy(() => {
if (recorder && recorder.state !== "inactive") {
recorder.stop();
}
});
function stop(): void {
recorder.stop();
if (streaming) {
recording = false;
dispatch("stop_recording");
if (pending) {
submit_pending_stream_on_pending_end = true;
}
}
}
function clear(): void {
dispatch("change", null);
dispatch("clear");
mode = "";
value = null;
}
function handle_change({
detail: { values },
}: {
detail: { values: [number, number] };
}): void {
if (!value) return;
dispatch("change", {
data: value.data,
name,
crop_min: values[0],
crop_max: values[1],
});
dispatch("edit");
}
function handle_load({
detail,
}: {
detail: {
data: string;
name: string;
size: number;
is_example: boolean;
};
}): void {
value = detail;
dispatch("change", { data: detail.data, name: detail.name });
dispatch("upload", detail);
}
function handle_ended(): void {
dispatch("stop");
dispatch("end");
}
export let dragging = false;
$: dispatch("drag", dragging);
</script>
<BlockLabel
{show_label}
Icon={Music}
float={source === "upload" && value === null}
label={label || $_("audio.audio")}
/>
{#if value === null || streaming}
{#if source === "microphone"}
<div class="mic-wrap">
{#if recording}
<BaseButton size="sm" on:click={stop}>
<span class="record-icon">
<span class="pinger" />
<span class="dot" />
</span>
{$_("audio.stop_recording")}
</BaseButton>
{:else}
<BaseButton size="sm" on:click={record}>
<span class="record-icon">
<span class="dot" />
</span>
{$_("audio.record_from_microphone")}
</BaseButton>
{/if}
</div>
{:else if source === "upload"}
<!-- explicitly listed out audio mimetypes due to iOS bug not recognizing audio/* -->
<Upload
filetype="audio/aac,audio/midi,audio/mpeg,audio/ogg,audio/wav,audio/x-wav,audio/opus,audio/webm,audio/flac,audio/vnd.rn-realaudio,audio/x-ms-wma,audio/x-aiff,audio/amr,audio/*"
on:load={handle_load}
bind:dragging
>
<slot />
</Upload>
{/if}
{:else}
<ModifyUpload
on:clear={clear}
on:edit={() => (mode = "edit")}
editable={show_edit_button}
absolute={true}
/>
<audio
use:loaded={{ autoplay, crop_values }}
controls
bind:this={player}
preload="metadata"
src={value?.data}
on:play
on:pause
on:ended={handle_ended}
data-testid={`${label}-audio`}
/>
{#if mode === "edit" && player?.duration}
<Range
bind:values={crop_values}
range
min={0}
max={100}
step={1}
on:change={handle_change}
/>
{/if}
{/if}
<style>
.mic-wrap {
padding: var(--size-2);
}
.record-icon {
display: flex;
position: relative;
margin-right: var(--size-2);
width: 6px;
height: 6px;
}
.dot {
display: inline-flex;
position: relative;
border-radius: var(--radius-full);
background: var(--color-red-500);
width: 6px;
height: 6px;
}
.pinger {
display: inline-flex;
position: absolute;
opacity: 0.9;
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
border-radius: var(--radius-full);
background: var(--color-red-500);
width: var(--size-full);
height: var(--size-full);
}
@keyframes ping {
75%,
100% {
transform: scale(2);
opacity: 0;
}
}
audio {
padding: var(--size-2);
width: var(--size-full);
height: var(--size-14);
}
</style>
|