You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sems/apps/examples/ivr_examples/rec.py

14 lines
269 B

#
# just recording to file
#
from log import *
from ivr import *
class IvrDialog(IvrDialogBase) :
def onSessionStart(self) :
self.audio_msg = IvrAudioFile()
self.audio_msg.open("record.wav", AUDIO_WRITE)
self.enqueue(None,self.audio_msg)