| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- var track_list = [
- {
- display: "here we go with our demo!",
- name: "Epic music",
- artist: "Bensound epic",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/epic.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-epic.mp3",
- },
- {
- display: "Now for something less hard...",
- name: "Rumble rock",
- artist: "Bensound rumble",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/rumble.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-rumble.mp3"
- },
- {
- display: "We even have dubstep",
- name: "Dubstep for the fans",
- artist: "Bensound dubstep",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/dubstep.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-dubstep.mp3"
- },
- {
- display: "We also have some pop tunes",
- name: "Pop tune beyond the line",
- artist: "Bensound pop tune ",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/beyondtheline.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-beyondtheline.mp3"
- },
- {
- display: "Something soundtrack-like.",
- name: "Once again",
- artist: "Bensound once again",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/onceagain.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-onceagain.mp3",
- },
- {
- display: "And going home with some jazzy tune!",
- name: "Jazzy lounge",
- artist: "Bensound the lounge",
- image: "https://www.freepascal.org/~michael/pas2js-demos/player/thelounge.jpg",
- path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-thelounge.mp3",
- }
- ];
|