[Google] 구글의 Text-To-Speech (TTS) 서비스
구글에서도 TTS 서비스를 제공한다. 아래와 같이 Python package를 이용하여 무료로 소리를 생성할 수 있다 (Google colab에서 실행 테스트). # ! pip install gtts from gtts import gTTS from IPython.display import Audio tts = gTTS(text='Hello world!', lang='en') tts.save('test.mp3') sound_file = 'test.mp3' Audio(sound_file, autoplay=True) 그런데 위 방식 말고 다른 방식으로 조금 더 세밀하게 옵션을 조절하여 사용할 수 있었다. 사용을 하려면 구글 클라우드 플랫폼에 가입을 진행해야 한다. https://console.cloud.goo..