Bass.CreateStream method

Started by Pinar,

Pinar

Hi

I am trying to play an mp3 file using Dante Virtual SoundCard using ManagedBass library first point is my stream is returning a minus value like -27484959969696 is that normal ?
int stream = Bass.CreateStream(filePath, 0, 0, BassFlags.Default);
Debug.WriteLine($"Bass.CreateStream returned: {stream}, LastError: {Bass.LastError}");
Last error is returning OK

Ian @ un4seen

Yes, that looks normal. "stream" will be 0 when the call fails.

Pinar

Yes thank you for your reply that is ok now  :)