You're missing commas after each track outside of the curly braces.
{
"band": "Naked Eyes",
"title": "Always Something There to Remind Me",
"filename": "AlwaysSomething.bik",
"genre": 0
} Should have a comma at the end outside of the curly bracket:
{
"band": "Naked Eyes",
"title": "Always Something There to Remind Me",
"filename": "AlwaysSomething.bik",
"genre": 0
}, Do this for ALL tracks except for the very last one:
{
"band": "Kool Moe Dee",
"title": "Wild Wild West",
"filename": "WildWildWest.bik",
"genre": 0
} That doesn't need the comma.
See if that helps!