- Notifications
You must be signed in to change notification settings - Fork120
Simple website made with Next.js for downloading instagram videos with an API that can be used to integrate it in other applications.
License
riad-azz/instagram-video-downloader
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Simple Website/API for downloading instagram videos made with Next.js that actually works with no problem.
Note
The website preview has been shut down due to exceeding the free usage limit on Vercel with more than2,000,000 visits for the past week. Since I don't make any money from this website, I had to close it.
A website that lets you download Instagram videos easily and quickly. You can paste the URL of any public Instagram post and get the video file in MP4 format. there is also an API that you can use to integrate this functionality into your own applications. The API is simple, and it returns JSON responses with the video URL and other metadata.
Note: Instagram stories aren't supported.
Easy and User friendly UI (Interactions feedback and error messages).
Responsive on mobile and small devices.
1. Clone the repository:
git clone https://github.com/riad-azz/instagram-video-downloader.git
2. Build the Docker image:
docker build -t instagram-video-downloader.
3. Run the Docker container:
docker run -p 3000:3000 instagram-video-downloader
1. Cloning the repository:
git clone https://github.com/riad-azz/instagram-video-downloader.git
2. Installing dependencies:
cd instagram-video-downloader
npm install
3. Starting the server:
# Developmentnpm run dev# Buildnpm run build# Startnpm run start
Parameters :
postUrl
: Instagram Post or Reel link(required).
curl -i"http://localhost:3000/api/video?postUrl=https://www.instagram.com/p/CGh4a0iASGS"
{"status":"success","data": {"filename":"ig-downloader-1712666263.mp4","width":"640","height":"640","videoUrl":"https://scontent.cdninstagram.com/o1/v/t16/f1/m84/E84E5DFC48EA8...etc" }}
In order to reduce the load on the API and ensure optimal performance, I have implemented rate limiting using Upstash. This integration allows me to restrict the number of requests made to the API within a specified time frame, preventing excessive traffic and potential service disruptions.
To enable this feature follow these steps:
- Create an account onupstash.com.
- Create a new Redis database.
- Click on the newly created database.
- Scroll down to REST API, click on
.env
and copy the two variables provided. - Create a new
.env.local
file in the root directory. - Paste what you copied inside and add
USE_UPSTASH
and set it totrue
.
Here is what your.env.local
should look like:
# ...other variablesUSE_UPSTASH="true"UPSTASH_REDIS_REST_URL="YOUR-UPSTASH-URL"UPSTASH_REDIS_REST_TOKEN="YOUR-UPSTASH-TOKEN"
All ratelimit configs can be found insrc/features/ratelimit/constants.ts
.
If you would like to change the identifier (default is IP) you can change it insrc/middleware.ts
.
This project is licensed under the [MIT] License - see the LICENSE.md file for details
About
Simple website made with Next.js for downloading instagram videos with an API that can be used to integrate it in other applications.