Page 1116 - 3-2
P. 1116
end = 1
elif re.search(u' 다음', transcribe_streaming_module.word, re.I):
#output.put('next')
screen.blit(face2, (0,0))
next_music()
end = 1
elif re.search(u' 이전', transcribe_streaming_module.word, re.I):
#output.put('previous')
screen.blit(face2, (0,0))
previous_music()
end = 1
elif re.search(u' 일시정지', transcribe_streaming_module.word, re.I):
#output.put('pause')
screen.blit(face2, (0,0))
pause()
end = 1
elif re.search(u' 정지', transcribe_streaming_module.word, re.I):
#output.put('stop')
screen.blit(face1, (0,0))
stop()
end = 1
elif re.search(u' 재생', transcribe_streaming_module.word, re.I):
#output.put('play')
screen.blit(face2, (0,0))
play()
end = 1
elif re.search(u' 음소거', transcribe_streaming_module.word, re.I):
if re.search(u' 해제', transcribe_streaming_module.word, re.I):
#output.put('unmute')
screen.blit(face2, (0,0))
unmute()
end = 1
elif re.search(u' 해', transcribe_streaming_module.word, re.I):
#output.put('mute')
screen.blit(face2, (0,0))
mute()
end = 1
- 1116 -