Asfand-Khann

πŸ“₯ YoutubeDownloader - Effortlessly Download Your Favorite Videos

Download

πŸš€ Getting Started

This guide will help you download and run the YouTube Downloader application easily. Follow these steps to get started.

πŸ“₯ Download & Install

  1. Visit the Releases Page: Go to the Releases page.
  2. Download the Latest Release: Click on the latest version to Download the youtube_downloader.py file.

πŸ”§ Requirements

To use this application, you need:

πŸ“¦ Installing the Required Library

To install the pytube library, follow these steps:

  1. Open your command prompt or terminal.
  2. Type the following command and press Enter:

    pip install pytube
    

This will install the necessary library.

βš™οΈ Running the Application

Once you have downloaded the script and installed the necessary library, follow these steps to run the application:

  1. Open your Command Prompt or Terminal:
    • Navigate to the folder where you downloaded the youtube_downloader.py file.
  2. Run the script:
    • Type the following command and press Enter:
    python youtube_downloader.py
    
  3. Enter the Video Link:
    • When prompted, paste a valid YouTube video link and press Enter.
  4. Download Complete:
    • The highest-resolution version of the video will be downloaded to your current directory. You will see a message confirming the download completion.

πŸ“œ Script Contents

Here is a brief overview of what the script does:

from pytube import YouTube

video_url = input("Enter Youtube Video link: ")

yt = YouTube(video_url)

stream = yt.streams.get_highest_resolution()

stream.download()

print("Download completed!")

πŸ“‹ Notes

πŸ” Troubleshooting

If you encounter any issues, here are a few steps you can take:

  1. Check Your Python Installation: Ensure that Python is installed correctly on your machine. You can verify this by running python --version in your command prompt or terminal.
  2. Library Installation Issues: If the pytube library does not install correctly, double-check your internet connection and try again.
  3. Video Link Issues: Make sure the YouTube link you are entering is valid.

For further assistance, you can check the issues section on the GitHub repository.

πŸ“ž Support

If you have any questions, feel free to reach out via the repository’s GitHub page or check the discussions for common inquiries.

πŸ“„ License

This project is licensed under the MIT License. Feel free to use and modify it according to your needs.