내 코드를 실행하는 데 시간이 오래 걸리고 항상 쳐다보고 싶지 않지만 언제 완료되는지 알고 싶습니다.
(파이썬) 코드를 소리가 "알람"으로 만들려면 어떻게해야합니까? 코드 끝에 도달했을 때 .wav 파일을 재생하려고 생각하고있었습니다 ...
이것이 가능한 아이디어 일까? 그렇다면 어떻게 할 수 있습니까?
내 코드를 실행하는 데 시간이 오래 걸리고 항상 쳐다보고 싶지 않지만 언제 완료되는지 알고 싶습니다.
(파이썬) 코드를 소리가 "알람"으로 만들려면 어떻게해야합니까? 코드 끝에 도달했을 때 .wav 파일을 재생하려고 생각하고있었습니다 ...
이것이 가능한 아이디어 일까? 그렇다면 어떻게 할 수 있습니까?
답변:
import winsound
duration = 1000 # milliseconds
freq = 440 # Hz
winsound.Beep(freq, duration)
여기서 freq는 주파수 (Hz)이고 지속 시간은 밀리 초입니다.
import os
duration = 1 # seconds
freq = 440 # Hz
os.system('play -nq -t alsa synth {} sine {}'.format(duration, freq))
이 예제를 사용하려면 설치해야합니다 sox
.
데비안 / 우분투 / 리눅스 민트의 터미널에서 이것을 실행하십시오 :
sudo apt install sox
Mac의 경우 터미널에서이를 실행하십시오 (macports 사용).
sudo port install sox
import os
os.system('say "your program has finished"')
import os
os.system('spd-say "your program has finished"')
speech-dispatcher
우분투 (또는 다른 배포판의 해당 패키지)에 패키지 를 설치해야합니다 :
sudo apt install speech-dispatcher
이것은 Windows 및 Linux * ( 이 질문에서 ) 모두에서 작동하는 것 같습니다 .
def beep():
print("\a")
beep()
Windows에서는 마지막에 넣을 수 있습니다.
import winsound
winsound.Beep(500, 1000)
where 500 is the frequency in Herz
1000 is the duration in miliseconds
Linux에서 작업하려면 QO의 의견에 따라 다음을 수행해야 할 수 있습니다.
우분투 음성 디스패처를 사용할 수 있습니다 :
import subprocess
subprocess.call(['speech-dispatcher']) #start speech dispatcher
subprocess.call(['spd-say', '"your process has finished"'])
-w
spd-say가 문구를 끝내는 동안 기다릴 인수를 추가 할 수 있습니다
참고 : Python Sound ( "Bell")
이것은 내가 똑같이하고 싶을 때 도움이되었습니다.
모든 크레딧은 gbc 로 이동
당신이 시도 했습니까 :
import sys
sys.stdout.write('\a')
sys.stdout.flush()
그것은 Mac OS 10.5에서 나를 위해 작동합니다.
실제로, 당신의 원래 시도는 약간의 수정으로도 효과가 있다고 생각합니다.
print('\a')
(문자 순서 주위에 작은 따옴표가 필요합니다).
왜 파이썬을 사용합니까? 제거하고 리포지토리에 체크인하는 것을 잊어 버릴 수 있습니다. && 및 다른 명령으로 파이썬 명령을 실행하여 경고를 수행하십시오.
python myscript.py &&
notify-send 'Alert' 'Your task is complete' &&
paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga
또는 .bashrc에 함수를 드롭하십시오. 여기서는 파이썬을 사용하지만 '파이썬'을 무시할 수 있습니다
function apython() {
/usr/bin/python $*
notify-send 'Alert' "python $* is complete"
paplay /usr/share/sounds/freedesktop/stereo/suspend-error.oga
}
os.system("paplay sound-alarm.oga")
다음과 같이 코드로 수행 할 수 있습니다.
import time
time.sleep(10) #Set the time
for x in range(60):
time.sleep(1)
print('\a')
import subprocess
subprocess.call(['D:\greensoft\TTPlayer\TTPlayer.exe', "E:\stridevampaclip.mp3"])