C# - Get time from soundplayer

元气小坏坏 提交于 2019-12-20 07:41:11

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!