https://github.com/ailispaw/google-assistant-sdk
Google Assistant SDK with Vagrant and VirtualBox
https://github.com/ailispaw/google-assistant-sdk
Last synced: 5 months ago
JSON representation
Google Assistant SDK with Vagrant and VirtualBox
- Host: GitHub
- URL: https://github.com/ailispaw/google-assistant-sdk
- Owner: ailispaw
- Created: 2018-03-29T21:46:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-26T23:55:44.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T19:51:49.894Z (over 1 year ago)
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Assistant SDK with Vagrant and VirtualBox
https://developers.google.com/assistant/sdk/overview
## Configure the Audio
You may need to change the Audio Host Driver using `--audio` in Vagrantfile as below.
You can see the available selections in the Settings of VirtualBox Manager while the VM is stopping.
```ruby
config.vm.provider :virtualbox do |vb|
vb.customize "pre-boot", [
"modifyvm", :id,
"--audio", "coreaudio",
"--audiocontroller", "ac97",
]
end
```
Cf.) https://www.virtualbox.org/manual/ch08.html#vboxmanage-modifyvm-other
> --audio none|null|dsound|oss|alsa|pulse|coreaudio: With this setting, you can specify whether the VM should have audio support, and – if so – which type. The list of supported audio types depends on the host and can be determined with VBoxManage modifyvm.
> --audiocontroller ac97|hda|sb16: With this setting, you can specify the audio controller to be used with this VM.
## Boot up and Install the SDK and Sample Code
```
$ vagrant up
```
Cf.) https://developers.google.com/assistant/sdk/guides/library/python/embed/install-sample
## Test the Audio
```
$ vagrant ssh
vagrant@assistant:~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: I82801AAICH [Intel 82801AA-ICH], device 0: Intel ICH [Intel 82801AA-ICH]
Subdevices: 1/1
Subdevice #0: subdevice #0
vagrant@assistant:~$ arecord -l
**** List of CAPTURE Hardware Devices ****
card 0: I82801AAICH [Intel 82801AA-ICH], device 0: Intel ICH [Intel 82801AA-ICH]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: I82801AAICH [Intel 82801AA-ICH], device 1: Intel ICH - MIC ADC [Intel 82801AA-ICH - MIC ADC]
Subdevices: 1/1
Subdevice #0: subdevice #0
vagrant@assistant:~$ amixer set Master 100%
Simple mixer control 'Master',0
Capabilities: pvolume pswitch pswitch-joined
Playback channels: Front Left - Front Right
Limits: Playback 0 - 31
Mono:
Front Left: Playback 31 [100%] [0.00dB] [on]
Front Right: Playback 31 [100%] [0.00dB] [on]
vagrant@assistant:~$ aplay /usr/share/sounds/alsa/Front_Center.wav
Playing WAVE '/usr/share/sounds/alsa/Front_Center.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
```
## Configure a Developer Project and Account Settings
- Follow https://developers.google.com/assistant/sdk/guides/library/python/embed/config-dev-project-and-account
## Register a Device Model
- Follow https://developers.google.com/assistant/sdk/guides/library/python/embed/register-device
- Download a credentials file (OAuth2 client secret) and place it in this directory where the Vagrantfile is.
## Generate Credentials for the Google Assistant API
```
$ vagrant ssh
vagrant@assistant:~$ source env/bin/activate
(env) vagrant@assistant:~$ google-oauthlib-tool --scope https://www.googleapis.com/auth/assistant-sdk-prototype --save --headless --client-secrets /vagrant/credentials.json
```
Cf.) https://developers.google.com/assistant/sdk/guides/library/python/embed/install-sample#generate_credentials
## Run a Sample Code
```
(env) vagrant@assistant:~$ googlesamples-assistant-hotword --project_id aiy-voice-kit-196422 --device_model_id google-assistant-sdk-001
(env) vagrant@assistant:~$ googlesamples-assistant-pushtotalk --project-id aiy-voice-kit-196422 --device-model-id google-assistant-sdk-001 --lang ja_jp
```
Cf.)
- https://developers.google.com/assistant/sdk/guides/library/python/embed/run-sample
- https://developers.google.com/assistant/sdk/guides/service/python/embed/run-sample