本文介绍了如何使用WMPLib.WindowsMediaPlayer播放mp3文件一段固定的时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个使用WMPLib.WindowsMediaPlayer的项目,并允许用户选择.mp3或.wav文件进行播放。
我如何去设定比赛的持续时间?我想让文件播放5秒钟,就是这样。我该怎么办?
提前致谢,
-DA
I'm working on a project that uses WMPLib.WindowsMediaPlayer and allows the user to select an .mp3 or .wav file for play.
How do I go about setting the duration of play? I'd like to for the file to play for 5 seconds and that's it. How do I go about this?
Thanks in advance,
-DA
WMPLib.WindowsMediaPlayer wmp = new WMPLib.WindowsMediaPlayer();
wmp.URL = @"C:\Music\mySong.mp3";
wmp.controls.play();
推荐答案
wmp.controls.Stop(); myTimer.Stop();
。
您可以在这里咨询计时器: []
您也可以在这里查看WindowsMediaPlayer控件: []
这篇关于如何使用WMPLib.WindowsMediaPlayer播放mp3文件一段固定的时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!