I start play with:
playerHandle = BASS.BASS_StreamCreateURL(STREAM_URL, 0, BASS.BASS_STREAM_AUTOFREE | BASS.BASS_STREAM_BLOCK, null, null);
and play music:
BASS.BASS_ChannelPlay(playerHandle, false);
After some time call pause:
BASS.BASS_ChannelPause(playerHandle);
Now after some time a resume play:
BASS.BASS_ChannelPlay(playerHandle, true);
and is ok, start play on last position
Question is, ho to start play live, go to end of buffer position?
I try:
BASS.BASS_ChannelSetPosition(playerHandle, 0, BASS.BASS_POS_END);
BASS.BASS_ChannelPlay(playerHandle, true);
But not working. How to make this?