Skip to content

Instantly share code, notes, and snippets.

@hyuki
Created March 17, 2022 10:46
Show Gist options
  • Select an option

  • Save hyuki/33321326f8e679a75ed700b76b1a9fd7 to your computer and use it in GitHub Desktop.

Select an option

Save hyuki/33321326f8e679a75ed700b76b1a9fd7 to your computer and use it in GitHub Desktop.
Amazon Polly のニューラル音声Takumiを使ってinput.txtをoutput.mp3に変換するawsコマンド例
aws polly synthesize-speech \
  --output-format mp3 \
  --text file://input.txt \
  --voice-id Takumi \
  --engine neural \
  output.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment