So I wrote an app for the Karma to stream music off of it ... It works fine for MP3, but fails for OGG. Is it possible I have the wrong content type? Anyone see anything obviously wack about the header returned when requesting an ogg:
MP3: (works)
GET /streamFile?fid=4336
HTTP/1.1 200 OK
Connection: close
Accept-Ranges: bytes
Content-Length: 4978688
Content-Type: audio/mpeg
Content-Disposition: attachment; filename=Track 4.mp3
...music data...
OGG: (does not work)
GET /streamFile?fid=6256
HTTP/1.1 200 OK
Connection: close
Accept-Ranges: bytes
Content-Length: 4915296
Content-Type: application/ogg
Content-Disposition: attachment; filename=track 7.ogg
...music data...