Adds option for overwriting original files
All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good

This commit is contained in:
2024-07-18 14:07:51 +02:00
parent 972691db76
commit 87f5743a24
6 changed files with 40 additions and 1 deletions

View File

@@ -314,6 +314,8 @@ public final class FFMpegHelper {
parsedStreams.add(new OtherStream(streamInfo, 0, true));
}
}
case DATA -> OutputUtil.print("A binary stream was found. Those are ignored they will generally " +
"cause the conversion to fail.");
}
}
return parsedStreams;
@@ -342,6 +344,8 @@ public final class FFMpegHelper {
return StreamType.AUDIO;
case "subtitle":
return StreamType.SUBTITLE;
case "data":
return StreamType.DATA;
default:
return StreamType.OTHER;
}