1
Есть ли способ узнать, поддерживается ли расширение файла библиотекой Bass (например, WAV/AIFF/MP3/MP2/MP1/OGG)? Я хотел бы написать функцию, как:Поддерживаемые музыкальные файлы аудиосистемой BASS
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
}