mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
Fix encoder checks for DTS and TrueHD
This commit is contained in:
parent
2e3b4bda7b
commit
f3840e0fdb
2 changed files with 9 additions and 1 deletions
|
|
@ -614,6 +614,11 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
return "flac";
|
||||
}
|
||||
|
||||
if (string.Equals(codec, "dts", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "dca";
|
||||
}
|
||||
|
||||
return codec.ToLowerInvariant();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue