1
我想爲Python創建一個腳本,基本上每五秒鐘播放一次聲音。無法執行.mp3文件
我的代碼:
sh: /Users/ColShell/Desktop/beep-08b.mp3: cannot execute binary file
任何人都可以幫助解釋爲什麼請:
import time
import os
while True:
path = '/Users/ColShell/Desktop/beep-08b.mp3'
path.rstrip('/')
os.system(path)
time.sleep(5)
執行時,我得到這個錯誤?
謝謝你這是我正在尋找的人。我以爲它會通過運行該文件來打開默認應用程序,所以這肯定是我的誤解。 –