Skip to content
GrabVid - free video downloader
Guides

How to Convert YouTube Shorts to MP3

8 min readBy GrabVid

YouTube Shorts are full of great audio. A thirty second explanation that finally makes a concept click, a sound you keep hearing and cannot name, a native speaker pronouncing the word you have been mangling for a month. The picture is often incidental. What you actually want to keep is the sound.

YouTube gives you no way to do that. The app has an offline mode, which keeps the whole video inside the app where you cannot get at it, and that is the entire offering. There is no export, no audio option, and nothing that produces a file you own.

So here are the three methods that genuinely work, what each one costs you in quality and effort, and the honest answer on how good the audio can possibly be. Spoiler on that last point: the ceiling is set by the creator's upload, and nothing downstream raises it.

Method 1: Use an online converter (recommended)

This is what most people should do. It takes about fifteen seconds, works the same on a phone and a laptop, and there is nothing to install or sign into.

  1. Open the Short you want. Tap Share on the right side of the player, then Copy link. You get an address with /shorts/ in it followed by the video ID. On desktop, copying the browser address bar does the same job.
  2. Open the YouTube Shorts to MP3 converter and paste the link into the box.
  3. Give it a second to read the video. YouTube stores more separate streams than any other platform, so collecting the list takes slightly longer here than elsewhere.
  4. Pick an MP3 bitrate. The audio options sit at the bottom of the list at 128, 192 and 320 kbps, each showing what the file will come to, with the source bitrate printed alongside so you can see the ceiling.
  5. Save. On desktop the file lands in your Downloads folder. On iPhone it goes into Files, on Android into the Downloads folder.

One thing worth knowing about what you get back. YouTube does not store MP3. It stores AAC audio inside an MP4 container, and sometimes Opus inside WebM. Any MP3 you get from any converter, ours included, was produced by decoding that stream and re-encoding it, which is why the bitrate you choose matters and why no converter can hand you more than the source held.

We run that conversion with ffmpeg on the server and let you pick the bitrate, because the choice is a real one. MP3 is a less efficient codec than AAC, so a 128 kbps MP3 made from a 128 kbps AAC source loses a little on the way out, while a 320 kbps one is effectively transparent at two and a half times the size. There is also a last entry in the list that is the original M4A streamed through untouched: take that one if whatever you are feeding it accepts AAC, which almost everything does.

Method 2: Use a desktop app

If you are comfortable in a terminal, yt-dlp is the most capable option available. It is open source, actively maintained, and handles YouTube alongside a thousand other sites. It is also the right answer if you need to do this fifty times rather than once.

The basic command for audio extraction is one line: yt-dlp -x followed by the Shorts URL. The -x flag means extract audio, and it throws away the video stream once the audio is out. Adding --audio-format mp3 converts the extracted AAC to MP3 afterwards, and adding --audio-quality 0 asks for the best quality that conversion can manage.

The honest caveat: this needs a terminal, a working Python or a standalone binary on your PATH, and ffmpeg installed separately for the conversion step. If none of those sentences meant anything to you, this is not the method for you, and the online converter produces the same file with none of the setup. yt-dlp also needs updating every so often, because it breaks when platforms change their internals, which they do regularly.

For a single Short it is comprehensively overkill. For archiving a channel's worth of audio it is the only sane choice.

Method 3: Screen record and extract

Every phone can record its own screen now. iPhone has it in Control Centre, Android in the quick settings panel. Record the Short playing, then run the resulting video through any video to audio converter to get the sound out.

This is a last resort and it should be treated as one. You are capturing audio that has already been decoded and played through the system mixer, then re-encoding it, which means two extra lossy passes on top of YouTube's original compression. Any notification sound that arrives during recording is baked permanently into the result. You also have to trim the start and end by hand, because the recording includes you tapping the buttons.

The one situation where it is justified: content you can legitimately see but that is not publicly reachable, so no URL based tool can get at it. Otherwise you are choosing a worse file for no reason.

Which method should you use?

  • Online converter, for almost everyone. Fastest route, works on any device, nothing to install, and the audio is the original stream rather than a re-recording.
  • yt-dlp, for developers and anyone doing this in bulk. Scriptable, precise about format selection, and worth the setup cost only if you will use it more than once.
  • Screen recording, only when nothing else can reach the content. Two extra lossy passes and manual trimming for a result that is measurably worse.

If you want the video rather than the audio, that is a different job with a different page: the YouTube Shorts downloader saves the vertical MP4 with the sound still attached.

Audio quality: what to expect

Here is the number that governs everything else. Shorts audio is typically 128 kbps AAC, occasionally around 160 kbps Opus. That is what YouTube stored when the creator uploaded, and it is the ceiling for every method above.

The consequence people resist hardest: converting a 128 kbps source to a 320 kbps MP3 does not produce 320 kbps quality. There is no mechanism by which information discarded during YouTube's encode reappears during yours. A site advertising 320 kbps as though it were a quality upgrade over the source is selling you file size.

