tutorials2 Min Read

How to Download multiple Youtube Videos using Nodejs and Show a Progress Bar

Gorav Singal

March 30, 2021

TL;DR

Read YouTube URLs from a text file and download them in batch using Node.js with ytdl-core, displaying a progress bar for each download.

How to Download multiple Youtube Videos using Nodejs and Show a Progress Bar

Introduction

I was trying to download some youtube videos for my kids. As I have a road trip coming. So, instead of downloading manually. I tried writing a script using nodejs.

I have a bunch of youtube videos in a text file, line by line.

Example

https://www.youtube.com/watch?v=MeYm_jj6Fng
https://www.youtube.com/watch?v=QE7HUkHdkW8
https://www.youtube.com/watch?v=R0RCeqBzANo
https://www.youtube.com/watch?v=nU9A9L5kZRU

Nodejs Code to Download Youtube videos

const fs = require('fs');
const ytdl = require('ytdl-core');
const async = require('async');

const cliProgress = require('cli-progress');
const bar1 = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);

const videos = fs.readFileSync('./videos.txt', 'utf8').split(/\r?\n/);

return new Promise((resolve, reject) => {
  async.eachLimit(videos, 1,
      function (url, callback) {
        console.log(url);
        const filename = `./downloaded/${url.split('=')[1]}.mp4`

        let downloadStarted = false;
        ytdl(url)
          .on('progress', (_, totalDownloaded, total) => {
            if (!downloadStarted) {
              bar1.start(total, 0);
              downloadStarted = true;
            }

            bar1.update(totalDownloaded);
          })
          .on('end', (_, totalDownloaded, total) => {
            bar1.stop();
            callback();
          })
          .pipe(fs.createWriteStream(filename));

      }.bind(this),
      function (err) {
          if (err) {
              console.error(err);
              reject(err);
          } else {
              resolve();
          }
      }
  );
});

Explanation to above code

The code is quite small. I’m reading from a file videos.txt where the urls are written line by line.

Let me try to break above code:

Read from file

const fs = require('fs);
const videos = fs.readFileSync('./videos.txt', 'utf8').split(/\r?\n/);

I’m reading and splitting all content by new line character. So, I will have an array of urls.

Library to download Youtube video

Its quite popular library. ytdl-core

const ytdl = require('ytdl-core');

I’m doing no fancy stuff. Simply downloading by doing a pipe.

ytdl(url)
  .pipe(fs.createWriteStream(filename));

Executing in Syc

This library provides no promise support. So, I used async module.

return new Promise((resolve, reject) => {
  async.eachLimit(videos, 1,
      function (url, callback) {
        
        //operation
        callback();

      }.bind(this),
      function (err) {
          if (err) {
              console.error(err);
              reject(err);
          } else {
              resolve();
          }
      }
  );
});

Note: Above code can run in parallel. I’m running in single way. By providing 2nd parameter as 1.

Progress bar

Another quite popular library: cli-progress

const cliProgress = require('cli-progress');
const bar1 = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);

//initialize
bar1.start(total, 0);

//stop
bar1.stop();

Sample Output

https://www.youtube.com/watch?v=rqNxtyZAOhA
 ████████████████████████████████████████ 100% | ETA: 0s | 16069480/16069480
https://www.youtube.com/watch?v=EpuDYZ_g0yg
 ████████████████████████████████████████ 100% | ETA: 0s | 22471833/22471833
https://www.youtube.com/watch?v=31F0laJjyy8
 ████████████████████████████████████████ 100% | ETA: 0s | 19234721/19234721
https://www.youtube.com/watch?v=M8rW-IvX3JM
 ████████████████████████████████████████ 100% | ETA: 0s | 32604186/32604186
https://www.youtube.com/watch?v=Q0gfC1kvYow
 ████████████████████████████████████████ 100% | ETA: 0s | 18743655/18743655
https://www.youtube.com/watch?v=HOQE0bv3_ks
 ████████████████████████████████████████ 100% | ETA: 0s | 37773979/37773979
https://www.youtube.com/watch?v=6zI4_1Blkko
 ████████████████████████████████████████ 100% | ETA: 0s | 45062755/45062755
https://www.youtube.com/watch?v=jCvSEuHms5M
 ████████████████████████████████████████ 100% | ETA: 0s | 140657573/140657573
https://www.youtube.com/watch?v=NQy4MVp1kgw
 ████████████████████████████████████████ 100% | ETA: 0s | 171159978/171159978
https://www.youtube.com/watch?v=dFm-5AxgwEE
 ████████████████████████████████████████ 100% | ETA: 0s | 15894197/15894197
https://www.youtube.com/watch?v=dSi9EeQhpLw
 █████████████████████████████████████░░░ 93% | ETA: 23688s | 273020896/292460792

Hope it will help.

Share

Related Posts

Nodejs - Json object schema validation with Joi

Nodejs - Json object schema validation with Joi

Introduction In this post, I will show how to validate your json schema…

Mongoose - Using CRUD operations in mongodb in nodejs

Mongoose - Using CRUD operations in mongodb in nodejs

MongoDB CRUD Operations Mongoose provides a simple schema based solution to…

How to check whether a website link has your URL backlink or not - NodeJs implementation

How to check whether a website link has your URL backlink or not - NodeJs implementation

Introduction I got my seo backlink work done from a freelancer. It was like 300…

How to connect to mysql from nodejs, with ES6 promise

How to connect to mysql from nodejs, with ES6 promise

Introduction I had to develop a small automation to query some old mysql data…

WebSockets with Socket.io in Node.js

WebSockets with Socket.io in Node.js

WebSocket vs HTTP Traditional HTTP follows a request/response model — the client…

Testing Node.js — Unit, Integration, and E2E

Testing Node.js — Unit, Integration, and E2E

Testing Strategy A solid testing strategy follows the testing pyramid — many…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Security Ticketing and Incident Response

Security Ticketing and Incident Response

The worst time to figure out your incident response process is during an…