AudioUtils

How to Batch Convert Audio Files: FFmpeg & Browser

Convert hundreds of audio files at once using FFmpeg commands or browser tools. Covers AIFF, WMA, and mixed-format library conversion with practical commands.

Single-file converters break down the moment you have a folder of 200 podcast episodes, a 5,000-track music library, or a back-catalog of session WAVs that all need to become FLAC. Batch conversion is its own discipline — different tooling, different speed considerations, different failure modes than one-off conversion. The right approach depends on file count, source format mix, whether metadata needs to survive, and how much CPU you can throw at the problem.

When Batch Conversion Is Worth Setting Up

A few signals that you have a batch problem rather than a single-file problem:

  • Library migration. Moving from iTunes M4A to a Plex/Roon FLAC library, or shifting a Windows Media WMA library to MP3 for a non-Microsoft device.
  • Podcast back-catalog. Re-encoding old episodes to a smaller bitrate after you switched bitrate strategy partway through a show.
  • Sample-pack preparation. A producer downloading 1,200 royalty-free samples and needing them all at 48 kHz mono WAV for a hardware sampler.
  • Archive normalization. Forensic, journalism, or research workflows where every recording must end up at the same sample rate, bit depth, and container for downstream tooling.
  • Format consolidation after years of mixed sources. Old AIFFs from a Mac, WMAs ripped on Windows in 2008, MP3s from CDs, M4As from iTunes — all sitting in one folder.

For anything below ~30 files, a browser-based converter with multi-file queue support is usually fast enough. Beyond that, scripts and dedicated tools start paying for themselves quickly.

FFmpeg: The Universal Batch Converter

FFmpeg is free, open-source, and handles every audio format. Install it once and convert anything.

