Change regex to multiline

ex: https://regex101.com/r/bn9IOy/12
This commit is contained in:
Bond_009 2019-01-02 11:13:33 +01:00 committed by Vasily
parent c05e8088d6
commit d6f3ca859e
1 changed files with 1 additions and 3 deletions

View File

@ -139,10 +139,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
var required = codec == Codec.Encoder ? requiredEncoders : requiredDecoders;
Regex regex = new Regex(@"\s\S{6}\s(?<codec>[\w|-]+)\s{3}");
Regex regex = new Regex(@"^\s\S{6}\s(?<codec>[\w|-]+)\s+.+$", RegexOptions.Multiline);
MatchCollection matches = regex.Matches(output);
var found = matches.Cast<Match>()
.Select(x => x.Groups["codec"].Value)
.Where(x => required.Contains(x));