mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-19 17:43:50 +00:00
15 lines
390 B
JavaScript
15 lines
390 B
JavaScript
import Webamp from "webamp"; // eslint-disable-line import/no-unresolved
|
|
|
|
new Webamp({
|
|
initialTracks: [
|
|
{
|
|
metaData: {
|
|
artist: "DJ Mike Llama",
|
|
title: "Llama Whippin' Intro"
|
|
},
|
|
url:
|
|
"https://cdn.rawgit.com/captbaritone/webamp/43434d82/mp3/llama-2.91.mp3",
|
|
duration: 5.322286
|
|
}
|
|
]
|
|
}).renderWhenReady(document.getElementById("app"));
|