mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-13 19:31:46 +00:00
Downloader plugin: log audio bitrate
This commit is contained in:
@ -54,7 +54,12 @@ const downloadVideoToMP3 = (
|
|||||||
.on("info", (info, format) => {
|
.on("info", (info, format) => {
|
||||||
videoName = info.videoDetails.title.replace("|", "").toString("ascii");
|
videoName = info.videoDetails.title.replace("|", "").toString("ascii");
|
||||||
if (is.dev()) {
|
if (is.dev()) {
|
||||||
console.log("Downloading video - name:", videoName);
|
console.log(
|
||||||
|
"Downloading video - name:",
|
||||||
|
videoName,
|
||||||
|
"- quality:",
|
||||||
|
format.audioBitrate + "kbits/s"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on("error", sendError)
|
.on("error", sendError)
|
||||||
|
|||||||
Reference in New Issue
Block a user