오디오 파일을 텍스트로 변환 - Python
1745 단어 pythonprogrammingaitutorial
시작하자.
요구 사항
pip install speech_recognition
설치 후 패키지 가져오기
import speech_recognition
변환할 오디오 파일 가져오기
audio_file = "sample.wav"
음성 인식기 초기화
sp = speech_recognition.Recognizer()
오디오 파일 열기
with speech_recognition.AudioFile(audio_file) as source:
다음은 오디오 파일을 메모리에 로드하여 듣는 것입니다.
audio_data = sp.record(source)
메모리의 오디오를 텍스트로 변환
converted_text = sp.recognize_google(audio_data)
변환된 텍스트 출력
print(converted_text)
완료.
This script works for short audio files and the file format should be .wav
완전한 코드
#import package
import speech_recognition
#import audio file
audio_file = "sample.wav"
# initialize the recognizer
sp = speech_recognition.Recognizer()
# open the file
with speech_recognition.AudioFile(audio_file) as source:
# load audio to memory
audio_data = sp.record(source)
# convert speech to text
text = sp.recognize_google(audio_data)
print(text)
Reference
이 문제에 관하여(오디오 파일을 텍스트로 변환 - Python), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/manu_tech/convert-audio-file-to-text-python-1h0b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)