initial sox
This commit is contained in:
@ -1,12 +1,13 @@
|
||||
#!/bin/python
|
||||
import subprocess
|
||||
|
||||
class sound():
|
||||
def __init__(self):
|
||||
pass
|
||||
def playFrequence(self, frequence, duration, adjustVolume):
|
||||
pass
|
||||
def playSoundFile(self, filePath):
|
||||
pass
|
||||
def playSoundFile(self, filePath, interrupt = True):
|
||||
subprocess.call("play " + filePath, shell=True)
|
||||
def cancel(self):
|
||||
pass
|
||||
def setCallback(self, callback):
|
||||
|
Reference in New Issue
Block a user