Add more robust error handling for AudioNormalizationTask (#14728)

This commit is contained in:
Bond-009 2025-09-04 05:12:24 +02:00 committed by GitHub
parent 71048917dd
commit c7320dc189
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -122,7 +122,14 @@ public partial class AudioNormalizationTask : IScheduledTask
}
finally
{
File.Delete(tempFile);
try
{
File.Delete(tempFile);
}
catch (Exception ex)
{
_logger.LogError(ex, "Failed to delete concat file: {FileName}.", tempFile);
}
}
}
}
@ -232,11 +239,10 @@ public partial class AudioNormalizationTask : IScheduledTask
},
})
{
_logger.LogDebug("Starting ffmpeg with arguments: {Arguments}", args);
try
{
_logger.LogDebug("Starting ffmpeg with arguments: {Arguments}", args);
process.Start();
process.PriorityClass = ProcessPriorityClass.BelowNormal;
}
catch (Exception ex)
{
@ -244,6 +250,15 @@ public partial class AudioNormalizationTask : IScheduledTask
return null;
}
try
{
process.PriorityClass = ProcessPriorityClass.BelowNormal;
}
catch (Exception ex)
{
_logger.LogWarning(ex, "Error setting ffmpeg process priority");
}
using var reader = process.StandardError;
float? lufs = null;
await foreach (var line in reader.ReadAllLinesAsync(cancellationToken).ConfigureAwait(false))