Gets the format list for specified format tag and driver.
This example shows simple using of GetFormatList method for specified driver.
private void GetDriver()
{
foreach (DriverDetails dd in AudioCompressionManager.GetDriverList())
{
if (dd.LongName.Contains("{insert text here}"))
{
int driverId = dd.Driver;
FormatDetails[] fd = AudioCompressionManager.GetFormatList(AudioCompressionManager.MpegLayer3FormatTag, driverId, true);
break;
}
};
}
AudioCompressionManager Class | Alvas.Audio Namespace | AudioCompressionManager.GetFormatList Overload List