Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
An NPM package to facilitate downloading music from YouTube, including automatic retrieval of ID3 tags and album art via the iTunes public API.
An NPM package to facilitate downloading music from YouTube, including automatic retrieval of ID3 tags and album art via the iTunes public API.
Report Bug
·
Request Feature
npm install -g ytdl-mp3
The easiest way to use ytdl-mp3 is through the command-line interface. Users must enter the URL of the YouTube video they wish to download. The title of the music video is then used to automatically retrieve ID3 tags (e.g., title, artist) and the associated cover art from iTunes. There is no need for the title of the YouTube video to follow a specific naming convention.
Usage: ytdl-mp3 [options] <url>
A NodeJS package and command-line tool for downloading music from YouTube, including automatic retrieval of ID3 tags and album art via iTunes.
Arguments:
url url of video to download
Options:
-V, --version output the version number
-o --output-dir <path> path to output directory
-n --no-get-tags skip extracting/applying id3 tags
-v --verify-tags verify id3 tags fetched from itunes
-s --silent-mode skip console output
-h, --help display help for command
import { Downloader } from 'ic3zy-mp3';
const downloader = new Downloader({
getTags: true
});
await downloader.downloadSong('https://www.youtube.com/watch?v=7jgnv0xCv-k');
const { Downloader } = require('ic3zy-mp3');
async function main() {
const downloader = new Downloader({
getTags: true
});
await downloader.downloadSong('https://www.youtube.com/watch?v=7jgnv0xCv-k');
}
main();
FAQs
An NPM package to facilitate downloading music from YouTube, including automatic retrieval of ID3 tags and album art via the iTunes public API.
The npm package ic3zy-mp3 receives a total of 4 weekly downloads. As such, ic3zy-mp3 popularity was classified as not popular.
We found that ic3zy-mp3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.