yt-converter
Advanced tools
Comparing version 1.3.2 to 1.3.3
{ | ||
"name": "yt-converter", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "A youtube video converter for mp3 and mp4 using node-ytdl and ffmpeg", | ||
@@ -5,0 +5,0 @@ "main": "./src/index.js", |
@@ -59,4 +59,4 @@ const ytdl = require("ytdl-core"); | ||
} | ||
const format = info.formats.find((fm) => fm.itag === itag) | ||
const title = parserTitles(options?.title) || parserTitles(info.title) | ||
const format = info.formatsAudio.find((fm) => fm.audioBitrate === 160 || fm.quality === "tiny") | ||
const title = parserTitles(info.title) | ||
const stream = ytdl(url, { | ||
@@ -63,0 +63,0 @@ filter: "audioonly", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18491