Hey,
I created an app with bass.net
The app works fine.
It plays mp3s no problem. It plays wma files no problem.
But when I try to play ape files using bass. it fails.
please help me identify the issue.
all files are where they should be, bass.net, bass.dll, bass_ape.dll
var flags = BASSFlag.BASS_STREAM_DECODE | BASSFlag.BASS_MUSIC_FLOAT | BASSFlag.BASS_STREAM_PRESCAN;
stream = Bass.BASS_StreamCreateFile(myFile, 0L, 0L, flags);//assign file to stream
if (stream == 0 && myFile.ToLower().EndsWith("ape"))
{
BassApe.LoadMe(myFile);
stream = BassApe.BASS_APE_StreamCreateFile(myFile, 0L, 0L, flags);
}