mirror of
https://github.com/HumanAIGC-Engineering/gradio-webrtc.git
synced 2026-02-04 17:39:23 +08:00
* Audio + Video / test Audio * Add code * Fix demo * support additional inputs * Add code * Add code
134 lines
3.7 KiB
Svelte
134 lines
3.7 KiB
Svelte
<svelte:options accessors={true} />
|
|
|
|
<script lang="ts">
|
|
import { Block, UploadText } from "@gradio/atoms";
|
|
import Video from "./shared/InteractiveVideo.svelte";
|
|
import { StatusTracker } from "@gradio/statustracker";
|
|
import type { LoadingStatus } from "@gradio/statustracker";
|
|
import StaticVideo from "./shared/StaticVideo.svelte";
|
|
import StaticAudio from "./shared/StaticAudio.svelte";
|
|
import InteractiveAudio from "./shared/InteractiveAudio.svelte";
|
|
|
|
export let elem_id = "";
|
|
export let elem_classes: string[] = [];
|
|
export let visible = true;
|
|
export let value: string = "__webrtc_value__";
|
|
|
|
export let label: string;
|
|
export let root: string;
|
|
export let show_label: boolean;
|
|
export let loading_status: LoadingStatus;
|
|
export let height: number | undefined;
|
|
export let width: number | undefined;
|
|
export let server: {
|
|
offer: (body: any) => Promise<any>;
|
|
};
|
|
|
|
export let container = false;
|
|
export let scale: number | null = null;
|
|
export let min_width: number | undefined = undefined;
|
|
export let gradio;
|
|
export let rtc_configuration: Object;
|
|
export let time_limit: number | null = null;
|
|
export let modality: "video" | "audio" = "video";
|
|
export let mode: "send-receive" | "receive" | "send" = "send-receive";
|
|
export let track_constraints: MediaTrackConstraints = {};
|
|
|
|
const on_change_cb = (msg: "change" | "tick") => {
|
|
gradio.dispatch(msg === "change" ? "state_change" : "tick");
|
|
}
|
|
|
|
let dragging = false;
|
|
|
|
$: console.log("value", value);
|
|
</script>
|
|
|
|
<Block
|
|
{visible}
|
|
variant={"solid"}
|
|
border_mode={dragging ? "focus" : "base"}
|
|
padding={false}
|
|
{elem_id}
|
|
{elem_classes}
|
|
{height}
|
|
{width}
|
|
{container}
|
|
{scale}
|
|
{min_width}
|
|
allow_overflow={false}
|
|
>
|
|
<StatusTracker
|
|
autoscroll={gradio.autoscroll}
|
|
i18n={gradio.i18n}
|
|
{...loading_status}
|
|
on:clear_status={() => gradio.dispatch("clear_status", loading_status)}
|
|
/>
|
|
|
|
{#if mode == "receive" && modality === "video"}
|
|
<StaticVideo
|
|
bind:value={value}
|
|
{on_change_cb}
|
|
{label}
|
|
{show_label}
|
|
{server}
|
|
{rtc_configuration}
|
|
on:tick={() => gradio.dispatch("tick")}
|
|
on:error={({ detail }) => gradio.dispatch("error", detail)}
|
|
/>
|
|
{:else if mode == "receive" && modality === "audio"}
|
|
<StaticAudio
|
|
bind:value={value}
|
|
{on_change_cb}
|
|
{label}
|
|
{show_label}
|
|
{server}
|
|
{rtc_configuration}
|
|
i18n={gradio.i18n}
|
|
on:tick={() => gradio.dispatch("tick")}
|
|
on:error={({ detail }) => gradio.dispatch("error", detail)}
|
|
/>
|
|
{:else if (mode === "send-receive" || mode == "send") && modality === "video"}
|
|
<Video
|
|
bind:value={value}
|
|
{label}
|
|
{show_label}
|
|
active_source={"webcam"}
|
|
include_audio={false}
|
|
{server}
|
|
{rtc_configuration}
|
|
{time_limit}
|
|
{mode}
|
|
{on_change_cb}
|
|
on:clear={() => gradio.dispatch("clear")}
|
|
on:play={() => gradio.dispatch("play")}
|
|
on:pause={() => gradio.dispatch("pause")}
|
|
on:upload={() => gradio.dispatch("upload")}
|
|
on:stop={() => gradio.dispatch("stop")}
|
|
on:end={() => gradio.dispatch("end")}
|
|
on:start_recording={() => gradio.dispatch("start_recording")}
|
|
on:stop_recording={() => gradio.dispatch("stop_recording")}
|
|
on:tick={() => gradio.dispatch("tick")}
|
|
on:error={({ detail }) => gradio.dispatch("error", detail)}
|
|
i18n={gradio.i18n}
|
|
stream_handler={(...args) => gradio.client.stream(...args)}
|
|
>
|
|
<UploadText i18n={gradio.i18n} type="video" />
|
|
</Video>
|
|
{:else if (mode === "send-receive" || mode === "send") && modality === "audio"}
|
|
<InteractiveAudio
|
|
bind:value={value}
|
|
{on_change_cb}
|
|
{label}
|
|
{show_label}
|
|
{server}
|
|
{rtc_configuration}
|
|
{time_limit}
|
|
{track_constraints}
|
|
{mode}
|
|
i18n={gradio.i18n}
|
|
on:tick={() => gradio.dispatch("tick")}
|
|
on:error={({ detail }) => gradio.dispatch("error", detail)}
|
|
/>
|
|
{/if}
|
|
</Block>
|