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));
|
File output = new File(executionDir, fillInPlaceHolders(filename, rec, config));
|
||||||
|
|
||||||
String[] args = {
|
String[] args = {
|
||||||
"-v",
|
|
||||||
"quiet",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-i",
|
"-i",
|
||||||
tempDir.toAbsolutePath().toString() + "/image%03d.png",
|
tempDir.toAbsolutePath().toString() + "/image%03d.png",
|
||||||
|
@ -80,7 +78,7 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
||||||
output.getCanonicalPath()
|
output.getCanonicalPath()
|
||||||
};
|
};
|
||||||
String[] cmdline = OS.getFFmpegCommand(args);
|
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");
|
File ffmpegLog = new File(System.getProperty("java.io.tmpdir"), "create_contact_sheet_" + rec.getId() + ".log");
|
||||||
FFmpeg ffmpeg = new FFmpeg.Builder()
|
FFmpeg ffmpeg = new FFmpeg.Builder()
|
||||||
.logOutput(config.getSettings().logFFmpegOutput)
|
.logOutput(config.getSettings().logFFmpegOutput)
|
||||||
|
@ -123,8 +121,6 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
||||||
File input = getInputFile(rec);
|
File input = getInputFile(rec);
|
||||||
File output = new File(tempDirectory.toFile(), tile);
|
File output = new File(tempDirectory.toFile(), tile);
|
||||||
String[] args = {
|
String[] args = {
|
||||||
"-v",
|
|
||||||
"quiet",
|
|
||||||
"-y",
|
"-y",
|
||||||
"-skip_frame",
|
"-skip_frame",
|
||||||
"nokey",
|
"nokey",
|
||||||
|
|
Loading…
Reference in New Issue