com.sapher.youtubedl.YoutubeDLException:
at com.sapher.youtubedl.YoutubeDL.execute(YoutubeDL.java:90)
at <..>.Controller.lambda$request$0(Controller.java:55)
at java.lang.Thread.run(Thread.java:748)
The code:
File bin = new File("bin/youtube-dl.exe");
YoutubeDL.setExecutablePath(bin.getAbsolutePath());
YoutubeDLRequest request = new YoutubeDLRequest(url, downloadDir.getPath());
request.setOption("format", "bestaudio");
request.setOption("output", uuid + ".%(ext)s");
YoutubeDLResponse response = YoutubeDL.execute(request);
String stdOut = response.getOut();
System.out.println(stdOut);
The error is on the YoutubeDL.execute line.
The code works perfectly on my pc but it errors with the no-message error when I move the jar to my VPS.
The code:
The error is on the YoutubeDL.execute line.
The code works perfectly on my pc but it errors with the no-message error when I move the jar to my VPS.