mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
Fixed: xvid not always detected correctly (#11138)
This commit is contained in:
parent
bd7465fae4
commit
16308e4b1c
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ public static string FormatVideoCodec(MediaInfoModel mediaInfo, string sceneName
|
||||||
|
|
||||||
if (videoFormat == "mpeg4" || videoFormat.Contains("msmpeg4"))
|
if (videoFormat == "mpeg4" || videoFormat.Contains("msmpeg4"))
|
||||||
{
|
{
|
||||||
if (videoCodecID == "XVID")
|
if (videoCodecID.ToUpperInvariant() == "XVID")
|
||||||
{
|
{
|
||||||
return "XviD";
|
return "XviD";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue