반응형
녹음된 음성파일을 읽어서 txt 형태로 변환 하는 스크립트
import speech_recognition as sr
recognizer = sr.Recognizer()
audio_file = '/Users/project/test/audio.wav'
with sr.AudioFile(audio_file) as source:
audio_data = recognizer.record(source)
try:
text = recognizer.recognize_google(audio_data)
print("Transcription:")
print(text)
except sr.UnknownValueError:
print("Google Web Speech API could not understand the audio")
except sr.RequestError as e:
print(f"Could not request results from Google Web Speech API; {e}")
with open("output.txt", "w") as text_file:
text_file.write(text)
반응형
'QA Engineering > Tool & Automation' 카테고리의 다른 글
AWS cron 스케쥴링 설정 (0) | 2023.09.14 |
---|---|
QARK(Quick Android Review Kit) (0) | 2023.09.08 |
pynput을 이용한 매크로 만들기 step1 (0) | 2023.09.01 |
파이썬, 패턴 구분하여 csv 저장하는 스크립트 (0) | 2023.08.31 |
파이썬을 이용한 좌표 출력기 v.0.1 (0) | 2023.08.31 |