diff options
author | Scott Murray <scott.murray@konsulko.com> | 2019-07-24 17:47:03 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-07-24 17:47:03 -0400 |
commit | a15ca404ac293aab52d35f9fdbf992ac6ed55500 (patch) | |
tree | 8cb668614fc76d528960347dd860a368ed4ec791 | |
parent | 6410e9a18eb8af04a3e8e42c17adcf566a338a6d (diff) |
Switch to pipewire output
Update the talk scripts to use pipewire output via gst-launch-1.0
instead of 4A's 4a-play. gstreamer is used to allow using the
pipewire output sink and set its media role property. Updated
version of previous patch for ALSA support that was applied in
the meta-agl-demo recipe.
Bug-AGL: SPEC-2667
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I7a38f6e2c464ce13de541e8ad5aa3c109f718845
-rwxr-xr-x | package/flite | 3 | ||||
-rwxr-xr-x | package/jtalk | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/package/flite b/package/flite index 4c17b80..c6787ed 100755 --- a/package/flite +++ b/package/flite @@ -1,5 +1,4 @@ #!/bin/sh TMP=/tmp/navi.wav echo "$1" | flite_hts_engine -m /usr/share/Voice/us/cmu_us_arctic_slt.htsvoice -o $TMP -4a-play $TMP hw:0,0,3 navigation - +gst-launch-1.0 filesrc location=$TMP ! decodebin ! audioconvert ! audioresample ! pwaudiosink stream-properties="p,media.role=Navigation" diff --git a/package/jtalk b/package/jtalk index ed82281..7b273fb 100755 --- a/package/jtalk +++ b/package/jtalk @@ -1,6 +1,4 @@ #!/bin/sh TMP=/tmp/navi.wav echo "$1" | open_jtalk -ow $TMP -m /usr/share/Voice/mei/mei_normal.htsvoice -x /usr/share/dic/ -4a-play $TMP hw:0,0,3 navigation - - +gst-launch-1.0 filesrc location=$TMP ! decodebin ! audioconvert ! audioresample ! pwaudiosink stream-properties="p,media.role=Navigation" |