Socket
Socket
Sign inDemoInstall

yt-converter

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yt-converter

A youtube video converter for mp3 and mp4 using node-ytdl and ffmpeg


Version published
Weekly downloads
13
decreased by-18.75%
Maintainers
1
Weekly downloads
 
Created
Source

Node YoutubeDL - Easy to use downloader for YouTube videos

Installation

npm install yt-converter

Usage

Get Info from a video

const yt = require("yt-converter");
yt.getInfo("https://www.youtube.com/watch?v=dQw4w9WgXcQ").then(info => {
    console.log(info);
});

Info represents the video information:

  • title
  • author
  • thumbnails
  • formats
    • Contains the available formats for the video in an array
    • The object has the property itag which can be used to convert the video
  • formatsAudio
  • formatsVideo

Download a video format mp4

const yt = require("yt-converter");
yt.convertVideo("https://www.youtube.com/watch?v=dQw4w9WgXcQ", itag,path, onClose)

Download a video format mp3

const yt = require("yt-converter");
yt.convertAudio("https://www.youtube.com/watch?v=dQw4w9WgXcQ", itag,path, onClose)
  • itag: itag represent an number of video format
  • path: path to save the file
  • onClose: callback function when the conversion is finished

Keywords

FAQs

Package last updated on 25 Dec 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc