mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-03 22:40:09 +00:00
parent
c05e8088d6
commit
d6f3ca859e
1 changed files with 1 additions and 3 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue