diff --git a/plugins/downloader/youtube-dl.js b/plugins/downloader/youtube-dl.js index e2f57575..28f9836d 100644 --- a/plugins/downloader/youtube-dl.js +++ b/plugins/downloader/youtube-dl.js @@ -54,7 +54,12 @@ const downloadVideoToMP3 = ( .on("info", (info, format) => { videoName = info.videoDetails.title.replace("|", "").toString("ascii"); if (is.dev()) { - console.log("Downloading video - name:", videoName); + console.log( + "Downloading video - name:", + videoName, + "- quality:", + format.audioBitrate + "kbits/s" + ); } }) .on("error", sendError)