BASS音频库支持的音乐文件

时间:2012-01-30 02:23:42

标签: bass bass.dll

有没有办法知道Bass音频库是否支持文件扩展名(例如WAV / AIFF / MP3 / MP2 / MP1 / OGG)?我想写一个像:

这样的函数
Public void  Play(string File)
{
   if(IsSupportedFile(file)
     {

       // Add the appropriate code to play the file
     }

}
Public bool isSupported(string File)
{
  // Should return true if the file extension is supported by bass audio and add ons
}

1 个答案:

答案 0 :(得分:3)

尝试一下:

Public bool isSupported(string File)
{
  return Un4seen.Bass.Utils.BASSAddOnIsFileSupported(Nothing, file);
}