mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-21 00:59:29 +00:00
28 lines
784 B
HTML
Executable file
28 lines
784 B
HTML
Executable file
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id='app'></div>
|
|
<script src="https://unpkg.com/winamp2-js@0.0.6/built/winamp.bundle.min.js"></script>
|
|
<script>
|
|
const Winamp = window.winamp2js;
|
|
new Winamp({
|
|
initialTracks: [{
|
|
metaData: {
|
|
artist: "DJ Mike Llama",
|
|
title: "Llama Whippin' Intro"
|
|
},
|
|
url: "https://cdn.rawgit.com/captbaritone/winamp2-js/43434d82/mp3/llama-2.91.mp3"
|
|
}],
|
|
initialSkin: {
|
|
url: "https://cdn.rawgit.com/captbaritone/winamp2-js/43434d82/skins/base-2.91.wsz"
|
|
},
|
|
}).renderWhenReady(document.getElementById('app'));
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|