What Is WMA?
WMA (Windows Media Audio) is the audio codec family Microsoft introduced in 1999 to compete with MP3 inside the Windows Media Player ecosystem. It is technically competent, was historically locked to a Microsoft DRM scheme, and is effectively legacy in 2026. This page documents the four WMA profiles, the DRM situation, what plays WMA today, and how to convert it.
The Four WMA Profiles
WMA shipped as four distinct codecs sharing a container. WMA Standard (codec ID 0x0161): lossy perceptual coding, 8-385 kbps, the format Windows Media Player ripped CDs into by default. Quality is comparable to MP3 at the same bitrate, slightly better below 96 kbps. WMA Pro (0x0162): higher-quality lossy codec for 24-bit / multichannel / surround content; not widely supported outside Windows. WMA Lossless (0x0163): bit-perfect lossless compression equivalent in concept to FLAC or ALAC; almost no third-party support. WMA Voice (0x000A): low-bitrate speech codec, similar to GSM or Speex; used briefly in Windows Mobile. All four wrap inside the ASF (Advanced Systems Format) container and use the .wma extension. ffprobe reports the codec ID, which tells you which profile a given file uses.
DRM History: PlaysForSure and Janus
From 2002 to roughly 2008, Microsoft's WMA DRM (PlaysForSure, later Janus) was the dominant copy-protection layer for downloadable music in the West outside iTunes. Yahoo Music, Napster 2.0, MSN Music, Walmart Music Downloads, Zune Marketplace — all sold WMA files DRM-locked to the buyer's authorised devices. The schemes used licence servers that have since been shut down: MSN Music in 2008, Yahoo in 2008, Walmart in 2011, Zune in 2015. Files purchased under those schemes can no longer be re-licensed if a device is reformatted. Unprotected WMA files (CD rips, voice recordings, ripped from Windows Media Center) carry no DRM and convert freely; protected WMA cannot be converted by any legitimate tool — see [convert-wma-to-mp3-on-mac](/blog/convert-wma-to-mp3-on-mac).
Why WMA Is Legacy in 2026
Three forces killed WMA's mainstream relevance. iTunes and the iPhone established AAC as the default lossy codec on consumer hardware globally; iPhone has never supported WMA natively. Streaming replaced downloads — Spotify, Apple Music, YouTube Music use AAC, Vorbis, and Opus, not WMA. Microsoft itself moved away: Groove Music shut down in 2017, and the Windows 11 'Media Player' app uses AAC by default. WMA still decodes on Windows 10/11 (the codecs ship in the box) and via Audacity/VLC/ffmpeg cross-platform, but no significant new content is published in WMA. If you find WMA files on a hard drive in 2026, they almost certainly came from a Windows XP/Vista-era CD rip or a legacy voice recorder.
Decoder Support Today
Windows 10/11: native via the included WMA codec. Windows Media Player Legacy and the new Media Player app both decode all four profiles. macOS: no native support; install VLC, ffmpeg, or use [WMA to MP3](/convert/wma-to-mp3) which decodes via WebAssembly ffmpeg in the browser. Linux: ffmpeg/libavcodec decodes Standard, Pro, and Lossless; many distros ship this in the 'extras' package due to historical patent caution. iOS: not supported; conversion required. Android: WMA Standard plays on stock Samsung and some other OEM media apps; not a Google standard. Embedded devices, car stereos, Bluetooth speakers: occasional support on Windows-era hardware (2003-2010); rare on modern devices. Files that decode anywhere can be converted everywhere; protected WMA stays unplayable outside its original Windows licence chain.
WMA vs MP3 vs AAC: Quality at Common Bitrates
Audio engineers ran formal listening tests in the early 2000s comparing WMA, MP3, and AAC at common bitrates. Summary: at 64 kbps, WMA edged MP3 and was roughly tied with AAC; at 128 kbps WMA was very slightly behind AAC and very slightly ahead of MP3; at 192 kbps and above, all three are perceptually transparent for most listeners. The differences were small enough that ecosystem support, not codec quality, decided the winner — and AAC and MP3 won. WMA Pro was technically excellent and supported 24-bit / 5.1, but the ecosystem lock-in prevented adoption. Practical takeaway: for archival quality, the WMA file is what it is — converting to MP3 320 kbps or M4A 256 kbps preserves all audible content.
Conversion Strategy for Unprotected WMA
If your WMA files have no DRM (right-click in Windows Explorer > Properties > Details: 'Protected: No'), conversion is trivial. The cleanest path: convert each WMA to MP3 at the highest practical bitrate (320 kbps CBR or V0 VBR) using [WMA to MP3](/convert/wma-to-mp3). For library archival where size matters less than quality, convert to FLAC via WAV intermediate — but remember that WMA Standard is already lossy, so the FLAC will be a lossless wrapper around lossy audio (no quality recovery, just no further degradation). Batch conversion on macOS via Homebrew ffmpeg: install with 'brew install ffmpeg', then 'for f in *.wma; do ffmpeg -i "$f" -b:a 320k "${f%.wma}.mp3"; done'. See [wma-to-mp3-guide](/blog/wma-to-mp3-guide) for end-to-end guidance.
Conversion Strategy for Protected WMA
Protected WMA files (codec ID 0x0161 inside an ASF stream with the DRM header present) cannot be converted by any general-purpose tool. The audio is encrypted, and decryption requires a valid licence from the original DRM server — most of which are offline. Three legitimate paths: (1) Re-purchase the content from a current service (Spotify, Apple Music, Bandcamp). (2) If the original disc exists, re-rip the CD to FLAC or MP3. (3) Capture the audio in real time as it plays on a still-authorised Windows machine using Audacity's 'WASAPI loopback' input — analogue-domain quality only. Tools that claim 'DRM removal' for WMA either fall into category 3 or rely on ancient Windows DRM v9 vulnerabilities that no longer apply to modern files. Plan for the lossy-real-time-capture path on any DRM rescue project.