That said, the tier is not meaningless, and the nuance gets lost in the backlash. What it controls is how much the MP3 encode adds on top of the source. MP3 is an older codec than AAC and less efficient at the same bitrate, so squeezing a 128 kbps AAC source into a 128 kbps MP3 does audibly cost something, while 320 kbps leaves enough room that the conversion is effectively free. So: 320 for music you care about, 128 for speech, and the untouched M4A when your destination will take it.

  • For speech, and that covers most Shorts worth extracting, 128 kbps AAC is transparent. A voiceover, a tip, a pronunciation clip: you will not hear a difference from the source on any equipment.
  • For music it is adequate rather than excellent. On good headphones you may notice cymbals smearing and reverb tails cut short. That was true of the Short before you downloaded it.
  • Shorts are encoded for phone playback on mobile data, so their audio budget is, if anything, slightly tighter than a regular YouTube upload of the same length.

File size follows directly from bitrate, which makes planning easy: roughly 1 MB per minute at 128 kbps. A thirty second Short is around half a megabyte. A three minute one, the maximum length Shorts allows, is about 3 MB. If your download came back at 20 MB, you picked a video option rather than the audio one.

Technical details, briefly

A video file is a container holding a video stream and an audio stream side by side. Extraction pulls the audio stream out and writes it to its own file without touching the data, which is a copy operation and loses nothing. Conversion re-encodes that audio into a different codec, and every re-encode of lossy audio loses a little more.

That distinction is why the list offers both. The M4A option is pure extraction, so it is the closest thing to the source you can get. The MP3 options are extraction followed by one conversion, done once on our side at the bitrate you picked, which is better than the alternative of converting twice because some intermediate tool insisted on its own format first. Whichever you take, do any further format changes last and only when something genuinely refuses what you have. Our guide to video formats covers the same container and codec question on the video side, which is where the choice actually costs you something visible.

Common problems and fixes

The download starts but the file is silent

Check the original Short with the volume up first. If it is silent there, no tool can add audio that was never recorded, and the usual cause is a creator muting their own upload to dodge a copyright claim on background music. If the original has sound and your file does not, you probably took a high resolution video stream rather than the audio one, since YouTube stores video and audio separately above 1080p. A DRM protected or rights claimed audio track can also come back empty. Our piece on why downloaded videos have no sound walks through all four causes in order.

I get an error when pasting the link

Make sure it is a direct Shorts URL and not a channel page, a search result, a playlist or the Shorts shelf on someone's profile. The link should contain /shorts/ followed by the video ID, or be a youtu.be or watch?v= address pointing at one specific video. Private, members only and age restricted videos fail regardless, because they require an authenticated session that a public tool does not have and should not have.

The audio quality is poor

It is limited by what the creator uploaded. A Short recorded on a phone in a noisy room is a phone recording in a noisy room no matter how you extract it. Before blaming the converter, play the original on the same headphones. If it sounds the same, you already have the best version that exists. Selecting a higher bitrate on any tool will not change this.

Can I do this on an iPhone?

Yes. Safari works fine and no app is needed, which matters because the App Store does not permit dedicated video downloader apps. Copy the link in the YouTube app, paste it into Safari, tap the audio option and confirm the download. The file goes into the Downloads folder inside the Files app, and from there the share icon sends it to Voice Memos, a note, a messaging app or iCloud Drive. Do not look for it in Photos: the camera roll does not accept audio files, and that is correct behaviour rather than a failure.

One last thing about the audio you are saving

Saving a voiceover, a pronunciation clip, a spoken tip or the audio from a Short you posted yourself is ordinary personal use. Extracting a song so you do not have to pay for it is not, and it is why this whole category is viewed the way it is.

Music on Shorts is very often taken from YouTube's own audio library, which licenses it for playback on YouTube and nowhere else. Extracting it does not transfer any right to publish it elsewhere, and re-uploading a Short with library audio intact to another platform is the fastest route to an automated copyright claim. Our disclaimer sets out the whole position.

When you are ready, the Shorts to MP3 converter is one paste away, and it handles regular YouTube videos on the same page if the thing you want the audio from turns out to be longer than three minutes.

Copy the Short's link with the Share button, paste it into an online converter such as the one at /youtube/mp3, and pick the audio only option from the list. It takes about fifteen seconds and works the same in a mobile browser as it does on a desktop.

Typically 128 kbps AAC, sometimes around 160 kbps Opus. Shorts are encoded for mobile playback so their audio budget is slightly tighter than a regular upload. That number is the ceiling, and no conversion can raise it.

For music, yes, because it leaves enough room that the MP3 encode adds nothing audible of its own. For speech it is wasted, since 128 kbps is already transparent there. What 320 will never do is exceed the source, which for Shorts is about 128 kbps: it buys a cleaner conversion, not a better original.

Yes, in Safari, with nothing to install. The file downloads into the Files app rather than Photos, because the camera roll does not accept audio. From Files you can share it to Voice Memos, a note or any app that takes audio.

Either the Short itself was muted, often by the creator to avoid a copyright claim, or you took a high resolution video stream instead of the audio one, since YouTube stores them separately above 1080p. Play the original with the volume up to tell the two apart.

Personal offline listening is generally treated as fair use in most countries, while YouTube's own terms separately restrict downloading outside their offline feature. Re-uploading, distributing or monetising extracted audio is clearly infringing everywhere, and Shorts music is usually licensed for YouTube playback only.

Keep reading