Hello,
I ran into a problem that I understand is a bug in the library.
I need to go to an exact location of a song (The Intro time).
It works fine with mp3 files but with flac it is positioned several seconds before the specified time.
Chan := BASS_StreamCreateURL(PWideChar(AnsiString(Archivo)), 0, BASS_STREAM_STATUS or BASS_STREAM_AUTOFREE, nil, nil);
BASS_ChannelPlay(chan, false);
BASS_ChannelSetPosition(Chan, (BASS_ChannelSeconds2Bytes(chan, 15.2)), BASS_POS_BYTE);
At this moment it is positioned at 11 seconds instead of 15.2
With a few flac tracks, the position is correct
any ideas?
Thanks