Convert Winamp Bookmarks to Windows Media Player Playlist: A Step-by-Step Guide
If you have audio/video bookmarks (or a cue list) from Winamp and want them in Windows Media Player (WMP), this guide walks through converting them into a WMP-compatible playlist (.wpl or .m3u). I’ll assume your Winamp “bookmarks” are saved as a playlist file (commonly .m3u, .pls, or Winamp’s .zpl/.bks formats). If your bookmarks are stored differently (in a database or plugin file), the same steps still apply with minor adjustments.
Overview (what we’ll do)
- Locate and identify your Winamp playlist/bookmark file(s).
- Convert or normalize them into a standard playlist format (.m3u or .wpl).
- Fix any file path issues (relative vs absolute paths).
- Import the playlist into Windows Media Player and verify.
Tools needed
- A text editor (Notepad on Windows).
- (Optional) A small playlist converter or audio player that supports multiple playlist formats (e.g., VLC, foobar2000) — useful if you have .zpl/.bks or corrupted formats.
- Windows Media Player (on Windows).
1) Find your Winamp bookmarks / playlist files
- Typical locations:
- Winamp playlists: C:\Users\AppData\Roaming\Winamp\Plugins\ or C:\Users\Music\Winamp</li>
- Common playlist extensions: .m3u, .pls, .zpl, .bks, .m3u8
- If you exported bookmarks from Winamp, check your chosen export folder.
2) Determine the playlist format and convert if needed
- If the file is already .m3u or .m3u8: skip to “Fix paths”.
- If the file is .pls: it’s text-based and compatible — you can open it and convert to .m3u manually or use a converter.
- If the file is .zpl or .bks (Winamp-specific): use foobar2000 or VLC to open and re-save/export as .m3u/.m3u8/.wpl.
- foobar2000: File → Open → select the .zpl/.bks → Select all → File → Save Playlist → choose .m3u or .wpl.
- VLC: Media → Open File → add playlist file → Media → Save Playlist to File → choose .m3u.
3) Fix file paths (make entries valid for Windows Media Player)
- Open the .m3u/.pls/.wpl in Notepad.
- Inspect entries:
- Absolute paths: C:\Music\Artist\track.mp3 — good for WMP.
- Relative paths: ..\folder\track.mp3 — WMP may not resolve; convert to absolute paths.
- URLs: http://… — WMP supports some streams but may not for all types.
- To convert relative to absolute paths quickly:
- If all media files are in a single folder, open that folder in File Explorer, copy the full path from the address bar, then in Notepad replace the relative prefix with the full path.
- For many files in various folders, use a playlist manager (foobar2000) to load the playlist and then save it as an absolute-path .m3u/.wpl.
Example: M3U lines Original relative: ..\Music\Album\01 – Track.mp3 Converted: C:\Users\YourUser\Music\Album\01 – Track.mp3
- Save the edited file as UTF-8 (.m3u8) if filenames contain non-ASCII characters.
4) Convert to WMP’s .wpl (optional)
- WMP supports .m3u and .wpl. If you prefer .wpl:
- Open the .m3u in Windows Media Player (drag-and-drop into the library or playlist pane).
- Select the playlist in WMP’s Now Playing list, click the menu (right-click the playlist) and choose “Save playlist as…” then choose .wpl.
5) Import playlist into Windows Media Player
- Method A — Drag & Drop:
- Open Windows Media Player.
- Drag the .m3u or .wpl file into the “Playlists” pane or into the Now Playing area. WMP should import and display the tracks.
- Method B — File → Open:
- In WMP, press Ctrl+O, browse to the playlist file, and open it.
- Method C — Save via another player:
- If you used foobar2000/VLC to convert, save directly as .wpl for immediate WMP compatibility.
6) Verify playback and fix missing files
- In WMP, try playing the playlist.
- If tracks show as missing:
- Right-click the track → Properties → see the path, then correct the path in the playlist file or move the media to that path.
- Use a batch tool or script (PowerShell) to automate path fixes if there are many.
Small PowerShell snippet to replace a folder path in a playlist:
(Get-Content ‘C:\path\playlist.m3u’) -replace ’D:\OldMusic\‘, ‘C:\Users\YourUser\Music\’ | Set-Content ‘C:\path\playlist_fixed.m3u’
Troubleshooting
- Non-ASCII filenames show as ? or garbled: save playlist as UTF-8 (.m3u8) and reopen.
- Streaming URLs not playable: WMP may not support certain codecs; try using VLC or different player.
- Proprietary Winamp bookmark files not opening: use foobar2000 with Winamp playlist support or export from Winamp as .m3u.
Quick summary (one-line steps)
- Locate Winamp playlist/bookmark file. 2. Convert to .m3u/.wpl using foobar2000/VLC if needed. 3. Make paths absolute and save as UTF-8. 4. Open or drag the playlist into Windows Media Player. 5. Fix any missing paths and save.
If you want, tell me which playlist file extension you have and where your media is stored and I’ll produce the exact commands or an edited playlist example.