diff --git a/src/main/java/com/github/stickerifier/stickerify/media/MediaHelper.java b/src/main/java/com/github/stickerifier/stickerify/media/MediaHelper.java index 9932f8f0..5ba78ee7 100644 --- a/src/main/java/com/github/stickerifier/stickerify/media/MediaHelper.java +++ b/src/main/java/com/github/stickerifier/stickerify/media/MediaHelper.java @@ -186,7 +186,7 @@ static MultimediaInfo retrieveMultimediaInfo(File file) throws MediaException, I var command = new String[] { "ffprobe", "-hide_banner", - "-v", "quiet", + "-v", "error", "-print_format", "json", "-show_format", "-show_streams", diff --git a/src/main/java/com/github/stickerifier/stickerify/process/ProcessHelper.java b/src/main/java/com/github/stickerifier/stickerify/process/ProcessHelper.java index be54c530..5aee46ce 100644 --- a/src/main/java/com/github/stickerifier/stickerify/process/ProcessHelper.java +++ b/src/main/java/com/github/stickerifier/stickerify/process/ProcessHelper.java @@ -7,6 +7,7 @@ import org.slf4j.event.Level; import java.io.IOException; +import java.io.UncheckedIOException; import java.util.StringJoiner; import java.util.concurrent.Semaphore; import java.util.concurrent.TimeUnit; @@ -22,7 +23,7 @@ public final class ProcessHelper { * environment variable (defaults to 4). * * @param command the command to be executed - * @return the merged stdout/stderr of the command + * @return the standard output of the command * @throws ProcessException either if: *