vgmstream_cli:tldr:0c77c
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:
-
"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.
-
${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.
-
"-o": This is a flag indicating that the following argument specifies the output file.
-
${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.