> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/cyberpunk-2077-modding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/cyberpunk-2077-modding/modding-guides/sound/converting-.wem-to-.wav.md).

# Converting .wem to .wav

Instructions on how to convert WEM files to WAV

## Summary

Published: 31 March, 2025 by [TrackLab](https://tracklab.github.io/)

This page shows you how to convert the .wem audio files into a useable .wav file.

### Wait, this is not what I want!

* if you'd rather replace audio files, go to [Replacing sounds effects](/cyberpunk-2077-modding/modding-guides/sound/replacing-sounds-effects.md)

The extracted audio files from Cyberpunk 2077 come in a .wem format, which is not useable like a conventional audio file.

## Getting the Tool

To convert it into a .wav, this [Blog Post](https://www.gaminghouse.community/en/guides-tutorials-1003/how-to-play-convert-wem-files-ogg-mp3-67#toc-3) demonstrates a quick way on how to.

1. Using [vgmstream](https://github.com/vgmstream/vgmstream/). Download the latest [release from GitHub ](https://github.com/vgmstream/vgmstream/releases)for your OS.
2. Extract the archive. For a quick one-time use, simply put the files in the same directory where your WEM files are located.

## Using the Tool

### Singular File

Once you have vgmstream ready, you can drag and drop the WEM files over the executable file (vgmstream-cli.exe in Windows)

<figure><img src="https://1427525421-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F4gzcGtLrr90pVjAWVdTc%2Fuploads%2Fgit-blob-214ee5e9fc9158e765bb061a2427415985046cc6%2Fgrafik.png?alt=media" alt=""><figcaption><p>Dragging and Dropping a .WEM file onto the vgmstream executable</p></figcaption></figure>

### Multiple Files

If you have a folder full of files, you can create a run.bat file in the folder, and give it the following content

```bash
for %%f in (*.wem) do "./vgmstream-cli.exe" -o %%f.wav %%f
pause
```

This will, once executed, convert every WEM file in this folder into a WAV. Given that the vgmstream executable is in the same folder.

"By default the bitrate will be of 768kbps." - gaminghouse.community


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.redmodding.org/cyberpunk-2077-modding/modding-guides/sound/converting-.wem-to-.wav.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
