How to Extract Audio From an Instagram Reel (MP3 or M4A)
Download a public Instagram Reel as MP4 with curl-x, then export the music or voice track to MP3 or M4A with FFmpeg, VLC, or a phone converter. Step-by-step for every device.
Want to try it now? Paste a post link from any supported platform to download its media instantly.
On this page
- Key Takeaways
- Quick Answer: Extract Audio From an Instagram Reel
- What You Need Before You Start
- Step 1: Download the Reel With curl-x
- Copy the Reel link
- Paste into curl-x and save the MP4
- Verify sound before converting
- Step 2: Strip Audio From the MP4
- FFmpeg (Mac, Windows, Linux)
- VLC (graphical, all desktop OS)
- Online converters (quick, use with caution)
- Tool Comparison: FFmpeg vs VLC vs Online Converters
- Extract Audio on iPhone, Android, Mac, and PC
- Mac and Windows
- iPhone and iPad
- Android
- Audio Quality and Music Licensing on Reels
- When Audio Extraction Fails
- Legal and Ethical Notes
- FAQ: Instagram Reel to Audio
- Can curl-x download Instagram Reel audio directly as MP3?
- Can I get just the music stem without the video?
- What is the best format for extracted Reel audio?
- Why is my Reel MP3 silent?
- Does Instagram notify the creator when I extract audio?
- Can I use extracted Reels music on TikTok or YouTube?
- Does extracting audio lower quality?
- Next Step
To extract audio from an Instagram Reel, download the public Reel as an MP4 first—curl-x streams the same file Meta serves in the feed, with AAC audio baked in—then convert that MP4 to MP3 or M4A with FFmpeg, VLC, or a trusted converter. Instagram does not offer a "save audio only" button, and no public downloader can split out a separate music stem from licensed library tracks.
This article is for creators, DJs, students, and editors who need voice, ambient sound, or reference audio from a public Reel without keeping the video layer. It covers the honest two-step workflow, music-licensing limits, and free tools on Mac, Windows, Linux, iPhone, and Android.
TL;DR: Copy the public Reel URL (
/reel/+ shortcode). Paste it into curl-x and save the MP4. Confirm the file plays with sound, then export audio with FFmpeg (ffmpeg -i reel.mp4 -vn -acodec libmp3lame -q:a 2 reel-audio.mp3), VLC (Convert/Save → Audio – MP3), or a reputable phone converter. Licensed Reels music is rendered into the MP4 but does not grant republication rights elsewhere.
Key Takeaways
- curl-x saves public Reels as MP4 with AAC audio muxed in when the clip has sound—see How to Download Instagram Reels in HD (1080p).
- There is no one-click "Reel to MP3" inside curl-x; extraction is a second step after download, which preserves your master file.
- FFmpeg and VLC run locally and never upload your clip to a third-party server—best for long or sensitive files.
- Licensed Reels music is embedded in the MP4 but does not travel to TikTok, YouTube, or commercial projects—see Is It Legal to Download Instagram Videos and Reels?.
- Original voiceovers and ambient sound extract the same way as trending tracks; the licensing difference is what you do after export.
Quick Answer: Extract Audio From an Instagram Reel
- Open the public Reel and tap ⋯ → Copy link
- Paste the URL into curl-x and download the MP4
- Play the MP4 locally and confirm audio is present
- Convert the file:
- Desktop (FFmpeg):
ffmpeg -i reel.mp4 -vn -acodec libmp3lame -q:a 2 reel-audio.mp3 - Desktop (VLC): Media → Convert/Save → pick the MP4 → Profile Audio – MP3 → Start
- Phone: move the MP4 to an FFmpeg app or a converter you trust, then export MP3 or M4A
- Desktop (FFmpeg):
- Keep the original MP4 if you might need the video later
The whole flow on desktop typically takes 2–5 minutes for a clip under 90 seconds—the usual Reels length cap.
What You Need Before You Start
| Requirement | Why it matters |
|---|---|
| A public Reel with native video + audio | Private accounts, Close Friends posts, and expired Stories are not reachable—see Why You Can't Download Private Instagram Videos |
A URL with /reel/ or /reels/ and a shortcode | Profile pages, explore grids, and audio-only tabs are invalid paste targets—see How to Copy an Instagram Post or Story Link |
| A Reel that plays with sound in the app | If Instagram muted the track for your region or rights, extraction cannot recover what Meta did not serve |
| FFmpeg, VLC, or a converter | curl-x delivers video+audio; you separate the tracks locally |
| Enough storage | A 60-second 1080p Reel might be 15–40 MB as MP4; MP3 at 192 kbps is roughly 1.4 MB per minute |
You do not need an Instagram account to download public Reels. You do not need a dedicated "Instagram audio downloader" app if you already have FFmpeg or VLC.
Step 1: Download the Reel With curl-x
Audio extraction starts with a clean MP4 master file. Skipping straight to an online "Reel to MP3" site often re-compresses video you never needed and may upload your file to an unknown server.
Copy the Reel link
- Open the Reel in the Instagram app or at
instagram.com - Tap ⋯ (iOS) or Share (Android) → Copy link
- Confirm the URL contains
/reel/or/reels/followed by a shortcode likeCxyzAbCdEf1
Feed posts with video use /p/ instead. Those save as MP4 too, but this guide focuses on Reels—the most common "extract the music" search intent.
Paste into curl-x and save the MP4
- Open curl-x in Chrome, Safari, Firefox, or Edge
- Paste the Reel URL and tap Download
- Save the MP4 your browser offers
Meta publishes Reels as H.264 video with AAC audio inside an MP4 container. curl-x reads the same video_versions list the public embed exposes—audio included when the Reel has sound. Unlike some X/Twitter clips, Instagram rarely shows a quality menu; you get the highest public tier automatically.
Verify sound before converting
Play the downloaded MP4 once:
- Sound present → proceed to Step 2
- No audio track → the Reel may be silent, region-muted, or rights-blocked in your country
- Wrong clip → confirm you copied a
/reel/URL, not a profile or explore page
For a deeper download walkthrough, read How to Save Instagram Reels to Camera Roll or How to Download Instagram Reels Without a Watermark.
Step 2: Strip Audio From the MP4
Separating audio is standard media hygiene: keep one video master, export audio copies as needed.
FFmpeg (Mac, Windows, Linux)
FFmpeg is a free command-line tool used by editors and archivists worldwide.
MP3 (variable quality, good default):
ffmpeg -i reel.mp4 -vn -acodec libmp3lame -q:a 2 reel-audio.mp3
M4A / AAC (smaller, Apple-friendly):
ffmpeg -i reel.mp4 -vn -c:a aac -b:a 192k reel-audio.m4a
WAV (lossless, largest):
ffmpeg -i reel.mp4 -vn reel-audio.wav
Flag breakdown:
| Flag | Meaning |
|---|---|
-i reel.mp4 | Input file |
-vn | No video—audio only |
-acodec libmp3lame | Encode to MP3 |
-q:a 2 | VBR quality (~190 kbps average) |
-b:a 192k | Fixed 192 kbps AAC bitrate |
Install FFmpeg via ffmpeg.org/download.html, Homebrew (brew install ffmpeg on Mac), or your Linux package manager.
VLC (graphical, all desktop OS)
VLC ships on Mac, Windows, and Linux with a built-in converter:
- Open VLC → Media → Convert / Save (macOS: File → Convert / Stream)
- Click Add, select your MP4, then Convert / Save
- Under Profile, choose Audio – MP3 or Audio – AAC (MP4)
- Pick a destination filename and click Start
VLC never uploads your file; conversion runs entirely on your machine.
Online converters (quick, use with caution)
Browser converters can work for short, non-sensitive clips. Upload the MP4 you already saved, choose MP3 or M4A, and download the result.
| Approach | Privacy | Speed | Best for |
|---|---|---|---|
| FFmpeg | Local only | Fast | Batch jobs, automation, editors |
| VLC | Local only | Moderate | One-off exports without the terminal |
| Online converter | File leaves your device | Depends on upload | Short clips, Chromebooks without installs |
Avoid random APKs marketed as "Instagram MP3 downloaders." A browser tool plus local conversion is safer—see Is It Safe to Use an Instagram Downloader?.
Tool Comparison: FFmpeg vs VLC vs Online Converters
| Tool | Output formats | Batch support | Learning curve | Offline |
|---|---|---|---|---|
| FFmpeg | MP3, M4A, WAV, FLAC, OGG | Excellent (shell scripts) | Medium | Yes |
| VLC | MP3, AAC/M4A, OGG | Manual one-by-one | Low | Yes |
| Online converters | Usually MP3/M4A | Rare | Lowest | No |
For voice reference or classroom clips, 192 kbps MP3 or AAC at 192 kbps is a practical balance. Archivists who need maximum fidelity for later editing often export WAV first, then compress.
Extract Audio on iPhone, Android, Mac, and PC
Mac and Windows
- Download the MP4 with curl-x in your browser
- Open Terminal (Mac) or Command Prompt/PowerShell (Windows) and run the FFmpeg commands above
- The MP3 or M4A lands next to your input file unless you specify another path
iPhone and iPad
- Download the MP4 via curl-x in Safari
- Open Files → Downloads and confirm the clip plays with sound
- Options for audio export:
- Shortcuts app: build an "Encode Media" shortcut (Audio Only → M4A)
- FFmpeg apps from the App Store (verify reviews before paying)
- AirDrop the MP4 to a Mac and run FFmpeg or VLC there
For saving the video itself on Apple devices, see How to Download Instagram Reels on iPad.
Android
- Download with curl-x in Chrome
- Find the MP4 in Files by Google → Downloads
- Use an FFmpeg-based Android app, or upload to a converter in Chrome if the clip is short and non-sensitive
Gallery tips for video saves are in How to Save Instagram Videos to Gallery on Android.
Audio Quality and Music Licensing on Reels
Meta re-encodes uploads for streaming. The audio you extract mirrors what Instagram distributed—not necessarily the creator's original studio master.
| Factor | Typical reality |
|---|---|
| Codec in downloaded MP4 | AAC when audio exists |
| Speech-heavy Reels | Often 96–128 kbps equivalent after platform processing |
| Trending library music | Baked into the MP4; no separate stem from public endpoints |
| Region or rights blocks | Reel may play silent in-app or in your download—no tool recovers removed tracks |
| 1080p vs 720p video | Same audio track in most cases; resolution does not double audio bitrate |
Music licensing is the bigger limit than file format. Instagram's in-app library licenses playback on Instagram and certain in-app reuse—not automatic syndication to TikTok, YouTube Shorts, or a brand ad. Extracting MP3 does not grant commercial rights. For republishing workflows, read How to Repurpose Instagram Reels for TikTok and YouTube Shorts.
If you plan to run speech-to-text, export WAV or high-bitrate M4A before feeding the file to your transcription service.
When Audio Extraction Fails
| Symptom | Likely cause | Fix |
|---|---|---|
| MP4 has no audio track | Silent Reel, rights-muted track, or region block | Play the Reel in Instagram first; nothing to extract if the app is silent |
| Sound in app, silent MP4 | Stale link or wrong URL type | Copy /reel/ link again; avoid profile or explore URLs |
| curl-x says no media | Private account, deleted Reel, bad URL | Verify public Reel URL; see Why Downloaded Instagram Videos Look Blurry or Low Quality troubleshooting section |
| Converter output is tiny / empty | Corrupt download or zero-duration audio | Re-download; play MP4 locally first |
| Music sounds wrong after export | Lossy re-encoding chain | Use one conversion step; start from the original MP4 |
Photo carousels and static image posts have no audio track. Instagram Live replays and Highlights are different URL types with their own limits.
Legal and Ethical Notes
Technically saving a public MP4 and stripping audio is straightforward. Legal permission is not.
- Copyright applies to music, narration, and sound design in the clip
- Public visibility does not grant republication rights
- Licensed Reels audio is especially restricted outside Instagram's ecosystem
- Journalists and researchers often have fair-use arguments for short quotation; re-uploading full tracks usually does not qualify
Read Is It Legal to Download Instagram Videos and Reels? for a careful overview. When in doubt, contact the rights holder, use royalty-free replacement audio, or license the track properly.
FAQ: Instagram Reel to Audio
Can curl-x download Instagram Reel audio directly as MP3?
No. curl-x extracts public media files Meta exposes—MP4 with AAC audio. Convert to MP3 or M4A locally with FFmpeg, VLC, or a converter you trust. That two-step flow keeps one high-quality master and avoids shady single-purpose apps.
Can I get just the music stem without the video?
Not from public Instagram endpoints. Meta muxes audio into the MP4. You can strip the video track locally with -vn in FFmpeg, but you cannot download an isolated .mp3 or .wav stem the way a DAW project would offer.
What is the best format for extracted Reel audio?
MP3 at 192 kbps or AAC in M4A at 192 kbps works for voice memos, reference listening, and rough edits. Use WAV if you will edit or run noise reduction before publishing.
Why is my Reel MP3 silent?
The Reel was probably silent in Instagram, region-muted, or used a licensed track Meta did not serve in your country. Play the source MP4 before blaming the converter.
Does Instagram notify the creator when I extract audio?
No. Downloading a public file is a client-side fetch of media Instagram already published to its CDN. That is different from screenshot notifications on Stories—see Is It Safe to Use an Instagram Downloader?.
Can I use extracted Reels music on TikTok or YouTube?
Usually no for library tracks. Instagram's licenses cover in-app use, not automatic cross-platform republication. Replace audio or license it separately—covered in How to Repurpose Instagram Reels for TikTok and YouTube Shorts.
Does extracting audio lower quality?
Any lossy-to-lossy chain (AAC in MP4 → low-bitrate MP3 → re-encoded again) can add artifacts. Start from the MP4 curl-x saved and use one conversion step when possible.
Next Step
Copy a public Reel URL, download the MP4 on curl-x, and run your preferred audio export. If you also save Stories and feed videos from the same account, How to Download Instagram Content From a Link (URL) keeps the whole workflow in one paste box.
For editing pipelines that need video and audio separated cleanly, download first with How to Download Instagram Reels in HD (1080p), archive the MP4, then export audio copies only for destinations that require MP3 or M4A.
Bottom line: Instagram never hands you a standalone MP3, but every Reel download already carries AAC audio inside the MP4. curl-x captures that file in one paste; FFmpeg or VLC turns it into MP3 or M4A on your machine without sketchy "Reel audio downloader" apps. Verify the clip has sound in Instagram first—and remember that licensed music extracts technically but does not license you to republish elsewhere.
Related Guides
Baixar Vídeo do Instagram: Guia Completo (2026)
Aprenda a baixar vídeo do Instagram, Reels, Stories e IGTV no celular ou PC. Passo a passo em português para iPhone, Android, Windows e Mac — sem app.
How to Download Instagram Reels in HD (1080p)
Save public Instagram Reels at the sharpest quality Meta publishes. Step-by-step 1080p workflow for iPhone, Android, and desktop—no app required.
How to Download Instagram Videos Without an App (2026)
Save Instagram Reels, posts, and IGTV without installing an app. Use Safari or Chrome plus curl-x—works on iPhone, Android, PC, and Mac.