Temporarily fix Downloader.

This commit is contained in:
Nekojimi 2024-04-01 11:34:32 +01:00
parent ab26e65fdb
commit 26010946c2
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ public class Downloader extends QueueThing<TrackRequest, Track>
List<Track> ret = new ArrayList<>();
try
{
String cmd = Chords.getSettings().getYtdlCommand() + " --skip-download --write-info-json " + request.getUrl().toString();
String cmd = Chords.getSettings().getYtdlCommand() + " --skip-download --print-json " + request.getUrl().toString();
Process exec = runCommand(cmd, INFO_TIMEOUT);
InputStream input = exec.getInputStream();