Reply to thread

ok, have a look at the attached code.

it is in line 206ff, where i am getting the level of the stream.


[code]     Stream stream = GetCurrentStream();

      int level = Bass.BASS_ChannelGetLevel(stream.ID);


      int peakL = Utils.LowWord32(level); // the left level

      int peakR = Utils.HighWord32(level); // the right level


      double dbLeft = Utils.LevelToDB(peakL, 32768);

      double dbRight = Utils.LevelToDB(peakR, 32768);[/code]


[ATTACH=full]191293[/ATTACH]


Top Bottom