0XC00D14BD

NS_E_PLAYLIST_END_RECEDING (0xC00D14BD) - Fix fast

Windows Errors Intermediate 👁 6 views 📅 Jul 4, 2026

Your playlist ended while trying to recede? It's usually a corrupt media file or a bad network path. Here's how to fix it without wasting time.

Yeah, this error is annoying. Let's kill it.

You're trying to play a video or audio file, and Windows Media Player throws up NS_E_PLAYLIST_END_RECEDING with 0xC00D14BD. The playlist just stops. No warning. Frustrating, right? I've seen this on a dozen client machines over the years. Here's the real fix.

First step: the actual fix

9 times out of 10, it's a corrupt media file. The file looks fine, but one bad byte kills the whole playlist. Here's what I do:

  1. Open Windows Media Player.
  2. Find the file that gives the error. Right-click it.
  3. Select Delete from the library (don't worry, we'll re-add it).
  4. Now run a quick file check:
    sfc /scannow
    in an admin command prompt. This fixes system files that might be messing with playback.
  5. After that, re-add the file to the library by dragging it back from its folder.
  6. If the error comes back, the file is corrupt. Replace it with a fresh copy from your source.

Had a client last month whose entire playlist died because of one corrupt MP3 from a CD rip. We deleted it, re-ripped the CD, and the error vanished.

Why this works

Windows Media Player builds a playlist cache. When it hits a corrupt file, the whole queue breaks. Deleting and re-adding forces a fresh cache check. The SFC scan also fixes any system corruption that could affect media codecs. Simple, but it works.

Less common variations

If the above didn't fix it, try these:

Network share issue

If your files are on a network drive, the error often happens when the network path drops mid-playback. I've seen this with mapped drives that reconnect after a sleep cycle. Fix: copy the file to your local drive first. Also check the path length — Windows has a 260 character limit, and long paths can cause this error. Shorten the folder name if needed.

Corrupt codec

Sometimes it's not the file, but the codec. Windows Media Player uses DirectShow filters. If one filter is broken (like after a bad codec pack install), playback fails. Fix: open regedit and go to

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Media Player
. Look for a key called PlayerSettings. Delete it, then restart WMP. It rebuilds the codec list fresh. Do this only if you're comfortable with registry edits—back it up first.

File format mismatch

WMP doesn't play everything. If you have an MKV file or a weird audio format, it might generate this error. Use a tool like MediaInfo to check the actual codec inside the file. If it's not supported (like HEVC without the extension), install the right codec pack or use VLC instead.

Prevention tips

Once you've fixed the error, here's how to keep it from coming back:

  • Keep files local. Network paths are flaky. Store media on your hard drive.
  • Use a proper media player. VLC or MPC-HC handle corrupt files better than WMP. WMP is fine for basic stuff, but if you get errors like this often, switch.
  • Check file integrity. When you download or rip media, run a hash check if available. A single bad download can cause this error.
  • Update your codecs. Install the K-Lite Codec Pack (basic version). Keeps things stable without bloating your system.
  • Regular SFC scans. Once a month, run sfc /scannow to catch system corruption early.

That's it. You're done. Error gone. Go watch your video.

Was this solution helpful?