Hello friends! How to implement the remaining time in the format "-00:00:00"?
Thanks in advance.
P.S I'm using Delphi.
something like this:
pos = Bass.BASS_ChannelGetLength(channel) - Bass.BASS_ChannelGetPosition(channel, BASSMode.BASS_POS_BYTES)
seconds = Bass.BASS_ChannelBytes2Seconds(channel, pos)
How you format seconds to 00:00:00, I can't say since I don't code in Delphi.