Created
July 31, 2021 12:45
-
-
Save r9y9/f16e9b858e6ef8ce89af4868fc3174f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# 1. ita ディレクトリ (例. $HOME/data/ita) を作成し、このスクリプトと | |
# https://zunko.jp/multimodal_dev/login.php からダウンロードできる | |
# 音声データ(3話者分)を配置する | |
# 2. このスクリプトを実行する | |
for spk in itako methane zundamon; do | |
mkdir -p $spk | |
unzip ${spk}_voice_data.zip -d $spk/ | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment