Converting Milliseconds to Timecode
- by Jeff
I have an audio project I'm working on using BASS from Un4seen. This library uses BYTES mainly but I have a conversion in place that let's me show the current position of the song in Milliseconds.
Knowing that MS = Samples * 1000 / SampleRate
and that Samples = Bytes * 8 / Bits / Channels
So here's my main issue and it's fairly simple... I have a…