mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user