Merge pull request #4187 from BaronGreenback/FFMPegErrorMsg

Fix for #4184 when no FFMPEG path set.
pull/4204/head
Anthony Lavado 4 years ago committed by GitHub
commit 25bfef58fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -504,6 +504,11 @@ namespace Jellyfin.Api.Helpers
}
}
if (string.IsNullOrEmpty(_mediaEncoder.EncoderPath))
{
throw new ArgumentException("FFMPEG path not set.");
}
var process = new Process
{
StartInfo = new ProcessStartInfo

Loading…
Cancel
Save