diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ytdlp_download.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/ytdlp_download.ts b/scripts/ytdlp_download.ts index d31280f..9489e49 100644 --- a/scripts/ytdlp_download.ts +++ b/scripts/ytdlp_download.ts @@ -57,7 +57,6 @@ async function do_download(key: string, data: { [key: string]: string }) { const lines = child.stdout.pipeThrough(new TextDecoderStream()).pipeThrough(new TextLineStream()) for await (const line of lines) { if (!line.length) continue - console.log(JSON.stringify(line)); const k = JSON.parse(line) ws.send(JSON.stringify({ t: "metadata", key, data: { |