Extracting audio from an Instagram Reel as an MP3 takes two steps: download the Reel as MP4, then convert the MP4 to MP3 using either a browser-based converter or a local command. The whole flow takes under 60 seconds and works on every operating system. This guide walks through the three easiest methods and explains which gives the best audio quality.
Why you might want the audio
The most common reasons are saving a song ID you want to play later, archiving a voice-over or spoken-word clip for reference, or grabbing a sound effect for your own (original, non-commercial) projects. Reels are the largest modern library of short-form audio clips on the internet, and sometimes the easiest way to find a specific sound is through the original Reel.
Before you start: extracting audio does not grant you a licence to that audio. If the Reel used a commercially licensed song, the song's rights holder still owns the recording. Personal listening is fine in every major jurisdiction; redistributing or re-uploading is not.
Method 1: Browser-based end-to-end (easiest)
Step 1: in the Instagram app, tap the paper-plane share icon below the Reel and Copy Link. Step 2: open your browser and go to InstaSaver.one. Step 3: paste the link and tap Download. Step 4: on the result page, tap "Extract audio (MP3)" instead of the video button. The converter runs server-side and returns a 320 kbps MP3 in about two seconds for a 60-second Reel.
Quality: excellent for music Reels (320 kbps CBR), good for voice (the source audio is usually 128 kbps AAC, so upsampling to 320 kbps MP3 does not add detail but does preserve what is there).
Method 2: Download MP4 first, then convert with FFmpeg (best quality)
If you want the absolute maximum quality, download the MP4 with any tool and convert locally with FFmpeg. The command is one line:
ffmpeg -i reel.mp4 -vn -acodec libmp3lame -b:a 320k output.mp3
Because FFmpeg decodes the original AAC and re-encodes once, the result is bit-perfect relative to the MP4 source. Install FFmpeg via Homebrew on Mac (brew install ffmpeg), from ffmpeg.org on Windows, or apt install ffmpeg on Linux.
Method 3: iOS Shortcut (most convenient on iPhone)
Apple Shortcuts can chain the two steps into a single tap. Create a new Shortcut with two actions: "Get URL from input" and "Get contents of URL" pointed at an InstaSaver API endpoint. Assign the Shortcut to the share sheet and you can extract audio directly from the Instagram app. The catch: the Shortcut has to call a server-side converter — iOS Shortcuts cannot run FFmpeg natively.
Bitrate reality check
Instagram serves Reel audio at 128 kbps AAC-LC, stereo, 48 kHz. No matter what bitrate your MP3 converter targets, the source is capped at 128 kbps of AAC data. Exporting at 192 kbps MP3 is a good balance — files are small, quality is audibly identical to the 128 kbps source, and compatibility is universal. Exporting at 320 kbps is over-provisioning, but it guarantees no additional loss and is the safest choice if you plan to edit or re-encode later.
| MP3 bitrate | File size (60-sec Reel) | Audible loss vs source |
|---|---|---|
| 128 kbps | 0.9 MB | Slight (codec cascade) |
| 192 kbps | 1.4 MB | Transparent |
| 256 kbps | 1.9 MB | Transparent |
| 320 kbps | 2.3 MB | Transparent |
What about Spotify or Apple Music links?
Instagram Reels that use licensed music often have a "View on Spotify" sticker. If you see one, use that — it takes you to the original studio recording at full quality, which is legally streamable in your Spotify or Apple Music subscription. Extracting the song from the Reel gives you a 60-second clip at reduced quality; following the sticker gives you the whole track at lossless quality. Always prefer the sticker when it is available.