A 0 in the user-given language input now matches streams with language defined as "und"
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good

This commit is contained in:
2020-05-12 16:05:35 +02:00
parent b78aa7eb42
commit a516cdcdff
6 changed files with 14 additions and 12 deletions

View File

@ -111,8 +111,9 @@ public final class FFMpegHelper {
String read = readProcess(processReader, spacer);
if (!read.equals("")) {
if (write) {
OutputUtil.print(read);
OutputUtil.println(read);
} else {
OutputUtil.printDebug(read);
output.append(read);
}
}