A tool to download Instagram live streams.
Project description
instarec: Instagram livestream downloader
instarec is a Python-based command-line tool for downloading Instagram livestreams. It is designed to be robust, featuring concurrent downloading of video and audio segments, recovery of past segments, and automatic merging of the final video file.
Features
- Download from MPD or Username: Start a download using either a direct MPD manifest URL or an Instagram username.
- Interactive Quality Selection: Interactively choose from available video and audio stream qualities.
- Past and Live Recording: Downloads both previously broadcasted segments and continues to record the livestream.
- Optimized: No exhaustive search except when needed (a segment is lost), merge of segments is performed as livestream is diwonloaded.
- Segment Loss Detection: Generates a summary file detailing any missing segments from the download.
- Customizable: Offers a wide range of command-line arguments to tailor the downloading process.
Setup and Installation
ffmpeg and ffprobe are required. If their explicit path is not provided as an argument, it will be assumed that they are in yout PATH.
Basic Setup (MPD URL only)
For downloading directly from an MPD manifest URL, you only need to install the Python dependencies listed in requirements.txt.
-
Clone the repository:
git clone "https://github.com/qwer-lives/instarec.git" cd instarec
-
Install dependencies:
pip install -r requirements.txt
Instagram Username Setup
To download using an Instagram username, you'll need to install instagrapi and configure your Instagram credentials.
-
Install
instagrapi:It's recommended to install
instagrapiwith--no-depsto avoid potential conflicts with older dependencies.pip install -r requirements_instagrapi.txt --no-deps
-
Configure Credentials:
Set your username and password in
config/credentials.json:{ "username": "your_instagram_username", "password": "your_instagram_password" }
Important Note on Polling: Avoid using the username feature to continuously poll for a user going live. Instagram may flag your account for bot-like activity. This feature is intended for when you already know a user is live.
Usage
The script can be run from the command line with various arguments.
Getting the MPD URL
You can manually obtain the manifest URL (.mpd) for an Instagram livestream:
- Open the Instagram livestream in a web browser (e.g., Chrome, Firefox).
- Open the Developer Tools (usually by pressing
F12orCtrl+Shift+I). - Go to the Network tab.
- In the filter box, type
.mpdto filter the network requests. - You should see a request for a file ending in
.mpd. Right-click on it and copy the full URL.
Basic Examples
-
Download from an Instagram Username (Interactive Quality Selection):
python instarec.py <username> <output_file.mkv> -i
-
Download from an MPD URL with the best detected quality (based on bitrate):
python instarec.py <mpd_url> <output_file.mp4>
-
Download from an MPD URL with specific video and audio quality:
python instarec.py <mpd_url> <output_file.mp4> --video-quality <video_id> --audio-quality <audio_id>
Command-Line Arguments
| Argument | Short | Description |
|---|---|---|
url_or_username |
The URL of the .mpd manifest OR a raw Instagram username. | |
output_path |
The destination filepath for the final video. | |
--interactive |
-i |
Interactively select video and audio quality. |
--log-file |
Path to a file to write logs to. | |
--summary-file |
Path to a file to write a download summary to. | |
--verbose |
-v |
Enable verbose (DEBUG level) logging. |
--quiet |
-q |
Suppress informational (INFO level) logging. |
--video-quality |
One or more representation IDs for video, in order of preference. | |
--audio-quality |
One or more representation IDs for audio, in order of preference. | |
--poll-interval |
Seconds to wait between polling the manifest for live segments. | |
--max-search-requests |
Maximum concurrent requests when searching for past segments. | |
--download-retries |
Number of retries for a failed segment download. | |
--download-retry-delay |
Initial delay in seconds between download retries. | |
--check-url-retries |
Number of retries for a failed URL check. | |
--no-past |
Do not download past segments, start with the livestream. | |
--end-stream-miss-threshold |
Number of consecutive timestamps to search before assuming the past stream has ended. | |
--search-chunk-size |
Number of segments to check for existence in a single batch when searching. | |
--live-end-timeout |
Seconds to wait without a new live segment before assuming the stream has ended. | |
--past-segment-delay |
Minimum time in seconds between each past segment download. | |
--keep-segments |
Do not delete the temporary segments directory after finishing. | |
--ffmpeg-path |
Path to the ffmpeg executable. | |
--ffprobe-path |
Path to the ffprobe executable. |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file instarec-1.0.0.tar.gz.
File metadata
- Download URL: instarec-1.0.0.tar.gz
- Upload date:
- Size: 29.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7567ce82869431bb1580bb0a7547f5cbd126345509c2af2996d588ff2d305fe9
|
|
| MD5 |
2156570cfc0d9cc94dc2620a57134ec0
|
|
| BLAKE2b-256 |
f7995a692c125751713e974783b92ffa0f17acd8bed42d09be6599e016ca39f0
|
File details
Details for the file instarec-1.0.0-py3-none-any.whl.
File metadata
- Download URL: instarec-1.0.0-py3-none-any.whl
- Upload date:
- Size: 33.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a0d5b717cdc46d785f8752b1c83380fe0cde6bf8beb27cd1f6c38eae00ad620
|
|
| MD5 |
26e30731e65833b15ccab6af7aafde26
|
|
| BLAKE2b-256 |
11df3fb33af7cfdd2d348b06034f6eb4475548c208d8cc0b1388fc747b81f334
|