forked from j62/ctbrec
Fix use of wrong setting variable
This commit is contained in:
parent
7aa96eabae
commit
62cafd7b40
|
@ -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());
|
||||||
|
|
Loading…
Reference in New Issue