1

有什么方法可以知道 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
}
4

1 回答 1

3

试试这个:

Public bool isSupported(string File)
{
  return Un4seen.Bass.Utils.BASSAddOnIsFileSupported(Nothing, file);
}
于 2012-12-08T17:23:46.403 回答