mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-03 21:54:26 -04:00
Update EncoderValidator.cs
This commit is contained in:
parent
4c6b60d69d
commit
5464eaed4a
@ -212,7 +212,10 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||||||
|
|
||||||
if (match.Success)
|
if (match.Success)
|
||||||
{
|
{
|
||||||
return new Version(match.Groups[1].Value);
|
if (Version.TryParse(match.Groups[1].Value, out var result))
|
||||||
|
{
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var versionMap = GetFFmpegLibraryVersions(output);
|
var versionMap = GetFFmpegLibraryVersions(output);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user