0XC00D11BC

NS_E_WMP_INVALID_LIBRARY_ADD (0XC00D11BC) – File Format Not Supported

Windows Errors Intermediate 👁 11 views 📅 May 27, 2026

Windows Media Player can't add a file because it doesn't support the format or the file's metadata is corrupt. Here's how to fix it.

1. The file you're adding uses an unsupported container or codec

What's actually happening here is that Windows Media Player (WMP) — even the latest version in Windows 11 — only supports a narrow set of file formats natively. The error 0XC00D11BC fires when WMP's library parser looks at the file header, doesn't recognize the container (like .mkv, .flv, .webm), or sees a codec it can't decode (like HEVC, VP9, FLAC, or Opus).

I've seen this most often with users trying to add a ripped Blu-ray file in .mkv (Matroska) or a downloaded .webm from YouTube. WMP's library simply says "nope, I don't know what to do with this" and throws 0XC00D11BC.

The real fix: Convert the file to a WMP-friendly format. The safest bet is .wmv, .mp4 with H.264 video + AAC audio, or .mp3 for audio-only files. Don't bother with WMP's built-in converter — it's ancient garbage. Use HandBrake (free, open-source) for video, or VLC for quick transcoding in the same format.

Here's the VLC conversion command that's saved me dozens of times:

vlc input.mkv --sout="#transcode{vcodec=h264,acodec=mp4a,vb=2000,ab=128}:standard{access=file,mux=mp4,dst=output.mp4}" vlc://quit

After conversion, try adding the new file to WMP. It'll work. But what if the file is already in a supported format like .mp3 or .wma? Then the problem is something else — keep reading.

2. The file's metadata is corrupted or incomplete

Even if the container and codec are fine, WMP's library scanner can choke on bad or missing metadata. The scanner reads ID3 tags (for MP3) or ASF headers (for WMA/WMV) to populate the library view. If those tags have garbage characters, unexpected null bytes, or are just truncated, WMP's parser throws a fit — that's your 0XC00D11BC.

This happens a lot with files downloaded from peer-to-peer networks, or files that were edited with buggy tag editors. I've personally hit this with an MP3 that had a 200-character artist name field filled with spaces — WMP just couldn't handle it.

The fix: Use Mp3tag (free, Windows) to clean the metadata. Open the file, select all tags, and delete them. Then re-add just the basic fields (title, artist, album) with plain text — no fancy Unicode symbols, no long descriptions. Save and try adding to WMP again.

If Mp3tag shows the file as unreadable, the file itself is probably corrupt. Try a repair tool like MP3 Repair Tool or simply re-download the file from a trusted source.

3. Windows Media Player's library database is outdated or corrupted

WMP stores your library metadata in a set of .wmdb files. Over time — especially if you've force-closed WMP, had a crash, or removed a drive while WMP was scanning — these files can get corrupted. When that happens, WMP can't add new entries correctly, and every new file triggers 0XC00D11BC even if the file itself is fine.

This is the third most common cause, but it's dead simple to fix. No file conversion, no metadata tools — just a library rebuild.

The fix: Delete the library database files. WMP will recreate them from scratch on next launch.

  1. Close WMP completely. Check Task Manager — kill any wmplayer.exe processes.
  2. Open File Explorer and paste this into the address bar: %LOCALAPPDATA%\Microsoft\Media Player
  3. You'll see files named like CurrentDatabase_372.wmdb (the number varies). Select them all and delete them. Don't worry — they're not your actual media files, just the index.
  4. Restart WMP. It'll say "Building library..." for a minute or two. Then try adding the problematic file again.

If the error persists after this, you're dealing with a different problem — check if the file is on a network share or external drive. WMP sometimes fails to add files from certain network paths. Move the file locally, add it, then move it back.

Quick-reference summary table

Cause Symptom Fix Difficulty
Unsupported container/codec File works in VLC but not WMP Convert to .mp4 (H.264/AAC) using HandBrake Beginner
Corrupt metadata File plays but WMP errors on add Clean tags with Mp3tag Intermediate
Corrupt library database All new files fail to add Delete .wmdb files in %LOCALAPPDATA%\Microsoft\Media Player Intermediate

Was this solution helpful?