mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
26 lines
448 B
Python
26 lines
448 B
Python
![]() |
import os
|
||
|
|
||
|
def play_chord(*nums):
|
||
|
commands = [
|
||
|
"play",
|
||
|
"-n",
|
||
|
"-c1",
|
||
|
"--no-show-progress",
|
||
|
"synth",
|
||
|
] + [
|
||
|
"sin %-"+str(num)
|
||
|
for num in nums
|
||
|
] + [
|
||
|
"fade h 0.5 1 0.5",
|
||
|
"> /dev/null"
|
||
|
]
|
||
|
try:
|
||
|
os.system(" ".join(commands))
|
||
|
except:
|
||
|
pass
|
||
|
|
||
|
def play_error_sound():
|
||
|
play_chord(11, 8, 6, 1)
|
||
|
|
||
|
def play_finish_sound():
|
||
|
play_chord(12, 9, 5, 2)
|