Audio Media JSON Data
Closed this issue · 0 comments
Deleted user commented
I was just reviewing the JSON returned from the current API v1 for audio media:
{
"_id": "vNgWP7vqQaePabaq20NI5A",
"label": "n/a",
"desc": "http://hyperaud.io/audio/bgm/01.Xxyyxx-AboutYou.mp3",
"type": "video",
"owner": "gridinoc",
"meta": "MU4I7W97TxurN8UAtFZ2ow",
"source": {
"unknown": {
"url": "http://hyperaud.io/audio/bgm/01.Xxyyxx-AboutYou.mp3"
}
},
"modified": "2014-01-14T21:02:59.025Z",
"created": "2014-01-14T21:02:59.022Z"
}
I wanted to bring to your attention these 2 items:
"type": "video"
"source": { "unknown": {
Just stating the obvious here, but they should be:
"type": "audio"
"source": { "mp3": {
Other source types could follow what we using in jPlayer:
- mp3
- m4a
- oga
Actually, if we have the "type": "audio"
information, then we could use the same ones as video may use:
- mp3
- mp4
- ogg
The other omission that I see is the source type info. The correct info would look like as follows:
{
"source": {
"mp3": {
"url": "http://hyperaud.io/audio/bgm/01.Xxyyxx-AboutYou.mp3",
"type": "audio/mpeg"
}
}
}