Mercurial > code > home > repos > homeauto
annotate service/playSound/serv.n3 @ 1469:94f14a0823c6
try using tcp to talk to host pulse
Ignore-this: 330703f97be6f3e3490d0d1fb1c8f90f
darcs-hash:40ee150e0987ebfb6c2d09fe6358e28b6273a04c
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sat, 21 Dec 2019 16:01:25 -0800 |
parents | 667794accec2 |
children | b27a4652cd84 |
rev | line source |
---|---|
1466 | 1 @prefix : <http://bigasterisk.com/ns/serv#> . |
2 @prefix auth: <http://bigasterisk.com/ns/serv/auth#> . | |
3 @prefix serv: <http://bigasterisk.com/services/> . | |
4 | |
5 serv:speechmusic_dash a :Service; | |
6 :path "/speech_music/dash/"; | |
7 :openid auth:admin; | |
8 :serverHost "bang"; | |
9 :internalPort 9049; | |
10 :prodDockerFlags ( | |
1467
667794accec2
drop speech synth, try to get pulse client working
drewp <drewp@bigasterisk.com>
parents:
1466
diff
changeset
|
11 "-p" "9049:9049" "--privileged" |
1466 | 12 "--net=host"); |
13 :localDockerFlags ( | |
14 "--cap-add" "SYS_PTRACE" | |
15 #"--mount type=bind,source=/etc/pulse,target=/etc/pulse" | |
16 "--mount" "type=tmpfs,destination=/tmp,tmpfs-size=52428800" | |
1469
94f14a0823c6
try using tcp to talk to host pulse
drewp <drewp@bigasterisk.com>
parents:
1467
diff
changeset
|
17 "--mount" "type=bind,source=/home/drewp/.config/pulse/cookie,target=/home/pulseuser/.config/pulse/cookie" |
1466 | 18 ); |
19 :localRunCmdline ( | |
1469
94f14a0823c6
try using tcp to talk to host pulse
drewp <drewp@bigasterisk.com>
parents:
1467
diff
changeset
|
20 # "./run.sh" |
1467
667794accec2
drop speech synth, try to get pulse client working
drewp <drewp@bigasterisk.com>
parents:
1466
diff
changeset
|
21 # "strace" "-ftts" "999" |
1469
94f14a0823c6
try using tcp to talk to host pulse
drewp <drewp@bigasterisk.com>
parents:
1467
diff
changeset
|
22 "python3" "playSound.py" "-v" |
94f14a0823c6
try using tcp to talk to host pulse
drewp <drewp@bigasterisk.com>
parents:
1467
diff
changeset
|
23 ); |
1466 | 24 :dockerFile "Dockerfile" |
25 . | |
26 |