File size: 7,696 Bytes
a9b52e3 c058955 a9b52e3 5a63470 a9b52e3 b3a508e a9b52e3 5a63470 a9b52e3 df60b7b a9b52e3 df60b7b a9b52e3 20373d0 df60b7b 7615d1a a9b52e3 5a63470 7615d1a a9b52e3 7615d1a 897bf63 a9b52e3 50c57e9 a9b52e3 7615d1a a9b52e3 7615d1a df60b7b 7615d1a 897bf63 7615d1a df60b7b c058955 df60b7b c058955 df60b7b c058955 20373d0 df60b7b a9b52e3 50c57e9 a9b52e3 5a63470 50c57e9 5a63470 50c57e9 a9b52e3 b35b8ac b3a508e 88c5c67 b3a508e 88c5c67 b3a508e b35b8ac a9b52e3 50c57e9 b35b8ac a9b52e3 b35b8ac 7615d1a 50c57e9 a9b52e3 88c5c67 b35b8ac 88c5c67 b35b8ac b3a508e a9b52e3 b35b8ac a9b52e3 b35b8ac 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 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 |
<script lang="ts">
import { onMount } from "svelte";
import { Music } from "@gradio/icons";
import { format_time, type I18nFormatter } from "@gradio/utils";
import WaveSurfer from "@gryannote/wavesurfer.js";
import RegionsPlugin, {type Region} from "@gryannote/wavesurfer.js/dist/plugins/regions";
import { skip_audio, process_audio } from "../shared/utils";
import WaveformControls from "../shared/WaveformControls.svelte";
import { Empty } from "@gradio/atoms";
import type { WaveformOptions, PipelineOutput } from "../shared/types";
import { createEventDispatcher } from "svelte";
import Color from "@gradio/icons/src/Color.svelte";
export let value: PipelineOutput | null = null;
export let label: string;
export let root: string;
export let i18n: I18nFormatter;
export let interactive = false;
export let editable = true;
export let waveform_settings: Record<string, any>;
export let waveform_options: WaveformOptions;
export let mode = "";
export let handle_reset_value: () => void = () => {};
let container: HTMLDivElement;
let waveform: WaveSurfer | undefined;
let wsRegion: RegionsPlugin | undefined;
let playing = false;
let timeRef: HTMLTimeElement;
let durationRef: HTMLTimeElement;
let audio_duration: number;
let colors: string[] = ["#f005", "#0f05", "#00f5", "#ff05", "#f0f5", "#0ff5"];
let audioDecoded: boolean = false;
let audioContext: AudioContext | undefined;
let mediaNode: MediaElementAudioSourceNode | undefined;
let splitter: ChannelSplitterNode | undefined;
let trimDuration = 0;
let show_volume_slider = false;
const dispatch = createEventDispatcher<{
stop: undefined;
play: undefined;
pause: undefined;
edit: undefined;
end: undefined;
}>();
const create_waveform = (): void => {
const audio = new Audio(root + `/file=${value.audio_file.path}`)
audio.crossOrigin = "anonymous"
audioContext = new AudioContext();
waveform = WaveSurfer.create({
container: container,
media: audio,
splitChannels: value.multichannel,
...waveform_settings
});
};
$: if (container !== undefined) {
if (waveform !== undefined) waveform.destroy();
container.innerHTML = "";
create_waveform();
playing = false;
}
$: waveform?.on("decode", (duration: any) => {
audioDecoded = true;
const numChannels = waveform.getDecodedData().numberOfChannels;
audio_duration = duration;
durationRef && (durationRef.textContent = format_time(duration));
mediaNode = audioContext.createMediaElementSource(waveform.getMediaElement() );
splitter = audioContext.createChannelSplitter(numChannels);
mediaNode.connect(splitter);
if(!value.multichannel){
splitter.connect(audioContext.destination, 0);
}
// add diarization annotation on each source:
if(!wsRegion){
wsRegion = waveform.registerPlugin(RegionsPlugin.create({avoidOverlap:!value.multichannel}))
value.segments.forEach(segment => {
const region = wsRegion.addRegion({
start: segment.start,
end: segment.end,
channelIdx: value.multichannel ? segment.channel : -1,
drag: false,
resize: false,
color: colors[segment.channel % colors.length],
});
if(value.multichannel){
const regionHeight = 100 / numChannels;
region.element.style.cssText += `height: ${regionHeight}% !important;`;
}
// TODO: Can we do better than force region color ?
region.element.style.cssText += `background-color: ${region.color} !important;`;
});
}
});
$: waveform?.on(
"timeupdate",
(currentTime: any) =>
timeRef && (timeRef.textContent = format_time(currentTime))
);
$: waveform?.on("ready", () => {
if (!waveform_settings.autoplay) {
waveform?.stop();
} else {
waveform?.play();
}
});
$: waveform?.on("finish", () => {
playing = false;
dispatch("stop");
});
$: waveform?.on("pause", () => {
playing = false;
dispatch("pause");
});
$: waveform?.on("play", () => {
playing = true;
dispatch("play");
});
onMount(() => {
window.addEventListener("keydown", (e) => {
if (!waveform || show_volume_slider) return;
if (e.key === "ArrowRight" && mode !== "edit") {
skip_audio(waveform, 0.1);
} else if (e.key === "ArrowLeft" && mode !== "edit") {
skip_audio(waveform, -0.1);
}
});
});
</script>
{#if value === null}
<Empty size="small">
<Music />
</Empty>
{:else if value.audio_file.is_stream}
<audio
class="standard-player"
src={value.audio_file.url}
controls
autoplay={waveform_settings.autoplay}
/>
{:else}
<div
class="component-wrapper"
data-testid={label ? "waveform-" + label : "unlabelled-audio"}
>
<div class="viewer">
<div class="source-selection">
{#if audioDecoded}
{#if value.multichannel}
<!-- Separation pipeline case -->
{#each [...Array(waveform.getDecodedData().numberOfChannels).keys()] as channelIdx}
<label style={`height: ${waveform_settings.height}px; background-color: ${colors[channelIdx % colors.length]}`}>
<input
type="checkbox"
name={`${channelIdx}`}
value={`${channelIdx}`}
on:change={(ev) => {
const channelIdx = Number(ev.target.value);
if(Boolean(ev.target.checked)){
splitter.connect(audioContext.destination, channelIdx, 0);
} else {
splitter.disconnect(channelIdx);
}
}}
/>
{value.labels[channelIdx]}
</label>
{/each}
{:else}
{#each [...Array(value.labels.length)].keys() as labelIdx}
<label style={`background-color: ${colors[labelIdx % colors.length]};`}>
<input type="hidden">
{value.labels[labelIdx]}
</label>
{/each}
{/if}
{/if}
</div>
<div class="waveform-container">
<div id="waveform" bind:this={container} />
<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>
</div>
{#if waveform}
<WaveformControls
{waveform}
{playing}
{audio_duration}
{i18n}
{interactive}
bind:mode
bind:trimDuration
bind:show_volume_slider
show_redo={interactive}
{handle_reset_value}
{waveform_options}
{editable}
/>
{/if}
</div>
{/if}
<style>
input[type="checkbox"] {
appearance: none;
background-color: #fff;
margin-right: 0.5em;
font: inherit;
color: var(--neutral-400);
width: 1.15em;
height: 1.15em;
border: 0.15em solid var(--neutral-400);
border-radius: 50%;
}
input[type="checkbox"]:checked {
background-color: var(--color-accent);
}
label {
display: flex;
align-items: center;
margin-bottom: 0.25em;
padding-left: 0.5em;
padding-right: 0.5em;
}
.component-wrapper {
padding: var(--size-3);
width: 100%;
}
.viewer {
display: flex;
}
.source-selection {
display: flex;
flex-direction: column;
margin-right: 1em;
}
: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;
flex-direction: column;
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);
}
</style>
|