mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
6 years ago
|
<script>
|
||
|
import AudioPlayer, { stopAll } from './AudioPlayer.svelte';
|
||
|
</script>
|
||
|
|
||
2 years ago
|
<button on:click={stopAll}> stop all audio </button>
|
||
6 years ago
|
|
||
|
<!-- https://musopen.org/music/9862-the-blue-danube-op-314/ -->
|
||
|
<AudioPlayer
|
||
5 years ago
|
src="https://sveltejs.github.io/assets/music/strauss.mp3"
|
||
6 years ago
|
title="The Blue Danube Waltz"
|
||
|
composer="Johann Strauss"
|
||
|
performer="European Archive"
|
||
|
/>
|
||
|
|
||
|
<!-- https://musopen.org/music/43775-the-planets-op-32/ -->
|
||
|
<AudioPlayer
|
||
5 years ago
|
src="https://sveltejs.github.io/assets/music/holst.mp3"
|
||
6 years ago
|
title="Mars, the Bringer of War"
|
||
|
composer="Gustav Holst"
|
||
|
performer="USAF Heritage of America Band"
|
||
|
/>
|
||
|
|
||
|
<!-- https://musopen.org/music/8010-3-gymnopedies/ -->
|
||
|
<AudioPlayer
|
||
5 years ago
|
src="https://sveltejs.github.io/assets/music/satie.mp3"
|
||
6 years ago
|
title="Gymnopédie no. 1"
|
||
|
composer="Erik Satie"
|
||
|
performer="Prodigal Procrastinator"
|
||
|
/>
|
||
|
|
||
|
<!-- https://musopen.org/music/2567-symphony-no-5-in-c-minor-op-67/ -->
|
||
|
<AudioPlayer
|
||
5 years ago
|
src="https://sveltejs.github.io/assets/music/beethoven.mp3"
|
||
6 years ago
|
title="Symphony no. 5 in Cm, Op. 67 - I. Allegro con brio"
|
||
|
composer="Ludwig van Beethoven"
|
||
|
performer="European Archive"
|
||
|
/>
|
||
|
|
||
|
<!-- https://musopen.org/music/43683-requiem-in-d-minor-k-626/ -->
|
||
|
<AudioPlayer
|
||
5 years ago
|
src="https://sveltejs.github.io/assets/music/mozart.mp3"
|
||
6 years ago
|
title="Requiem in D minor, K. 626 - III. Sequence - Lacrymosa"
|
||
|
composer="Wolfgang Amadeus Mozart"
|
||
|
performer="Markus Staab"
|
||
|
/>
|