How to trigger from Python playing of a WAV or MP3 audio file on a Mac?

后端 未结 3 1810

I\'m looking for an elegant way, without a ton of dependencies as in some of the solutions I googled up.

Thanks for any ideas.

3条回答
  •  太阳男子
    2020-12-06 12:32

    If you want to do away with external dependencies entirely, and are running OS X 10.5+, you can use the included command-line audio player, afplay, along with the subprocess module.

    I haven't tested it, but this should work:

    import subprocess
    audio_file = "/full/path/to/audio.wav"
    
    return_code = subprocess.call(["afplay", audio_file])
    

提交回复
热议问题