Download Me

Sohail Shaik
4 min readMay 23, 2021

Download me is an application that will allow you to download any kind of video from YouTube.

Idea

Today, we are here with project which is created by our own idea that will allow you to download any video from YouTube. Generally, we love to watch the entertainment videos to get out of stress and sometimes we may have the internet issues. So, by using this application you can download whatever video you want from YouTube.

Team

We are team Technovators comprising of myself, Joel Rajesh, Narasimhulu Vasam and Palacharla Narendra.

The main objective of this project is to give a good download experience to the user by downloading any video from YouTube by implementing all the functionalities of it and also including the download speed of the video you can able to watch.

Tech Stack

  • HTML
  • CSS
  • JavaScript
  • Node
  • Express

Now, Let’s jump into the project.

Project

Usage

Let me give you a overview of our project.

  • Open our project application and you will see a homepage of our website and you will see a searchbar which you will put your youtube url video link into it.
  • Go to YouTube and search for a video you want to download, Copy the url link of the video and paste it in the search-bar.
  • Select the format and quality of the video which you want to download.
  • You will get a download option below the search-bar and click the download button to download it.

How we achieved this project

  • Creating a HTTP server.
const express = require("express");
const app = express();
app.use(express.json());
app.use(express.static("public"));
app.get("/", function(request, response){
response.sendFile(__dirname + "public/index.html");
});app.listen(5000);

There are many problems that tech people try to solve everyday. So we have tried to solve the download problem from youtube. Well, In some cases we are not able to download the video from youtube and guess what!, We solved it in a very effective way.

Here’s why:

  • Your time should be focused on creating something amazing. A project that solves a problem and helps others
  • You shouldn’t be doing the same tasks over and over like creating a PROJECT from scratch
  • You should element DRY principles to the rest of your life 😄

Pages

Home

About Us

Contact

Enter URL

A list of commonly used resources that I find helpful are listed in the acknowledgements.

Built With

This section should list any major frameworks that you built your project using. Leave any add-ons/plugins for the acknowledgements section. Here are a few examples.

Getting Started

Let’s Start

Usage

In many situations we are not able to download the videos from youtube. So, here we are.

  • Open the terminal and navigate to the project folder where the code.js file is visible.
  • Execute node code.js command.
  • Run the localhost:5000 in the browser.
  • Select the video which you want to download.
  • Paste the youtube url link in the searchbar which is visible in the home page of our website.
  • Select the video format, quality. And click the download button to download the video.

For more examples, please refer to the Documentation

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AddFeature)
  3. Commit your Changes (git commit -m 'Add some AddFeature')
  4. Push to the Branch (git push origin feature/AddFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Joel Rajesh -

Narendera Palacharla -

Narasimhulu Vasam -

Sohail Shaik -

Project Link: https://github.com/your_username/repo_name

Credit where credit’s due

  • Thank you othniel drew for the reference of the Read Me file.

--

--