AudioCompressionManagerMp3ToWav Method |
Converts Mp3 file to Wav file with PCM (Pulse-code modulation) data
Namespace: Alvas.AudioAssembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax public static void Mp3ToWav(
string fileMp3,
string fileWave
)
Public Shared Sub Mp3ToWav (
fileMp3 As String,
fileWave As String
)
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