LoginSignup
5
5

More than 3 years have passed since last update.

Raspberry Pi でJuliusを実行【備忘録】

Posted at

インストール

基本的に以下のコマンドでインストールできます。

wget https://github.com/julius-speech/julius/archive/v4.5.tar.gz
tar xvzf v4.5.tar.gz
cd julius-4.5
./configure --with-mictype=alsa
make
make install

トラブルシューティング

sudo modprobe snd-pcm-oss
modprobe: FATAL: Module snd-pcm-oss not found in directory /lib/modules/4.14.34-v7+

これが出てきたら、

sudo apt-get install osspd-alsa
sudo aptitude install libasound2-dev
./configure --with-mictype=alsa
make
make install

です。これは参考にも書いてあります。あと、juliusを実行する際は「sudo」はつけてはだめっぽい。

参考

― raspi最新カーネルでjuliusを動かすhttps://qiita.com/mooriii/items/e6bd0c8c07ef4c94fa0d

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5