How accurately (in terms of time) does Windows play audio?
Posted
by MusiGenesis
on Stack Overflow
See other posts from Stack Overflow
or by MusiGenesis
Published on 2010-03-15T00:06:51Z
Indexed on
2010/03/15
0:09 UTC
Read the original article
Hit count: 277
Let's say I play a stereo WAV file with 317,520,000 samples, which is theoretically 1 hour long. Assuming no interruptions of the playback, will the file finish playing in exactly one hour, or is there some occasional tiny variation in the playback speed such that it would be slightly more or slightly less (by some number of milliseconds) than one hour?
I am trying to synchronize animation with audio, and I am using a System.Diagnostics.Stopwatch
to keep the frames matching the audio. But if the playback speed of WAV audio in Windows can vary slightly over time, then the audio will drift out of sync with the Stopwatch-driven animation.
Which leads to a second question: it appears that a Stopwatch
- while highly granular and accurate for short durations - runs slightly fast. On my laptop, a Stopwatch
run for exactly 24 hours (as measured by the computer's system time and a real stopwatch) shows an elapsed time of 24 hours plus about 5 seconds (not milliseconds).
Is this a known problem with Stopwatch
? (A related question would be "am I crazy?", but you can try it for yourself.) Given its usage as a diagnostics tool, I can see where a discrepancy like this would only show up when measuring long durations, for which most people would use something other than a Stopwatch
.
If I'm really lucky, then both Stopwatch
and audio playback are driven by the same underlying mechanism, and thus will stay in sync with each other for days on end. Any chance this is true?
© Stack Overflow or respective owner