Install FFmpeg:

  • macOS: 'brew install ffmpeg' (requires Homebrew)
  • Windows: Download from ffmpeg.org > Releases > Windows builds. Add to PATH.
  • Linux: 'sudo apt install ffmpeg' (Debian/Ubuntu)
  • Batch convert a folder on macOS/Linux:

    Convert all AIFF files to MP3: 'for f in *.aiff; do ffmpeg -i "$f" -q:a 2 "${f%.aiff}.mp3"; done'

    Convert all WMA files to MP3: 'for f in *.wma; do ffmpeg -i "$f" -q:a 2 "${f%.wma}.mp3"; done'

    Convert all WAV files to FLAC: 'for f in *.wav; do ffmpeg -i "$f" "${f%.wav}.flac"; done'

    The '-q:a 2' flag produces approximately 190 kbps variable bitrate MP3. For fixed 320 kbps, use '-b:a 320k' instead.

    Batch convert on Windows (Command Prompt):

    Convert all WMA to MP3: 'for %f in (*.wma) do ffmpeg -i "%f" -q:a 2 "%~nf.mp3"'

    Convert all AIFF to MP3: 'for %f in (*.aiff) do ffmpeg -i "%f" -q:a 2 "%~nf.mp3"'

    Recursive batch conversion (all subfolders):

    On macOS/Linux: 'find . -name "*.wma" -exec ffmpeg -i {} -q:a 2 {}.mp3 ;'

    Note: this names files 'song.wma.mp3' — for cleaner naming, use a Python script or the find/sed combination.

    GUI Tools for Non-Technical Users

    fre:ac (Windows, Mac, Linux — free): Drag an entire folder, choose output format, run. Handles WMA, MP3, FLAC, AAC, OGG. Supports parallel processing (converts multiple files simultaneously). Good for most use cases.

    dBpoweramp (Windows, Mac — $38): Professional-grade. Batch conversion with AccurateRip CD ripping, metadata preservation, format detection. Worth the price for large libraries.

    XLD (Mac — free): Excellent for CD ripping and lossless conversion. Supports batch FLAC to MP3, WAV to FLAC, etc.

    MediaHuman Audio Converter (Mac — free, Windows): Drag-and-drop batch converter with a simple interface. Handles most common format pairs.

    Handling Mixed-Format Libraries

    Old music libraries often contain a mix: some AIFF, some WMA, some MP3, some WAV. Convert all to FLAC for archiving (the lossless formats stay identical quality; the lossy formats stop accumulating generation loss). Then keep the FLAC library as your master and generate MP3 for devices as needed.

    FFmpeg batch for a mixed library — convert everything to FLAC (skip files already FLAC): 'find . -type f ( -name ".aiff" -o -name ".wav" -o -name "*.m4a" ) -exec ffmpeg -i {} {}.flac ;'

    Preserving Metadata During Batch Conversion

    FFmpeg copies metadata (artist, album, track number, year) by default when converting between formats. Add '-map_metadata 0' explicitly if you want to ensure metadata is transferred: 'ffmpeg -i input.wma -map_metadata 0 -q:a 2 output.mp3'

    fre:ac and dBpoweramp also preserve metadata by default.

    Speed Considerations

    FFmpeg processes sequentially by default (one file at a time). On macOS/Linux, use GNU Parallel for multi-core batch processing: 'find . -name "*.aiff" | parallel ffmpeg -i {} -q:a 2 {.}.mp3'

    This runs one FFmpeg process per CPU core. On an 8-core machine converting 200 AIFFs, the wall time drops from roughly 30 minutes to about 4. Each parallel worker gets its own FFmpeg instance — the audio decoder is single-threaded per file but the OS schedules them across cores.

    SoX as an FFmpeg Alternative

    Sound eXchange (SoX) is the other major command-line audio swiss-army knife. It is older than FFmpeg, more focused on audio (no video at all), and sometimes preferred for sample-rate conversion because its rabbit resampler is class-leading. Install: 'brew install sox' on Mac, 'apt install sox' on Linux. Batch loop:

    'for f in *.wav; do sox "$f" -r 48000 -c 1 "converted/${f%.wav}.wav"; done'

    SoX cannot write MP3 without the LAME library compiled in (most Homebrew builds include it). For lossless-to-lossless conversions and high-quality sample-rate changes, SoX is often a better choice than FFmpeg.

    Browser-Based Batch Queueing

    AudioUtils, Online Audio Converter, and Convertio all support multi-file queueing: drop 20–50 files at once and the converter processes them sequentially in the same browser tab. AudioUtils runs FFmpeg via WebAssembly entirely in-page, so the queue does not upload anywhere — useful for sensitive content (legal recordings, unreleased music). Practical ceiling is around 100 files or 1 GB total before the tab gets sluggish; for libraries beyond that, scripts win.

    Error Handling in Batch Loops

    A single corrupt file in a 500-file batch will halt a naive shell loop. Add error tolerance:

    'for f in *.wav; do ffmpeg -i "$f" -b:a 192k "${f%.wav}.mp3" 2>> errors.log || echo "FAILED: $f" >> errors.log; done'

    The '|| echo' fallback logs failures and continues. The '2>>' redirect captures FFmpeg's stderr for diagnostics. Run 'wc -l errors.log' afterward to see how many files failed.

    For mission-critical batches, validate output afterward: 'find . -name "*.mp3" -size -10k -ls' surfaces any output files smaller than 10 KB (likely encoding failures).

    When Batch Conversion Goes Wrong

    Common failures:

    • Filename special characters. Spaces, parentheses, ampersands, and quotes break naive shell loops. Always wrap filename variables in double quotes ("$f") and use 'find -print0' with 'xargs -0' for paths with newlines.
    • Sample-rate mismatch in a target format. Some MP3 encoders reject 96 kHz input. Force a downsample: '-ar 48000'.
    • Metadata corruption. ID3v2.4 tags with embedded album art larger than 65 KB can break older players. Strip art with '-map_metadata 0 -map 0:a' if needed.
    • Disk space. Converting 500 GB of WAV to FLAC saves space (~50%) but converting WAV to AAC at 256 kbps saves much more (~95%). Plan accordingly.

    For platform-specific guidance, see how to convert audio on Mac, WMA to MP3 guide, and AIFF to MP3 guide. For the conceptual side of choosing target bitrates, see audio bitrate guide by use case. And when the batch problem is one long file rather than many — a 4-hour DJ set, a continuous lecture recording, an unsplit live album — split the audio into separate tracks before running the conversion loop so each output gets its own filename and metadata.

    More to Read

    How to Convert Audio Files: Complete GuideHow to Reduce Audio File Size Without Losing QualityHow to Convert iPhone Voice Memo to MP3 FreeHow Audio Compression WorksBest Audio Format for WebsitesHow to Extract Audio from Video FilesDoes Converting MP3 to WAV Improve Quality?How to Convert MP3 to WAV for Music ProductionHow to Convert MP3 to WAV Without Losing QualityHow to Convert MP3 to WAV on Mac and WindowsHow to Convert WAV to MP3 Without Losing QualityWAV File Too Large? Convert to MP3How to Convert iPhone Voice Memo to MP3 FreeHow to Play M4A Files on Android (Convert to MP3)How to Convert FLAC to MP3 Without Losing QualityBest Bitrate for FLAC to MP3 ConversionConvert AAC to MP3: Best Quality SettingsHow to Extract Audio from MP4 FilesConvert iPhone MOV Video to MP3How to Convert WAV to MP3 (The Complete Guide)How to Convert MOV to MP3 (iPhone & QuickTime)How to Convert MP3 to WAV for Editing and DAWsHow to Convert YouTube to MP3 Legally (3 Ways)Best MP3 to WAV Settings for Editing and DAWsBest WAV to MP3 Bitrate for Music, Podcasts, and VoiceMOV to MP3 on Mac: Fastest Ways ComparedHow to Convert M4A to MP3 on iPhone Without a ComputerHow to Convert FLAC to MP3 on MacHow to Convert FLAC to MP3 on WindowsHow to Convert OGG to MP3 on MacHow to Convert MP4 to MP3 on MacHow to Convert MP4 to MP3 on iPhoneHow to Convert MP4 to MP3 on AndroidHow to Convert WMA to MP3 on MacHow to Convert AIFF to MP3 on MacHow to Convert MOV to MP3 on WindowsM4A to WAV: How to Convert and WhyHow to Convert FLAC to OGG VorbisHow to Convert AAC to WAV for EditingHow to Convert WMA to MP3 on WindowsHow to Convert AIFF to MP3 on WindowsHow to Convert OGG to MP3 on WindowsHow to Convert FLAC to MP3 on iPhoneHow to Convert AAC to MP3 on MacHow to Convert M4A to MP3 on Mac: 3 Easy MethodsHow to Convert Audio Files with AudacityHow to Convert Audio Files with VLCFLAC to AAC: Bitrate Guide and Practical StepsOGG to AAC: Cross-Platform Audio Migration GuideWMA to OGG: Escape the Windows Media EcosystemWMA to FLAC: Lossless Archiving of Your Old WMA LibraryFLAC to Opus: Web Streaming Optimization GuideAIFF to M4A: Apple Production Workflow GuideWAV to AIFF: Windows to Mac Audio WorkflowHow to Convert AAC to MP3 on iPhoneHow to Convert FLAC to MP3 on AndroidHow to Convert OGG to MP3 on AndroidHow to Convert WAV to MP3 on iPhoneHow to Convert AIFF to MP3 on iPhoneHow to Convert M4A to MP3 on WindowsOpus to MP3: Complete Conversion GuideConvert Audio on Linux: Command Line and Browser OptionsHow to Convert Audio Without Installing SoftwareHow to Convert WMA to MP3 on Mac (Step-by-Step Guide)OGG to FLAC: What to Expect from the ConversionAAC to FLAC: Convert and What to ExpectOpus to WAV: How to Convert and Why You Might Need ToWAV to Opus: The Web Developer's Audio GuideBest Audio Format for Speech-to-Text TranscriptionBest Audio Format for WhatsApp Voice MessagesAudio Formats Windows Media Player Plays NativelyAudio Formats VLC Supports and Its Conversion FeaturesAudio Formats Foobar2000 SupportsAudio Formats Plex Media Server SupportsKodi Audio Format: What Works & What Needs ConversionAudio Formats for PS4 and PS5 USB PlaybackAudio Formats for Xbox USB PlaybackAudio on Nintendo Switch: Limitations and WorkaroundsHow to Play FLAC on iPhone (iOS 11 and Later)How to Play FLAC on Android NativelyWAV to FLAC: Converting Without Any Quality LossAIFF to WAV: macOS to Windows Audio WorkflowM4A to OGG: Converting Apple Audio to Open-SourceOpus Bitrate Guide: 32, 64, 96, 128, 192 kbps ExplainedReduce Audio File Size Without Losing QualityAudio Format Support on Raspberry Pi with mpd and mopidyBest Audio Format in 2025: The Definitive GuideIs yt-dlp Legal? What You Need to KnowLegal Ways to Download Music for Offline ListeningCreative Commons Music for Content Creators: Full GuideHow to Convert Audio on iPhone: Files App & BrowserExtract Audio from MP4 Without Software (Browser Method)How to Convert iPhone Voice Memo to MP3 (Free, No App)How to Convert Zoom Recording to MP3 (M4A or MP4 Export)How to Convert Google Meet Recording to MP3How to Extract Audio from a Zoom Webinar RecordingHow to Compress Audio in Audacity: Size & DynamicsFFmpeg Compress Audio: MP3, FLAC, Opus & AAC One-LinersCompress MP3 Without Losing Quality: What's PossibleHow to Make a Ringtone From an MP3 (iPhone & Android)How to Trim an MP3 Without Losing QualityHow to Cut Audio in Audacity (2026 Step-by-Step)How to Merge Audio Files: Three Real MethodsHow to Remove Vocals From a Song (Honest 2026 Guide)How to Record Audio on Mac: 2026 GuideHow to Record Audio on Windows: 2026 GuideHow to Record Audio on iPhone: 2026 GuideHow to Edit MP3 Metadata: Tools & WorkflowsHow to Find BPM of a Song: 5 MethodsHow to Split Audio Files: 3 Methods That WorkWhat Is MP3? The Format ExplainedWhat Is WAV? Everything You Need to KnowWhat Is FLAC? The Lossless Audio FormatWhat Is OGG? The Open Container Format ExplainedWhat Is M4A? Apple's Audio Format ExplainedWhat Is AAC? Advanced Audio Coding ExplainedWhat Is AIFF? Apple's Lossless Audio FormatWhat Is WMA? Windows Media Audio ExplainedAudio Bitrate Explained: What It Means for QualitySample Rate Explained: 44.1kHz vs 48kHz vs 96kHzMP3 vs WAV: Which Format Should You Use?MP3 vs FLAC: Lossy vs Lossless ComparedMP3 vs AAC: Which Codec Sounds Better?MP3 vs OGG (Vorbis): The Complete ComparisonFLAC vs WAV: Lossless Formats ComparedM4A vs MP3: Which Should You Choose?Lossless vs Lossy Audio: The Complete GuideAudio Formats Explained: The Complete GuideBest Audio Format for Music ProductionBest Audio Format for PodcastsBest Audio Format for GamingBest Audio Format for Music StreamingBest Audio Format for Archiving MusicWhy WAV Files Are So Large (And What to Do About It)MP3 vs WAV for Audio Editing in a DAWWhen Should You Convert MP3 to WAV?Convert WAV to MP3 for Sharing and EmailM4A vs MP3: Which Has Better Quality and Smaller Size?What Is M4A? The iPhone Audio Format ExplainedHow to Convert MP3 to OGG for Unity Game DevelopmentOGG vs MP3 for Web Audio: Which Should You Use?WAV vs AIFF: Which Uncompressed Format?AAC vs OGG: Which Lossy Codec Wins?Opus vs MP3: The Modern Codec ShowdownM4A vs AAC: What's the Difference?What Is Opus? The Modern Audio Codec ExplainedMP3 vs WMA: Which Format Should You Choose?AAC vs FLAC: Lossy or Lossless — Which to Choose?OGG vs Opus: What's the Difference?Best Audio Format for Discord in 2026Best Audio Format for Video EditingAudio File Size Comparison: MP3, WAV, FLAC, OGG, AACOpus Audio for Web Developers: A Practical GuidePrivacy-First Audio Conversion: Why Browser-Based MattersAudacity vs AudioUtils: Which Should You Use?AIFF vs FLAC: Which Lossless Format Is Better?WMA vs MP3: Which Sounds Better?OGG vs AAC: Which Audio Codec Is Better?M4A vs OGG: Which Lossy Audio Codec to UseBest Audio Format for Zoom RecordingsBest Audio Format to Use in AudacityBest Audio Format for Voice RecordingWhat Is Vorbis? The Open Audio Codec ExplainedWhat Is ALAC? Apple Lossless Audio ExplainedGarageBand Audio Formats: What to Use and WhyiTunes and Apple Music Audio Formats ExplainedAudio Sample Rates: 44.1, 48, 96 kHz ExplainedWhat Is HLS Audio? HTTP Live Streaming ExplainedAIFF vs. AIF: What Is the Difference?Best Audio Format for iMovie: Import and Export GuideAdobe Premiere Pro Audio Format GuideLogic Pro Audio Guide: Best Import & Export SettingsOBS Studio Audio Format and Settings GuideTwitch Audio Requirements: Format, Bitrate & QualitySpotify Audio Format: What You Need to KnowYouTube Audio Requirements: Quality, Format & LUFSTikTok Audio Requirements: Format, Bitrate, and QualityAndroid Audio Formats: Native Support and Best PracticesiPhone Audio Formats: What iOS Supports & Doesn'tBest Audio Format for Ringtones: iPhone and AndroidBest Audio Format for Car USB: MP3, FLAC, or WAV?MP3 Bitrate Guide: 128 to 320 kbps ExplainedFLAC vs Opus: When to Use Each Audio CodecWAV vs MP3: The Honest Quality ComparisonAAC vs. MP3 for Streaming: Which Is Better?Best Audio Format for AudiobooksFFmpeg vs. AudioUtils: When to Use EachAudio Formats for Podcast Apps: Spotify, Apple, and MoreAudio Bitrate vs. Sample Rate: What's the Difference?Audio Transcoding vs. Converting: What Is the Difference?OGG vs FLAC: Which Should You Use?Opus vs AAC: Which Codec Is Better?WAV vs FLAC for Archiving: Which Is Best?M4A vs FLAC: Apple AAC vs Lossless Quality ComparedMP3 vs AAC for AirPods: Does the Codec Matter?Audio Normalization: Peak vs Loudness — When to Use EachAudio Quality Settings: Bitrate, Sample Rate, Bit DepthMP3 vs. WAV for Podcasting: Which Format to UseBest Audio Format for Discord: Opus, MP3, and File LimitsBest Audio Format for TikTok: Specs and Upload TipsBest Audio Format for Instagram Reels and StoriesAudio Sample Rate Explained: 44.1 vs 48 vs 96kHzFLAC vs. ALAC: Lossless Audio Format ComparisonWhat Is VBR vs CBR? Bit Allocation in Audio EncodingAudio File Too Large? How to Reduce Audio File SizeAudio Formats for Zoom: Recordings, Uploads, and SharingContainer vs Codec: The Most Confusing Thing in AudioPCM Audio Explained: Why WAV Files Are So LargeVBR vs CBR for MP3: When Each Mode Is the Right ChoiceMP3 128 kbps vs 320 kbps: Does the Difference Matter?FLAC vs WAV for Music Production: The Practical AnswerM4A vs MP3 for iPhone: Which Format to Use and WhenOGG Vorbis vs MP3: Quality, Compatibility & When OGG WinsBest Audio Format for YouTube Uploads in 2026Best Audio Format for Audacity: Import, Edit, and ExportBest Audio Format for Premiere Pro: Timelines & ExportAudio Bitrate Guide: Right Settings for Every Use CaseWhy Is My Audio File So Large? How to Reduce ItLossless Audio: Is It Worth It? The Honest AnswerMP3 File Corrupted: How to Diagnose and Fix ItAudio Format for Spotify: Upload Specs & What HappensBest Free Audio Converter: Browser-Based vs DesktopAudio Compression Explained: File Size vs Dynamic RangeID3 Tags Explained: MP3 Metadata Standard