1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Shorten 'MPEG-2 Video' to 'MPEG2'.

This commit is contained in:
Chris Allen 2016-11-23 00:07:36 +13:00 committed by Mark McDowall
parent 0a657302f7
commit 740fc9154f

View File

@ -470,6 +470,10 @@ private void AddMediaInfoTokens(Dictionary<string, Func<TokenMatch, string>> tok
}
break;
case "MPEG-2 Video":
videoCodec = "MPEG2";
break;
default:
videoCodec = episodeFile.MediaInfo.VideoCodec;
break;