Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit 573e381

Browse files
committed
Merge branch 'master' into eap-device-actions
- fix sample rate - relax dependencies Bug: 66996091 Change-Id: Icf03e87734980863a8d1eb6a1685dec0d1180b29
2 parents e87b4a6 + c923502 commit 573e381

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

google-assistant-sdk/googlesamples/assistant/grpc/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ Troubleshooting
104104
speaker-test -t wav
105105

106106
# Record and play back some audio using ALSA command-line tools
107-
arecord --format=S16_LE --duration=5 --rate=16k --file-type=raw out.raw
108-
aplay --format=S16_LE --rate=16k --file-type=raw out.raw
107+
arecord --format=S16_LE --duration=5 --rate=16000 --file-type=raw out.raw
108+
aplay --format=S16_LE --rate=16000 --file-type=raw out.raw
109109

110110
- If Assistant audio is choppy, try adjusting the sound device's block size::
111111

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
google-assistant-grpc==0.0.2
2-
google-auth-oauthlib==0.1.0
3-
urllib3[secure]==1.22
4-
sounddevice==0.3.7
5-
click==6.7
6-
tenacity==4.1.0
7-
futures==3.1.1
2+
google-auth-oauthlib>=0.1.0,<0.2
3+
urllib3[secure]>=1.21,<2
4+
sounddevice>=0.3.7,<0.4
5+
click>=6.7,<7
6+
tenacity>=4.1.0,<5
7+
futures>=3.1.1,<4
8+

google-assistant-sdk/googlesamples/assistant/library/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Troubleshooting
6767
speaker-test -t wav
6868

6969
# Record and play back some audio using ALSA command-line tools
70-
arecord --format=S16_LE --duration=5 --rate=16k --file-type=raw out.raw
71-
aplay --format=S16_LE --rate=16k --file-type=raw out.raw
70+
arecord --format=S16_LE --duration=5 --rate=16000 --file-type=raw out.raw
71+
aplay --format=S16_LE --rate=16000 --file-type=raw out.raw
7272

7373
See also the `troubleshooting section <https://developers.google.com/assistant/sdk/prototype/getting-started-pi-python/troubleshooting>`_ of the official documentation.
7474

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
google-assistant-library==0.0.3
2-
argparse==1.4.0
3-
google-auth==1.0.1
2+
argparse>=1.4.0,<2
3+
google-auth>=1.0.1,<2

0 commit comments

Comments
 (0)