Click or drag to resize
AudioCompressionManagerMp3ToWav Method
Converts Mp3 file to Wav file with PCM (Pulse-code modulation) data

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static void Mp3ToWav(
	string fileMp3,
	string fileWave
)

Parameters

fileMp3
Type: SystemString
input Mp3 file
fileWave
Type: SystemString
output Wave file
Examples
This example shows simple using of Mp3ToWav method.
AudioCompressionManager.Mp3ToWav("in.mp3", "out.wav");
See Also