Remove quiet start parameter for FFmpeg
This commit is contained in:
parent
1cf62f362d
commit
cf19ab9697
|
@ -68,8 +68,6 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
|||
File output = new File(executionDir, fillInPlaceHolders(filename, rec, config));
|
||||
|
||||
String[] args = {
|
||||
"-v",
|
||||
"quiet",
|
||||
"-y",
|
||||
"-i",
|
||||
tempDir.toAbsolutePath().toString() + "/image%03d.png",
|
||||
|
@ -80,7 +78,7 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
|||
output.getCanonicalPath()
|
||||
};
|
||||
String[] cmdline = OS.getFFmpegCommand(args);
|
||||
LOG.info("Executing {} in working directory {}", Arrays.toString(cmdline), executionDir);
|
||||
LOG.debug("Executing {} in working directory {}", Arrays.toString(cmdline), executionDir);
|
||||
File ffmpegLog = new File(System.getProperty("java.io.tmpdir"), "create_contact_sheet_" + rec.getId() + ".log");
|
||||
FFmpeg ffmpeg = new FFmpeg.Builder()
|
||||
.logOutput(config.getSettings().logFFmpegOutput)
|
||||
|
@ -123,8 +121,6 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
|||
File input = getInputFile(rec);
|
||||
File output = new File(tempDirectory.toFile(), tile);
|
||||
String[] args = {
|
||||
"-v",
|
||||
"quiet",
|
||||
"-y",
|
||||
"-skip_frame",
|
||||
"nokey",
|
||||
|
|
Loading…
Reference in New Issue