python使用win32com库播放mp3文件的方法
本文实例讲述了python使用win32com库播放mp3文件的方法。分享给大家供大家参考。具体实现方法如下:
#PythonsupportsCOM,ifyouhavetheWin32extensions
#checkyourPythonfoldereg.D:\Python23\Lib\site-packages\win32com
#alsohttp://starship.python.net/crew/mhammond/win32/Downloads.html
#thisprogramwillplayMP3,WMA,MID,WAVfilesviatheWindowsMediaPlayer
fromwin32com.clientimportDispatch
mp=Dispatch("WMPlayer.OCX")
#useanmp3fileyouhave...
#tune=mp.newMedia("C:/ProgramFiles/CommonFiles/HP/MemoriesDisc/2.0/audio/Swing.mp3")
#orcopyonetotheworkingfolder...
#tune=mp.newMedia("Bier1.mp3")
#youcanalsoplaywmafiles,thiscoolsoundcamewithXP...
tune=mp.newMedia("C:/WINDOWS/system32/oobe/images/title.wma")
mp.currentPlaylist.appendItem(tune)
mp.controls.play()
#tostopplayinguse
raw_input("PressEntertostopplaying")
mp.controls.stop()
希望本文所述对大家的Python程序设计有所帮助。