반응형
이번 글은 음성인식 - 구글 스피치(Google Speech, STT) 샘플 코드를 이용한 STT 예제입니다.
import speech_recognition as sr
#pip install speechrecognition 설치
r = sr.Recognizer()
harvard = sr.AudioFile('harvard.wav') #실행되고 있는 경로에 harvard.wav 넣기
with harvard as source:
audio = r.record(source)
try:
print("You said " + r.recognize_google(audio))
except sr.UnknownValueError:
print("Could not understand audio")
except sr.RequestError as e:
print("Could not request results; {0}".format(e))
반응형
'Language > Python' 카테고리의 다른 글
파이썬(Python) 코드 실행시간 측정하는 코드 (0) | 2019.12.03 |
---|---|
파이썬(Python) 가장 큰 소인수 구하기 (0) | 2019.12.03 |
파이썬(Python) 피보나치 수열에서 4백만 이하이면서 짝수인 항의 합 (0) | 2019.12.02 |
파이썬(Python) 1000보다 작은 자연수 중에서 3 또는 5의 배수를 모두 더하면? (0) | 2019.12.02 |
파이썬(Python) 로또 번호 프로그램 (0) | 2019.12.02 |
파이썬(Python) 별찍기 (0) | 2019.10.22 |
파이썬(Python) 기본 문법 정리 (0) | 2019.10.22 |
파이썬(Python) - print 명령문을 이용하여 문자열 출력하기 (0) | 2019.10.20 |
최근댓글