| <script lang="ts"> |
| import { onMount } from "svelte"; |
| import { Music } from "@gradio/icons"; |
| import { format_time, type I18nFormatter } from "@gradio/utils"; |
| import WaveSurfer from "wavesurfer.js"; |
| import { skip_audio, process_audio } from "../shared/utils"; |
| import WaveformControls from "../shared/WaveformControls.svelte"; |
| import { Empty } from "@gradio/atoms"; |
| import type { FileData } from "@gradio/client"; |
| import type { WaveformOptions, SubtitleData } from "../shared/types"; |
| import { createEventDispatcher } from "svelte"; |
| |
| import Hls from "hls.js"; |
| |
| export let value: null | FileData = null; |
| export let subtitles: null | string | SubtitleData[] = null; |
| $: url = value?.url; |
| export let label: string; |
| export let i18n: I18nFormatter; |
| export let dispatch_blob: ( |
| blobs: Uint8Array[] | Blob[], |
| event: "stream" | "change" | "stop_recording" |
| ) => Promise<void> = () => Promise.resolve(); |
| export let interactive = false; |
| export let editable = true; |
| export let trim_region_settings = {}; |
| export let waveform_settings: Record<string, any>; |
| export let waveform_options: WaveformOptions; |
| export let mode = ""; |
| export let loop: boolean; |
| export let handle_reset_value: () => void = () => {}; |
| |
| let container: HTMLDivElement; |
| let waveform: WaveSurfer | undefined; |
| let waveform_component_wrapper: HTMLDivElement; |
| let playing = false; |
| |
| let subtitle_container: HTMLDivElement; |
| |
| let timeRef: HTMLTimeElement; |
| let durationRef: HTMLTimeElement; |
| let audio_duration: number; |
| |
| let trimDuration = 0; |
| |
| let show_volume_slider = false; |
| let audio_player: HTMLAudioElement; |
| |
| let stream_active = false; |
| let subtitles_toggle = true; |
| let subtitle_event_handlers: (() => void)[] = []; |
| |
| const dispatch = createEventDispatcher<{ |
| stop: undefined; |
| play: undefined; |
| pause: undefined; |
| edit: undefined; |
| end: undefined; |
| load: undefined; |
| }>(); |
| |
| $: use_waveform = |
| waveform_options.show_recording_waveform && !value?.is_stream; |
| |
| const create_waveform = (): void => { |
| waveform = WaveSurfer.create({ |
| container: container, |
| ...waveform_settings |
| }); |
| |
| if (subtitles && waveform) { |
| if (subtitles_toggle) { |
| add_subtitles_to_waveform(waveform, subtitles); |
| } else { |
| hide_subtitles(); |
| } |
| } |
| |
| if (value?.url && waveform) { |
| waveform.load(value?.url); |
| } |
| |
| waveform?.on("decode", (duration: any) => { |
| audio_duration = duration; |
| durationRef && (durationRef.textContent = format_time(duration)); |
| }); |
| |
| waveform?.on( |
| "timeupdate", |
| (currentTime: any) => |
| timeRef && (timeRef.textContent = format_time(currentTime)) |
| ); |
| |
| waveform?.on("interaction", () => { |
| const currentTime = waveform?.getCurrentTime() || 0; |
| timeRef && (timeRef.textContent = format_time(currentTime)); |
| }); |
| |
| waveform?.on("ready", () => { |
| if (!waveform_settings.autoplay) { |
| waveform?.stop(); |
| } else { |
| waveform?.play(); |
| } |
| }); |
| |
| waveform?.on("finish", () => { |
| if (loop) { |
| waveform?.play(); |
| } else { |
| playing = false; |
| dispatch("stop"); |
| } |
| }); |
| waveform?.on("pause", () => { |
| playing = false; |
| dispatch("pause"); |
| }); |
| waveform?.on("play", () => { |
| playing = true; |
| dispatch("play"); |
| }); |
| |
| waveform?.on("load", () => { |
| dispatch("load"); |
| }); |
| }; |
| |
| $: if (use_waveform && container !== undefined && container !== null) { |
| if (waveform !== undefined) waveform.destroy(); |
| container.innerHTML = ""; |
| create_waveform(); |
| playing = false; |
| } |
| |
| const handle_trim_audio = async ( |
| start: number, |
| end: number |
| ): Promise<void> => { |
| mode = ""; |
| const decodedData = waveform?.getDecodedData(); |
| if (decodedData) |
| await process_audio( |
| decodedData, |
| start, |
| end, |
| waveform_settings.sampleRate |
| ).then(async (trimmedBlob: Uint8Array) => { |
| await dispatch_blob([trimmedBlob], "change"); |
| waveform?.destroy(); |
| container.innerHTML = ""; |
| }); |
| dispatch("edit"); |
| }; |
| |
| async function load_audio(data: string): Promise<void> { |
| stream_active = false; |
| |
| if (waveform_options.show_recording_waveform) { |
| waveform?.load(data); |
| } else if (audio_player) { |
| audio_player.src = data; |
| } |
| } |
| |
| $: if (subtitles && waveform) { |
| if (subtitles_toggle) { |
| add_subtitles_to_waveform(waveform, subtitles); |
| } else { |
| hide_subtitles(); |
| } |
| } |
| |
| function load_stream(value: FileData | null): void { |
| if (!value || !value.is_stream || !value.url) return; |
| |
| if (Hls.isSupported() && !stream_active) { |
| // Set config to start playback after 1 second of data received |
| const hls = new Hls({ |
| maxBufferLength: 1, |
| maxMaxBufferLength: 1, |
| lowLatencyMode: true |
| }); |
| hls.loadSource(value.url); |
| hls.attachMedia(audio_player); |
| hls.on(Hls.Events.MANIFEST_PARSED, function () { |
| if (waveform_settings.autoplay) audio_player.play(); |
| }); |
| hls.on(Hls.Events.ERROR, function (event, data) { |
| console.error("HLS error:", event, data); |
| if (data.fatal) { |
| switch (data.type) { |
| case Hls.ErrorTypes.NETWORK_ERROR: |
| console.error( |
| "Fatal network error encountered, trying to recover" |
| ); |
| hls.startLoad(); |
| break; |
| case Hls.ErrorTypes.MEDIA_ERROR: |
| console.error("Fatal media error encountered, trying to recover"); |
| hls.recoverMediaError(); |
| break; |
| default: |
| console.error("Fatal error, cannot recover"); |
| hls.destroy(); |
| break; |
| } |
| } |
| }); |
| stream_active = true; |
| } else if (!stream_active) { |
| audio_player.src = value.url; |
| if (waveform_settings.autoplay) audio_player.play(); |
| stream_active = true; |
| } |
| } |
| |
| $: if (audio_player && url) { |
| load_audio(url); |
| } |
| |
| $: if (audio_player && value?.is_stream) { |
| load_stream(value); |
| } |
| |
| onMount(() => { |
| window.addEventListener("keydown", (e) => { |
| if (!waveform || show_volume_slider) return; |
| |
| const is_focused_in_waveform = |
| waveform_component_wrapper && |
| waveform_component_wrapper.contains(document.activeElement); |
| if (!is_focused_in_waveform) return; |
| if (e.key === "ArrowRight" && mode !== "edit") { |
| skip_audio(waveform, 0.1); |
| } else if (e.key === "ArrowLeft" && mode !== "edit") { |
| skip_audio(waveform, -0.1); |
| } |
| }); |
| }); |
| |
| async function add_subtitles_to_waveform( |
| wavesurfer: WaveSurfer, |
| subtitle_data: string | SubtitleData[] |
| ): Promise<void> { |
| clear_subtitles(); |
| try { |
| let subtitles: SubtitleData[]; |
| if (Array.isArray(subtitle_data)) { |
| subtitles = subtitle_data; |
| } else { |
| const response = await fetch(subtitle_data); |
| const subtitle_content = await response.text(); |
| subtitles = parse_subtitles(subtitle_content); |
| } |
| |
| if (subtitles.length > 0) { |
| let current_subtitle = ""; |
| if (subtitle_container) { |
| subtitle_container.style.display = ""; |
| const audioProcessHandler = (time: number): void => { |
| const subtitle = subtitles.find( |
| (s) => time >= s.start && time <= s.end |
| ); |
| if (subtitle && subtitle.text !== current_subtitle) { |
| current_subtitle = subtitle.text; |
| subtitle_container.textContent = current_subtitle; |
| } else if (!subtitle && current_subtitle !== "") { |
| current_subtitle = ""; |
| subtitle_container.textContent = ""; |
| } |
| }; |
| wavesurfer.on("audioprocess", audioProcessHandler); |
| subtitle_event_handlers.push(() => { |
| wavesurfer.un("audioprocess", audioProcessHandler); |
| }); |
| } |
| } |
| } catch (error) {} |
| } |
| |
| function hide_subtitles(): void { |
| if (subtitle_container) { |
| subtitle_container.style.display = "none"; |
| } |
| } |
| |
| function clear_subtitles(): void { |
| if (subtitle_container) { |
| subtitle_container.textContent = ""; |
| } |
| subtitle_event_handlers.forEach((handler) => handler()); |
| subtitle_event_handlers = []; |
| } |
| |
| function parse_subtitles(subtitle_content: string): SubtitleData[] { |
| const lines = subtitle_content.split("\n"); |
| const subtitles: SubtitleData[] = []; |
| |
| for (let i = 0; i < lines.length; i++) { |
| const line = lines[i].trim(); |
| if (line.includes(" --> ")) { |
| const [start_time, end_time] = line.split(" --> "); |
| const start = parse_time_to_seconds(start_time); |
| const end = parse_time_to_seconds(end_time); |
| |
| let text = ""; |
| for (let j = i + 1; j < lines.length && lines[j].trim() !== ""; j++) { |
| if (text) text += " "; |
| text += lines[j].trim(); |
| } |
| |
| if (text) { |
| subtitles.push({ start, end, text }); |
| } |
| } |
| } |
| |
| return subtitles; |
| } |
| |
| function parse_time_to_seconds(time_str: string): number { |
| const parts = time_str.split(":"); |
| if (parts.length === 3) { |
| const hours = parseInt(parts[0]); |
| const minutes = parseInt(parts[1]); |
| const seconds = parseFloat(parts[2]); |
| return hours * 3600 + minutes * 60 + seconds; |
| } |
| return 0; |
| } |
| </script> |
| |
| <audio |
| class="standard-player" |
| class:hidden={use_waveform} |
| controls |
| autoplay={waveform_settings.autoplay} |
| on:load |
| bind:this={audio_player} |
| on:ended={() => dispatch("stop")} |
| on:play={() => dispatch("play")} |
| preload="metadata" |
| /> |
| {#if value === null} |
| <Empty size="small"> |
| <Music /> |
| </Empty> |
| {:else if use_waveform} |
| <div |
| class="component-wrapper" |
| data-testid={label ? "waveform-" + label : "unlabelled-audio"} |
| bind:this={waveform_component_wrapper} |
| > |
| <div class="waveform-container"> |
| <div |
| id="waveform" |
| bind:this={container} |
| style:height={container ? null : "58px"} |
| /> |
| </div> |
| |
| <div class="timestamps"> |
| <time bind:this={timeRef} id="time">0:00</time> |
| <div> |
| {#if mode === "edit" && trimDuration > 0} |
| <time id="trim-duration">{format_time(trimDuration)}</time> |
| {/if} |
| <time bind:this={durationRef} id="duration">0:00</time> |
| </div> |
| </div> |
| |
| <div |
| bind:this={subtitle_container} |
| class="subtitle-display" |
| data-testid="subtitle-display" |
| ></div> |
| |
| <WaveformControls |
| {container} |
| {waveform} |
| {playing} |
| {audio_duration} |
| {i18n} |
| {interactive} |
| {handle_trim_audio} |
| bind:mode |
| bind:trimDuration |
| bind:show_volume_slider |
| bind:subtitles_toggle |
| show_redo={interactive} |
| {handle_reset_value} |
| {waveform_options} |
| {trim_region_settings} |
| {editable} |
| show_subtitles={subtitles !== null} |
| /> |
| </div> |
| {/if} |
|
|
| <style> |
| .component-wrapper { |
| padding: var(--size-3); |
| width: 100%; |
| } |
| |
| :global(::part(wrapper)) { |
| margin-bottom: var(--size-2); |
| } |
| |
| .timestamps { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| width: 100%; |
| padding: var(--size-1) 0; |
| } |
| |
| #time { |
| color: var(--neutral-400); |
| } |
| |
| #duration { |
| color: var(--neutral-400); |
| } |
| |
| #trim-duration { |
| color: var(--color-accent); |
| margin-right: var(--spacing-sm); |
| } |
| .waveform-container { |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| width: var(--size-full); |
| } |
| |
| #waveform { |
| width: 100%; |
| height: 100%; |
| position: relative; |
| } |
| |
| .standard-player { |
| width: 100%; |
| padding: var(--size-2); |
| } |
| |
| .subtitle-display { |
| color: var(--text-secondary); |
| font-size: var(--text-lg); |
| text-align: center; |
| max-width: 600px; |
| line-height: 1.3; |
| min-height: var(--size-4); |
| font-family: var(--font-sans); |
| font-weight: normal; |
| margin: var(--size-2) auto; |
| padding: var(--size-1) var(--size-2); |
| border-radius: 2px; |
| transition: opacity 0.2s ease-in-out; |
| } |
| |
| .hidden, |
| .subtitle-display:empty { |
| display: none; |
| } |
| </style> |
|
|