MediaFileIsWavProperFormat Method |
Determines if the Wav file is the proper format to be written to CD
The proper format is uncompressed PCM, 44.1KHz, Stereo
Namespace:
IMAPI2.axlib
Assembly:
CSDVDCDBurner (in CSDVDCDBurner.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax public static bool IsWavProperFormat(
string wavFile
)
Public Shared Function IsWavProperFormat (
wavFile As String
) As Boolean
Dim wavFile As String
Dim returnValue As Boolean
returnValue = MediaFile.IsWavProperFormat(wavFile)
static member IsWavProperFormat :
wavFile : string -> bool
public static boolean IsWavProperFormat(
String wavFile
)
public static function IsWavProperFormat(
wavFile : String
) : boolean
IMAPI2.axlib.MediaFile.IsWavProperFormat = function(wavFile);
Parameters
- wavFile
- Type: SystemString
the selected wav file
Return Value
Type:
Booleantrue if proper format, otherwise false
See Also