Fixes various issues
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good

Makes it possible to turn off all types of hardware acceleration for all converters
Only encodes anime to hevc if not already hevc
Adds an option to force hevc to hevc encoding, for the anime converter
Adds an option to force encoding of audio, for the anime converter
Fixes a bug causing the codec name to not be parsed
Fixes an exception when trying to sort an empty list
Fixes order of sorting in the anime converter
Adds another signs songs filter
This commit is contained in:
2024-04-19 13:05:12 +02:00
parent d487df0e78
commit 3c9fa55585
10 changed files with 147 additions and 32 deletions

View File

@@ -160,7 +160,7 @@ public final class FFMpegHelper {
}
try {
int exitCode = process.waitFor();
OutputUtil.println("Process finished.");
OutputUtil.println("Process finished with exit code: " + exitCode);
return new ProcessResult(exitCode, output.toString());
} catch (InterruptedException e) {
return new ProcessResult(1, output.toString());