Remove redundant log message
This commit is contained in:
parent
d820d611f1
commit
678a6e5513
|
@ -78,7 +78,6 @@ public class FfmpegMuxer {
|
||||||
File dir = mp4VideoTrack.getParentFile();
|
File dir = mp4VideoTrack.getParentFile();
|
||||||
File mergeLog = new File(dir, "merge.log");
|
File mergeLog = new File(dir, "merge.log");
|
||||||
try (FileOutputStream muxLogStream = new FileOutputStream(mergeLog)) {
|
try (FileOutputStream muxLogStream = new FileOutputStream(mergeLog)) {
|
||||||
LOG.debug("Merging:\n{}\n{}\n{}", mp4VideoTrack, mp4AudioTrack, output);
|
|
||||||
// @formatter:off
|
// @formatter:off
|
||||||
String[] cmdline = OS.getFFmpegCommand(
|
String[] cmdline = OS.getFFmpegCommand(
|
||||||
"-i", mp4VideoTrack.getCanonicalPath(),
|
"-i", mp4VideoTrack.getCanonicalPath(),
|
||||||
|
|
Loading…
Reference in New Issue