tags:

views:

58

answers:

1

I am using Bass. How do i seek to the middle of the song or to any given point?

A: 
var thetime = Bass.BASS_ChannelSeconds2Bytes(_stream, doubleInSeconds);
var success = Bass.BASS_ChannelSetPosition(_stream, thetime);
acidzombie24