有没有办法知道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
}
答案 0 :(得分:3)
尝试一下:
Public bool isSupported(string File)
{
return Un4seen.Bass.Utils.BASSAddOnIsFileSupported(Nothing, file);
}