This micro web server allows you to download Instagram Reels videos by providing their query parameters. It utilizes Selenium to control a Chromium browser instance and navigate to the Instagram webpage. Once the video is loaded, it extracts the CDN link
Go to file
gabrielkheisa 595c1e54de update
2023-12-19 15:38:08 +07:00
README.md add 2023-12-10 13:03:57 +07:00
run.py update 2023-12-19 15:38:08 +07:00

Instagram Video Downloader

This micro web server allows you to download Instagram Reels videos by providing their query parameters. It utilizes Selenium to control a Chromium browser instance and navigate to the Instagram webpage. Once the video is loaded, it extracts the CDN link and redirects you to it.

Usage:

https://ig.gabrielkheisa.xyz/<query_params_from_instagram.com>

Example:

Source

https://www.instagram.com/reel/Cz3dNmDMVC9/?igshid=MzRlODBiNWFlZA==

Replace

https://ig.gabrielkheisa.xyz/reel/Cz3dNmDMVC9/?igshid=MzRlODBiNWFlZA==

Returns redirect:

https://scontent.cdninstagram.com/v/t66.30100-16/316926421_1723935788092224_3596729375098306652_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_cat=100&_nc_ohc=6lyBPVcjJkYAX8kLe3I&edm=APs17CUBAAAA&ccb=7-5&oh=00_AfBNGf7HzFPnd-mhfvhZZZRk_-PlN3qx3hqbsINaUGA4aA&oe=6576D61D&_nc_sid=10d13b

DISCLAIMER:

This micro web server does not directly download the Instagram Reels video. It simply locates the Instagram CDN link for the video and redirects you to it. Therefore, it is not technically a "downloader" but rather a CDN link extractor and redirector.

Tech stack

  • Python 3.6: Programming language
  • Selenium: Web automation framework
  • Chromium browser: Web browser, run in headless mode
  • Flask: Micro web server

Requirements

  • Python 3.6+
  • Selenium
  • Chromium browser
  • Flask

Installation

  1. Install Python 3.6 or newer.

  2. Install Selenium:

    pip install selenium
    
  3. Install Chromium browser:

    sudo apt install chromium-browser
    
  4. Install Flask:

    pip install Flask
    
  5. Clone this repository:

    git clone https://github.com/gabrielkheisa/instagram-downloader.git
    

Usage

  1. Start the Flask app:

    python run.py
    
  2. Open a web browser and navigate to http://localhost:8080/.

  3. Add the query parameters of your Instagram Reels endpoint, for example for the original Instagram URL:

https://www.instagram.com/reel/Cz3dNmDMVC9/?igshid=MzRlODBiNWFlZA==

To be filled with:

http://localhost:8080/reel/Cz3dNmDMVC9/?igshid=MzRlODBiNWFlZA==
  1. After you have something like https://scontent.cdninstagram.com/v/t66.30..., simply download the video
  2. If the Instagram Reels video exists or no exception or error occurs, you will be redirected to the Instagram CDN endpoint link where you can download the video directly, else it will redirect to instagram.com

Limitations

  • It takes 3 to 5 seconds for the Xpath in the remote URL (instagram.com) to be loaded properly, so delay is implicitly inserted in the webdriver, making the request relatively longer for each invocation.
  • It's possible that Instagram will change their Xpath website structure in the future, so you need to find the new Xpath location. Current Xpath and property:
/html/body/div[2]/div/div/div[2]/div/div/div[1]/section/main/div[1]/div/article/div/div[1]/div/div/div/div/div/div/div/video
src