mirror of
https://github.com/HumanAIGC-Engineering/gradio-webrtc.git
synced 2026-02-05 01:49:23 +08:00
475 lines
12 KiB
Svelte
475 lines
12 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher, onMount } from "svelte";
|
|
import type { ComponentType } from "svelte";
|
|
import {
|
|
Circle,
|
|
Square,
|
|
DropdownArrow,
|
|
Spinner,
|
|
Microphone as Mic,
|
|
} from "@gradio/icons";
|
|
import type { I18nFormatter } from "@gradio/utils";
|
|
import { StreamingBar } from "@gradio/statustracker";
|
|
import WebcamPermissions from "./WebcamPermissions.svelte";
|
|
import { fade } from "svelte/transition";
|
|
import {
|
|
get_devices,
|
|
get_video_stream,
|
|
set_available_devices,
|
|
} from "./stream_utils";
|
|
import { start, stop } from "./webrtc_utils";
|
|
import PulsingIcon from "./PulsingIcon.svelte";
|
|
|
|
let video_source: HTMLVideoElement;
|
|
let available_video_devices: MediaDeviceInfo[] = [];
|
|
let selected_device: MediaDeviceInfo | null = null;
|
|
let _time_limit: number | null = null;
|
|
export let time_limit: number | null = null;
|
|
let stream_state: "open" | "waiting" | "closed" = "closed";
|
|
export let on_change_cb: (msg: "tick" | "change") => void;
|
|
export let reject_cb: (msg: object) => void;
|
|
export let mode: "send-receive" | "send";
|
|
const _webrtc_id = Math.random().toString(36).substring(2);
|
|
export let rtp_params: RTCRtpParameters = {} as RTCRtpParameters;
|
|
export let icon: string | undefined | ComponentType = undefined;
|
|
export let icon_button_color: string = "var(--color-accent)";
|
|
export let icon_radius: number = 50;
|
|
export let pulse_color: string = "var(--color-accent)";
|
|
export let button_labels: { start: string; stop: string; waiting: string };
|
|
|
|
export const modify_stream: (state: "open" | "closed" | "waiting") => void = (
|
|
state: "open" | "closed" | "waiting",
|
|
) => {
|
|
if (state === "closed") {
|
|
_time_limit = null;
|
|
stream_state = "closed";
|
|
} else if (state === "waiting") {
|
|
stream_state = "waiting";
|
|
} else {
|
|
stream_state = "open";
|
|
}
|
|
};
|
|
|
|
let canvas: HTMLCanvasElement;
|
|
export let track_constraints: MediaTrackConstraints | null = null;
|
|
export let rtc_configuration: Object;
|
|
export let stream_every = 1;
|
|
export let server: {
|
|
offer: (body: any) => Promise<any>;
|
|
};
|
|
|
|
export let include_audio: boolean;
|
|
export let i18n: I18nFormatter;
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
tick: undefined;
|
|
error: string;
|
|
start_recording: undefined;
|
|
stop_recording: undefined;
|
|
close_stream: undefined;
|
|
}>();
|
|
|
|
onMount(() => (canvas = document.createElement("canvas")));
|
|
|
|
const handle_device_change = async (event: InputEvent): Promise<void> => {
|
|
const target = event.target as HTMLInputElement;
|
|
const device_id = target.value;
|
|
|
|
await get_video_stream(
|
|
include_audio,
|
|
video_source,
|
|
device_id,
|
|
track_constraints,
|
|
).then(async (local_stream) => {
|
|
stream = local_stream;
|
|
selected_device =
|
|
available_video_devices.find(
|
|
(device) => device.deviceId === device_id,
|
|
) || null;
|
|
options_open = false;
|
|
});
|
|
};
|
|
|
|
async function access_webcam(): Promise<void> {
|
|
try {
|
|
get_video_stream(include_audio, video_source, null, track_constraints)
|
|
.then(async (local_stream) => {
|
|
webcam_accessed = true;
|
|
available_video_devices = await get_devices();
|
|
stream = local_stream;
|
|
})
|
|
.then(() => set_available_devices(available_video_devices))
|
|
.then((devices) => {
|
|
available_video_devices = devices;
|
|
|
|
const used_devices = stream
|
|
.getTracks()
|
|
.map((track) => track.getSettings()?.deviceId)[0];
|
|
|
|
selected_device = used_devices
|
|
? devices.find((device) => device.deviceId === used_devices) ||
|
|
available_video_devices[0]
|
|
: available_video_devices[0];
|
|
});
|
|
|
|
if (!navigator.mediaDevices || !navigator.mediaDevices.getUserMedia) {
|
|
dispatch("error", i18n("image.no_webcam_support"));
|
|
}
|
|
} catch (err) {
|
|
if (err instanceof DOMException && err.name == "NotAllowedError") {
|
|
dispatch("error", i18n("image.allow_webcam_access"));
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
let _on_change_cb = (msg: "change" | "tick" | "stopword" | any) => {
|
|
if (msg.type === "end_stream") {
|
|
on_change_cb(msg);
|
|
stream_state = "closed";
|
|
stop(pc);
|
|
access_webcam();
|
|
} else {
|
|
console.debug("calling on_change_cb with msg", msg);
|
|
on_change_cb(msg);
|
|
}
|
|
};
|
|
|
|
let recording = false;
|
|
let stream: MediaStream;
|
|
|
|
let webcam_accessed = false;
|
|
let pc: RTCPeerConnection;
|
|
export let webrtc_id;
|
|
|
|
async function start_webrtc(): Promise<void> {
|
|
if (stream_state === "closed") {
|
|
pc = new RTCPeerConnection(rtc_configuration);
|
|
pc.addEventListener("connectionstatechange", async (event) => {
|
|
switch (pc.connectionState) {
|
|
case "connected":
|
|
stream_state = "open";
|
|
_time_limit = time_limit;
|
|
dispatch("tick");
|
|
break;
|
|
case "disconnected":
|
|
stream_state = "closed";
|
|
_time_limit = null;
|
|
stop(pc);
|
|
await access_webcam();
|
|
break;
|
|
case "failed":
|
|
stream_state = "closed";
|
|
_time_limit = null;
|
|
dispatch("error", "Connection failed!");
|
|
stop(pc);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
stream_state = "waiting";
|
|
webrtc_id = Math.random().toString(36).substring(2);
|
|
const timeoutId = setTimeout(() => {
|
|
// @ts-ignore
|
|
on_change_cb({ type: "connection_timeout" });
|
|
}, 5000);
|
|
|
|
start(
|
|
stream,
|
|
pc,
|
|
mode === "send" ? null : video_source,
|
|
server.offer,
|
|
webrtc_id,
|
|
"video",
|
|
_on_change_cb,
|
|
rtp_params,
|
|
undefined,
|
|
reject_cb,
|
|
)
|
|
.then((connection) => {
|
|
clearTimeout(timeoutId);
|
|
pc = connection;
|
|
})
|
|
.catch(() => {
|
|
clearTimeout(timeoutId);
|
|
console.info("catching");
|
|
stream_state = "closed";
|
|
});
|
|
} else {
|
|
stop(pc);
|
|
stream_state = "closed";
|
|
_time_limit = null;
|
|
await access_webcam();
|
|
}
|
|
}
|
|
|
|
let options_open = false;
|
|
|
|
export function click_outside(node: Node, cb: any): any {
|
|
const handle_click = (event: MouseEvent): void => {
|
|
if (
|
|
node &&
|
|
!node.contains(event.target as Node) &&
|
|
!event.defaultPrevented
|
|
) {
|
|
cb(event);
|
|
}
|
|
};
|
|
|
|
document.addEventListener("click", handle_click, true);
|
|
|
|
return {
|
|
destroy() {
|
|
document.removeEventListener("click", handle_click, true);
|
|
},
|
|
};
|
|
}
|
|
|
|
function handle_click_outside(event: MouseEvent): void {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
options_open = false;
|
|
}
|
|
|
|
const audio_source_callback = () => video_source.srcObject as MediaStream;
|
|
</script>
|
|
|
|
<div class="wrap">
|
|
<StreamingBar time_limit={_time_limit} />
|
|
{#if stream_state === "open" && include_audio}
|
|
<div class="audio-indicator">
|
|
<PulsingIcon
|
|
{stream_state}
|
|
{audio_source_callback}
|
|
icon={icon || Mic}
|
|
{icon_button_color}
|
|
{pulse_color}
|
|
{icon_radius}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
<!-- svelte-ignore a11y-media-has-caption -->
|
|
<!-- need to suppress for video streaming https://github.com/sveltejs/svelte/issues/5967 -->
|
|
<video
|
|
bind:this={video_source}
|
|
class:hide={!webcam_accessed}
|
|
class:flip={stream_state != "open" ||
|
|
(stream_state === "open" && include_audio)}
|
|
autoplay={true}
|
|
playsinline={true}
|
|
/>
|
|
<!-- svelte-ignore a11y-missing-attribute -->
|
|
{#if !webcam_accessed}
|
|
<div
|
|
in:fade={{ delay: 100, duration: 200 }}
|
|
title="grant webcam access"
|
|
style="height: 100%"
|
|
>
|
|
<WebcamPermissions on:click={async () => access_webcam()} />
|
|
</div>
|
|
{:else}
|
|
<div class="button-wrap">
|
|
<button on:click={start_webrtc} aria-label={"start stream"}>
|
|
{#if stream_state === "waiting"}
|
|
<div class="icon-with-text">
|
|
<div class="icon color-primary" title="spinner">
|
|
<Spinner />
|
|
</div>
|
|
{button_labels.waiting || i18n("audio.waiting")}
|
|
</div>
|
|
{:else if stream_state === "open"}
|
|
<div class="icon-with-text">
|
|
<div class="icon color-primary" title="stop recording">
|
|
<Square />
|
|
</div>
|
|
{button_labels.stop || i18n("audio.stop")}
|
|
</div>
|
|
{:else}
|
|
<div class="icon-with-text">
|
|
<div class="icon color-primary" title="start recording">
|
|
<Circle />
|
|
</div>
|
|
{button_labels.start || i18n("audio.record")}
|
|
</div>
|
|
{/if}
|
|
</button>
|
|
{#if !recording}
|
|
<button
|
|
class="icon"
|
|
on:click={() => (options_open = true)}
|
|
aria-label="select input source"
|
|
>
|
|
<DropdownArrow />
|
|
</button>
|
|
{/if}
|
|
</div>
|
|
{#if options_open && selected_device}
|
|
<select
|
|
class="select-wrap"
|
|
aria-label="select source"
|
|
use:click_outside={handle_click_outside}
|
|
on:change={handle_device_change}
|
|
>
|
|
<button
|
|
class="inset-icon"
|
|
on:click|stopPropagation={() => (options_open = false)}
|
|
>
|
|
<DropdownArrow />
|
|
</button>
|
|
{#if available_video_devices.length === 0}
|
|
<option value="">{i18n("common.no_devices")}</option>
|
|
{:else}
|
|
{#each available_video_devices as device}
|
|
<option
|
|
value={device.deviceId}
|
|
selected={selected_device.deviceId === device.deviceId}
|
|
>
|
|
{device.label}
|
|
</option>
|
|
{/each}
|
|
{/if}
|
|
</select>
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
.wrap {
|
|
position: relative;
|
|
width: var(--size-full);
|
|
height: var(--size-full);
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
video {
|
|
width: var(--size-full);
|
|
height: var(--size-full);
|
|
object-fit: cover;
|
|
}
|
|
|
|
.button-wrap {
|
|
position: absolute;
|
|
background-color: var(--block-background-fill);
|
|
border: 1px solid var(--border-color-primary);
|
|
border-radius: var(--radius-xl);
|
|
padding: var(--size-1-5);
|
|
display: flex;
|
|
bottom: var(--size-2);
|
|
left: 50%;
|
|
transform: translate(-50%, 0);
|
|
box-shadow: var(--shadow-drop-lg);
|
|
border-radius: var(--radius-xl);
|
|
line-height: var(--size-3);
|
|
color: var(--button-secondary-text-color);
|
|
}
|
|
|
|
.icon-with-text {
|
|
min-width: var(--size-16);
|
|
align-items: center;
|
|
margin: 0 var(--spacing-xl);
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
/* Add gap between icon and text */
|
|
gap: var(--size-2);
|
|
}
|
|
|
|
.audio-indicator {
|
|
position: absolute;
|
|
top: var(--size-2);
|
|
right: var(--size-2);
|
|
z-index: var(--layer-2);
|
|
height: var(--size-5);
|
|
width: var(--size-5);
|
|
}
|
|
|
|
@media (--screen-md) {
|
|
button {
|
|
bottom: var(--size-4);
|
|
}
|
|
}
|
|
|
|
@media (--screen-xl) {
|
|
button {
|
|
bottom: var(--size-8);
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.color-primary {
|
|
fill: var(--primary-600);
|
|
stroke: var(--primary-600);
|
|
color: var(--primary-600);
|
|
}
|
|
|
|
.flip {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.select-wrap {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
color: var(--button-secondary-text-color);
|
|
background-color: transparent;
|
|
width: 95%;
|
|
font-size: var(--text-md);
|
|
position: absolute;
|
|
bottom: var(--size-2);
|
|
background-color: var(--block-background-fill);
|
|
box-shadow: var(--shadow-drop-lg);
|
|
border-radius: var(--radius-xl);
|
|
z-index: var(--layer-top);
|
|
border: 1px solid var(--border-color-primary);
|
|
text-align: left;
|
|
line-height: var(--size-4);
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
left: 50%;
|
|
transform: translate(-50%, 0);
|
|
max-width: var(--size-52);
|
|
}
|
|
|
|
.select-wrap > option {
|
|
padding: 0.25rem 0.5rem;
|
|
border-bottom: 1px solid var(--border-color-accent);
|
|
padding-right: var(--size-8);
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.select-wrap > option:hover {
|
|
background-color: var(--color-accent);
|
|
}
|
|
|
|
.select-wrap > option:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.inset-icon {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: -6.5px;
|
|
width: var(--size-10);
|
|
height: var(--size-5);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
@media (--screen-md) {
|
|
.wrap {
|
|
font-size: var(--text-lg);
|
|
}
|
|
}
|
|
</style>
|