mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
Fixed: Handle wmapro and wmv3 codecs in formatter
Fixes RADARR-1G5R Fixes RADARR-1G7V
This commit is contained in:
@@ -147,7 +147,8 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
||||
}
|
||||
|
||||
if (audioFormat == "wmav1" ||
|
||||
audioFormat == "wmav2")
|
||||
audioFormat == "wmav2" ||
|
||||
audioFormat == "wmapro")
|
||||
{
|
||||
return "WMA";
|
||||
}
|
||||
@@ -244,7 +245,8 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
||||
}
|
||||
|
||||
if (videoFormat == "wmv1" ||
|
||||
videoFormat == "wmv2")
|
||||
videoFormat == "wmv2" ||
|
||||
videoFormat == "wmv3")
|
||||
{
|
||||
return "WMV";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user