fixes #1290 - upgrade audio formats

This commit is contained in:
Luke 2015-12-24 13:43:45 -05:00
parent 5f944c57e6
commit f9804ce6d1

View File

@ -238,7 +238,11 @@ namespace MediaBrowser.Model.Net
if (StringHelper.EqualsIgnoreCase(ext, ".oga"))
{
return "audio/ogg";
}
}
if (StringHelper.EqualsIgnoreCase(ext, ".opus"))
{
return "audio/opus";
}
// Playlists
if (StringHelper.EqualsIgnoreCase(ext, ".m3u8"))