fixes #1290 - upgrade audio formats

This commit is contained in:
Luke 2015-12-24 13:43:45 -05:00 committed by Luke Pulverenti
parent cc315c573c
commit c8536040ba

View File

@ -239,6 +239,10 @@ namespace MediaBrowser.Model.Net
{ {
return "audio/ogg"; return "audio/ogg";
} }
if (StringHelper.EqualsIgnoreCase(ext, ".opus"))
{
return "audio/opus";
}
// Playlists // Playlists
if (StringHelper.EqualsIgnoreCase(ext, ".m3u8")) if (StringHelper.EqualsIgnoreCase(ext, ".m3u8"))