aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/js/controls/AudioPlayer.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/js/controls/AudioPlayer.js')
-rw-r--r--frontend/js/controls/AudioPlayer.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/js/controls/AudioPlayer.js b/frontend/js/controls/AudioPlayer.js
index 6cec14b..5711e2b 100644
--- a/frontend/js/controls/AudioPlayer.js
+++ b/frontend/js/controls/AudioPlayer.js
@@ -100,7 +100,7 @@ var AudioPlayer = function(controls) {
AudioPlayer.prototype.setCollection = function(collection) {
this.collection = collection;
};
-AudioPlayer.preferredMimes = [ "audio/webm", "audio/ogg", "audio/mpeg", "audio/flac", "audio/wav" ]
+AudioPlayer.preferredMimes = [ "audio/ogg", "audio/webm", "audio/mpeg", "audio/mp4", "audio/flac", "audio/wav" ]
AudioPlayer.mimeMap = { "audio/webm": "webm", "audio/mp4": "m4a", "audio/wav": "wav",
"audio/ogg": "ogg", "audio/x-ms-wma": "wma", "audio/flac": "flac",
"audio/x-musepack": "mpc", "audio/mpeg": "mp3" };