summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-01-04 22:24:27 -0600
committerGrant Shangreaux <shshoshin@protonmail.com>2020-01-04 22:24:27 -0600
commit5aac92d08d940a6e6836ca2cd5946e03ee07bb3f (patch)
tree0934213979614c87102eaa471460d3db82b0c710
parentaa59670b7f7a1a61f7c1cbbabcc08fc8ac6c7013 (diff)
Add: track data for 2019 mix side B
-rw-r--r--sideB.json115
-rw-r--r--tape-deck.js4
2 files changed, 116 insertions, 3 deletions
diff --git a/sideB.json b/sideB.json
index fe51488..fd92c67 100644
--- a/sideB.json
+++ b/sideB.json
@@ -1 +1,114 @@
-[]
+[
+ {
+ "title": "My Neighbor Totoro Ending Theme",
+ "artist": "Hisashi Joe",
+ "album": "original English dub",
+ "start": 0,
+ "link": ""
+ },
+ {
+ "title": "Yasashisa ni TsuTsumareta nara (Wrapped in Kindness)",
+ "artist": "Yumi Arai",
+ "album": "Kiki's Delivery Service",
+ "start": 180,
+ "link": ""
+ },
+ {
+ "title": "Path of the Wind",
+ "artist": "Hisashi Joe",
+ "album": "Ghibli Studio Music Box Collection",
+ "start": 371,
+ "link": ""
+ },
+ {
+ "title": "Wind Scene",
+ "artist": "Yasunori Mitsuda",
+ "album": "Chrono Trigger performed by YT'ers",
+ "start": 585,
+ "link": "https://www.youtube.com/watch?v=WXt2y2jHnxg"
+ },
+ {
+ "title": "Amore",
+ "artist": "Ryuichi Sakamoto",
+ "album": "Playing the Piano",
+ "start": 705,
+ "link": ""
+ },
+ {
+ "title": "Rain",
+ "artist": "Ryuichi Sakamoto",
+ "album": "Playing the Piano",
+ "start": 1012,
+ "link": ""
+ },
+ {
+ "title": "Nostalgia Island",
+ "artist": "Haruomi Hosono & Friends",
+ "album": "Pacific - (Tatsuro Yamashita)",
+ "start": 1210,
+ "link": ""
+ },
+ {
+ "title": "Coral Reef",
+ "artist": "Haruomi Hosono & Friends",
+ "album": "Pacific (Shigeru Suzuki)",
+ "start": 1772,
+ "link": ""
+ },
+ {
+ "title": "おも",
+ "artist": "Eiichi Ohtaki",
+ "album": "First Album",
+ "start": 1992,
+ "link": ""
+ },
+ {
+ "title": "指切",
+ "artist": "Eiichi Ohtaki",
+ "album": "First Album",
+ "start": 2054,
+ "link": ""
+ },
+ {
+ "title": "When I Lay My Burden Down",
+ "artist": "Othar Turner & The Rising Star Fife and Drum Band",
+ "album": "?",
+ "start": 2266,
+ "link": ""
+ },
+ {
+ "title": "Train, Train, Jessie Mae Hemphill",
+ "artist": "National Downhome Blues Festival",
+ "album": "",
+ "start": 2507,
+ "link": ""
+ },
+ {
+ "title": "Rock-a-bye My Baby",
+ "artist": "Haruomi Hosono",
+ "album": "Hosono House",
+ "start": 2729,
+ "link": ""
+ },
+ {
+ "title": "Bath Time",
+ "artist": "Raffi",
+ "album": "Everything Grows",
+ "start": 2920,
+ "link": ""
+ },
+ {
+ "title": "Daniel Tiger Songs",
+ "artist": "",
+ "album": "",
+ "start": 3096,
+ "link": ""
+ },
+ {
+ "title": "Tong Poo",
+ "artist": "Yellow Magic Orchestra",
+ "album": "Video Game",
+ "start": 3233,
+ "link": ""
+ }
+] \ No newline at end of file
diff --git a/tape-deck.js b/tape-deck.js
index 55aa4de..f13ea8d 100644
--- a/tape-deck.js
+++ b/tape-deck.js
@@ -59,11 +59,11 @@ function getTrack(time, currentTrackIndex, trackData) {
function formatTrackData(track) {
let string = `${track.title} - ${track.artist}`;
if (track.album) {
- string.concat(` - ${track.album}`)
+ string = string.concat(` - ${track.album}`)
}
if (track.link) {
- string.concat(` - ${track.link}`)
+ string = string.concat(` - ${track.link}`)
}
return string;