Spaces:
Paused
Paused
File size: 222 Bytes
57e16da |
1 2 3 4 5 6 7 8 9 10 11 12 |
<script lang="ts">
export let data: Promise<Blob>;
</script>
{#await data}
<p>... loading audio ...</p>
{:then audio}
<audio controls>
<source src={URL.createObjectURL(audio)} type="audio/mpeg" />
</audio>
{/await}
|