forked from j62/ctbrec
1
0
Fork 0

Fix use of wrong setting variable

This commit is contained in:
0xb00bface 2021-01-23 10:24:08 +01:00
parent 7aa96eabae
commit 62cafd7b40
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public class HlsdlDownload extends AbstractDownload {
try { try {
String[] cmdline = prepareCommandLine(); String[] cmdline = prepareCommandLine();
hlsdl = new Hlsdl.Builder() hlsdl = new Hlsdl.Builder()
.logOutput(config.getSettings().logFFmpegOutput) .logOutput(config.getSettings().loghlsdlOutput)
.onStarted(p -> hlsdlProcess = p) .onStarted(p -> hlsdlProcess = p)
.build(); .build();
hlsdl.exec(cmdline, OS.getEnvironment(), targetFile.getParentFile()); hlsdl.exec(cmdline, OS.getEnvironment(), targetFile.getParentFile());