VoxVox2Mp3 Method (String, String, Int32) |
Converts Dialogic .vox (adpcm) file to Mp3 file.
Namespace: Alvas.AudioAssembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax public static void Vox2Mp3(
string voxFile,
string mp3File,
int samplesPerSec
)
Public Shared Sub Vox2Mp3 (
voxFile As String,
mp3File As String,
samplesPerSec As Integer
)
public:
static void Vox2Mp3(
String^ voxFile,
String^ mp3File,
int samplesPerSec
)
Parameters
- voxFile
- Type: SystemString
input Vox file - mp3File
- Type: SystemString
output Mp3 file - samplesPerSec
- Type: SystemInt32
samples per second
Examples This example shows simple using of Vox2Mp3 method.
string voxFile = "in.vox";
string mp3File = "out.mp3";
int samplesPerSec = 8000;
Vox.Vox2Mp3(voxFile, mp3File, samplesPerSec);
See Also