tracks.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. var track_list = [
  2. {
  3. display: "here we go with our demo!",
  4. name: "Epic music",
  5. artist: "Bensound epic",
  6. image: "https://www.freepascal.org/~michael/pas2js-demos/player/epic.jpg",
  7. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-epic.mp3",
  8. },
  9. {
  10. display: "Now for something less hard...",
  11. name: "Rumble rock",
  12. artist: "Bensound rumble",
  13. image: "https://www.freepascal.org/~michael/pas2js-demos/player/rumble.jpg",
  14. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-rumble.mp3"
  15. },
  16. {
  17. display: "We even have dubstep",
  18. name: "Dubstep for the fans",
  19. artist: "Bensound dubstep",
  20. image: "https://www.freepascal.org/~michael/pas2js-demos/player/dubstep.jpg",
  21. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-dubstep.mp3"
  22. },
  23. {
  24. display: "We also have some pop tunes",
  25. name: "Pop tune beyond the line",
  26. artist: "Bensound pop tune ",
  27. image: "https://www.freepascal.org/~michael/pas2js-demos/player/beyondtheline.jpg",
  28. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-beyondtheline.mp3"
  29. },
  30. {
  31. display: "Something soundtrack-like.",
  32. name: "Once again",
  33. artist: "Bensound once again",
  34. image: "https://www.freepascal.org/~michael/pas2js-demos/player/onceagain.jpg",
  35. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-onceagain.mp3",
  36. },
  37. {
  38. display: "And going home with some jazzy tune!",
  39. name: "Jazzy lounge",
  40. artist: "Bensound the lounge",
  41. image: "https://www.freepascal.org/~michael/pas2js-demos/player/thelounge.jpg",
  42. path: "https://www.freepascal.org/~michael/pas2js-demos/player/bensound-thelounge.mp3",
  43. }
  44. ];