问题
Is there any way to get the number of milliseconds that have passed since the soundplayer started playing?
So far I'm using Environment
's tick counter by getting the start time and then the current time every frame, but sometimes that's inaccurate and sometimes it's really off.
At the beginning of the code I used
startTime = Environment.TickCount;
and then every frame i used
long elapsed = Environment.TickCount - startTime;
Is there an easier way to do this like HTML5 audio's player.currentTime
?
Am I missing something obvious? Can someone explain to me why my question is bad rather than just downvoting? I just want some feedback...
回答1:
No, the SoundPlayer
class has no way to read it's current position. It's a very simple "fire-and-forget" WAV player that's not meant for anything too complicated.
If you need more control over your sound playback you should be using something like the Windows Media Player control, as described in this article. In particular, there is an IWMPControls::currentPosition property you can get from the media player to tell you where in the current media the player is.
来源:https://stackoverflow.com/questions/25477174/c-sharp-get-time-from-soundplayer