VoxVox2Mp3 Method (BinaryReader, BinaryWriter, Int32) |
Namespace: Alvas.Audio
[Missing <param name="br"/> documentation for "M:Alvas.Audio.Vox.Vox2Mp3(System.IO.BinaryReader,System.IO.BinaryWriter,System.Int32)"]
[Missing <param name="bw"/> documentation for "M:Alvas.Audio.Vox.Vox2Mp3(System.IO.BinaryReader,System.IO.BinaryWriter,System.Int32)"]
[Missing <param name="samplesPerSec"/> documentation for "M:Alvas.Audio.Vox.Vox2Mp3(System.IO.BinaryReader,System.IO.BinaryWriter,System.Int32)"]
string voxFile = "in.vox"; string mp3File = "out.mp3"; int samplesPerSec = 8000; BinaryReader br = new BinaryReader(File.OpenRead(voxFile)); Mp3Writer mw = new Mp3Writer(File.Create(mp3File)); Vox.Vox2Mp3(br, mw, samplesPerSec); mw.Close(); br.Close();