mirror of https://github.com/Radarr/Radarr
Bypass older mpeg-4 encoders
This commit is contained in:
parent
c950006db5
commit
df75027e3c
|
@ -342,6 +342,12 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
return ""; // Intel(R) IPP
|
||||
}
|
||||
|
||||
if (videoCodecLibrary.Contains("ZJMedia") ||
|
||||
videoCodecLibrary.Contains("DigiArty"))
|
||||
{
|
||||
return ""; // Other
|
||||
}
|
||||
|
||||
if (videoCodecLibrary == "")
|
||||
{
|
||||
return ""; // Unknown mp4v
|
||||
|
|
Loading…
Reference in New Issue