#pythonで定刻にBeep音を鳴らす(Ubuntu16.04)
pythonプログラムを起動してから何秒後かに
Beep音が欲しかったけど、なかなか鳴らせなかったのでメモします。
#環境
ubuntu 16.04
python 3.6
#プログラム
import os
import time
duration = 1 # seconds
freq = 440 # Hz
bool1 = True
elapsed_time = 0
while bool1:
start = time.time()
elapsed_time += time.time() - start
if elapsed_time >= 2.5:#各自調整
os.system('play -nq -t alsa synth {} sine {}'.format(duration, freq))
bool1 = False
メモ程度です。。。もっと最適な方法があったら教えてください。