Spaces:
Runtime error
Runtime error
File size: 5,907 Bytes
9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 74ba51d 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 74ba51d 9dfbb06 74ba51d 9dfbb06 74ba51d ce632d0 9dfbb06 74ba51d 9dfbb06 74ba51d 9dfbb06 74ba51d 9dfbb06 74ba51d 9dfbb06 74ba51d 9dfbb06 ce632d0 9dfbb06 74ba51d 9dfbb06 74ba51d ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 ce632d0 9dfbb06 |
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 |
<script lang="ts">
import { uploadToHuggingFace } from "@gradio/utils";
import { Empty } from "@gradio/atoms";
import { ShareButton, IconButton, BlockLabel } from "@gradio/atoms";
import { Music } from "@gradio/icons";
import type { I18nFormatter } from "@gradio/utils";
import AudioPlayer from "../player/AudioPlayer.svelte";
import { get_fetchable_url_or_file } from "@gradio/client";
import { createEventDispatcher, onMount } from "svelte";
import { FileData } from "@gradio/client";
export let value: null | FileData = null;
export let image: null | string | FileData = null;
export let label: string;
export let show_label = true;
export let show_download_button = true;
export let show_share_button = false;
export let i18n: I18nFormatter;
export let waveform_settings = {};
export let root = "";
export let proxy_url: string | null = null;
let image_path: string;
$: {
if (image instanceof FileData) {
image_path = image.path;
} else {
image_path = get_fetchable_url_or_file(image, root, proxy_url);
}
}
const dispatch = createEventDispatcher<{
change: FileData;
play: undefined;
pause: undefined;
end: undefined;
stop: undefined;
clear: undefined;
}>();
$: value && dispatch("change", value);
let audioElement;
let isPlaying = false;
function play_audio() {
if (isPlaying) {
audioElement.pause();
isPlaying = false;
return;
} else {
audioElement.play();
isPlaying = true;
}
}
function handle_audio_end(): void {
dispatch("end");
}
</script>
{#if value !== null}
<div class="icon-buttons">
{#if show_share_button}
<ShareButton
{i18n}
on:error
on:share
formatter={async (value) => {
if (!value) return "";
let url = await uploadToHuggingFace(value.url, "url");
return `<audio controls src="${url}"></audio>`;
}}
{value}
/>
{/if}
</div>
<audio src={value.url} controls bind:this={audioElement} on:ended={handle_audio_end}/>
{#if image}
<div class="image-container" on:click={play_audio} role="button" tabindex="0" aria-hidden="true">
<img class="image-player" src={image_path} alt="test" />
{#if !isPlaying}
<!-- Play button -->
<svg class="play-icon" viewBox="0 0 24 24">
<polygon points="5,3 19,12 5,21" fill="currentColor" />
</svg>
{:else}
<!-- Pause button -->
<svg class="pause-icon" viewBox="0 0 24 24">
<rect x="6" y="4" width="4" height="16" fill="currentColor" />
<rect x="14" y="4" width="4" height="16" fill="currentColor" />
</svg>
{/if}
<div class="circle-container waveform-image">
{#each Array(15) as _, i (i)}
<div class={`waveform-bar ${isPlaying ? `waveform-animation-${i % 5}` : ''}`} style={`height: ${20 + (i % 5) * 10}%`}></div>
{/each}
</div>
</div>
{:else}
<div class="circle-container" on:click={play_audio} role="button" tabindex="0" aria-hidden="true">
{#each Array(15) as _, i (i)}
<div class={`waveform-bar ${isPlaying ? `waveform-animation-${i % 5}` : ''}`} style={`height: ${20 + (i % 5) * 10}%`}></div>
{/each}
{#if !isPlaying}
<!-- Play button -->
<svg class="play-icon" viewBox="0 0 24 24" style="pointer-events: none;">
<polygon points="5,3 19,12 5,21" fill="currentColor" />
</svg>
{:else}
<!-- Pause button -->
<svg class="pause-icon" viewBox="0 0 24 24" style="pointer-events: none;">
<rect x="6" y="4" width="4" height="16" fill="currentColor" />
<rect x="14" y="4" width="4" height="16" fill="currentColor" />
</svg>
{/if}
</div>
{/if}
{:else}
<Empty size="small">
<Music />
</Empty>
{/if}
<style>
audio {
display: none;
}
.image-container {
position: relative;
width: 350px;
height: 350px;
margin: auto;
}
.image-player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.play-icon, .pause-icon {
color: white;
pointer-events: none;
position: absolute;
top: 50%;
left: 50%;
width: 75px;
height: 75px;
transform: translate(-50%, -50%);
}
.circle-container:hover .play-icon {
width: 90px;
height: 90px;
}
.pause-icon {
opacity: 0;
transition: opacity 0.3s;
}
.image-container:hover .pause-icon, .circle-container:hover .pause-icon {
opacity: 1;
}
.circle-container:hover .waveform-bar {
opacity: 0.5;
}
.circle-container {
position: relative;
width: 350px;
height: 350px;
margin: auto;
border-radius: 50%;
background: var(--button-secondary-background-fill);
position: relative;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.waveform-image {
opacity: 0.5;
}
.waveform-bar {
background: black;
width: 2%;
height: 20%;
margin: 0 1%;
border-radius: 5px;
opacity: 0.5;
transform-origin: bottom;
}
.waveform-animation-0 {
animation: waveAnimation0 1s infinite ease-in-out;
opacity: 1;
}
.waveform-animation-1 {
animation: waveAnimation1 1.5s infinite ease-in-out;
opacity: 1;
}
.waveform-animation-2 {
animation: waveAnimation2 3s infinite ease-in-out;
opacity: 1;
}
.waveform-animation-3 {
animation: waveAnimation3 2s infinite ease-in-out;
opacity: 1;
}
.waveform-animation-4 {
animation: waveAnimation4 2.5s infinite ease-in-out;
opacity: 1;
}
.waveform-animation-5 {
animation: waveAnimation5 3.5s infinite ease-in-out;
opacity: 1;
}
@keyframes waveAnimation0 {
0%, 100% { height: 50%; }
50% { height: 15%; }
}
@keyframes waveAnimation1 {
0%, 100% { height: 45%; }
50% { height: 25%; }
}
@keyframes waveAnimation2 {
0%, 100% { height: 40%; }
50% { height: 60%; }
}
@keyframes waveAnimation3 {
0%, 100% { height: 70%; }
50% { height: 25%; }
}
@keyframes waveAnimation4 {
0%, 100% { height: 25%; }
50% { height: 70%; }
}
@keyframes waveAnimation5 {
0%, 100% { height: 60%; }
50% { height: 15%; }
}
</style>
|