CC-1710: FLAC, BWF, AAC support

-context menu for mp4's having a problem
This commit is contained in:
Martin Konecny 2012-09-11 14:04:45 -04:00
parent bcc095e924
commit 0fec175681
1 changed files with 3 additions and 1 deletions

View File

@ -410,7 +410,9 @@ class Application_Model_StoredFile
return "mp3";
} elseif ($mime == "audio/x-flac") {
return "flac";
} else {
} elseif ($mime == "audio/mp4") {
return "mp4";
} else {
throw new Exception("Unknown $mime");
}
}