Play sound in Python

文章推薦指數: 80 %
投票人數:10人

The playsound module is a cross platform module that can play audio files. This doesn't have any dependencies, simply install with pip in your virtualenv and ... PythonTutorial Home Exercises Course PlaysoundinPython PlaysoundonPythoniseasy.Thereareseveralmodulesthatcanplayasoundfile(.wav).Thesesolutionsarecrossplatform(Windows,Mac,Linux). Themaindifferenceisintheeaseofuseandsupportedfileformats.AllofthemshouldworkwithPython3.Theaudiofileshouldbeinthesamedirectoryasyourpythonprogram,unlessyouspecifyapath. Let’sexploretheoptions! Relatedcourse:CompletePythonProgrammingCourse&Exercises PlaysoundinPythonplaysoundmoduleTheplaysoundmoduleisacrossplatformmodulethatcanplayaudiofiles.Thisdoesn’thaveanydependencies,simplyinstallwithpipinyourvirtualenvandrun! 12fromplaysoundimportplaysoundplaysound('audio.mp3') Implementationisdifferentonplatforms.Ituseswindll.winmonWindows,AppKit.NSSoundonAppleOSXandGStreameronLinux. I’vetestedthiswithPython3.5.3.ThisshouldworkwithbothWAVandMP3files. pydubYoucanplaysoundfileswiththepydubmodule.It’savailableinthepypirepository(installwithpip).ThismodulecanusePyAudioandffmpegunderneath. 12345frompydubimportAudioSegmentfrompydub.playbackimportplaysong=AudioSegment.from_wav("sound.wav")play(song) snacksoundkitThemodulesnacksoundkitcanplayseveralaudiofiles:WAV,AU,AIFF,MP3,CSL,SD,SMP,andNIST/Sphere. Youcaninstallitwithyourpackagemanager:‘aptinstallpython3-tksnack’.Foroldversionsthere’s‘python-tksnack’. ThismoduledependsonTkinter.Thatmeansthattoplaysoundwiththismodule,you’dalsohavetoimporttheguimoduleTkinter.Themoduledoesn’tseemtohavebeenupdatedinawhile. 123456789fromTkinterimport*importtkSnackroot=Tk()tkSnack.initializeSnack(root)snd=tkSnack.Sound()snd.read('sound.wav')snd.play(blocking=1) nativeplayerYoucanalsoplaysoundsnativelyonyoursystem.Thisrequiresyoutohavesomekindofaudioplayerinstalledontheterminal.OnLinuxyoucanusempg123forthat. Thissimplyplaysthemp3filewithanexternalplayer. 123456#aptinstallmpg123importosfile="file.mp3"os.system("mpg123"+file) Relatedcourse:CompletePythonProgrammingCourse&Exercises Back CreateaPythonWebServer Next Texttospeechinpython



請為這篇文章評分?