Forrest logo
back to the vgmstream_cli tool

vgmstream_cli:tldr:0c77c

vgmstream_cli: Decode an `adc` file to `wav`. (Default output name is `input.wav`).
$ vgmstream_cli ${path-to-input-adc} -o ${path-to-output-wav}
try on your machine

The command "vgmstream_cli ${path-to-input-adc} -o ${path-to-output-wav}" is using the vgmstream_cli command-line tool to convert an audio file from a specific format (ADC) to WAV format.

Here's how the command works:

  1. "vgmstream_cli": This is the command to invoke the vgmstream_cli tool. This tool is used for playing and converting various video game audio formats.

  2. ${path-to-input-adc}: This is a placeholder for the actual path to the input audio file in ADC format. Replace "${path-to-input-adc}" with the correct file path, including the file name and extension.

  3. "-o": This is a flag indicating that the following argument specifies the output file.

  4. ${path-to-output-wav}: This is a placeholder for the actual path and name of the output WAV file. Replace "${path-to-output-wav}" with the desired output path and filename, including the ".wav" extension.

By running this command, the vgmstream_cli tool will take the input ADC file and convert it to a WAV file at the specified output path.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the vgmstream_cli tool