blob: 7d3d7540ada0eb8420583830695c116664bef2f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
TEMP=$(mktemp)
while sleep 1; do
tput sc
tput cup 0 0
cat "${TEMP}" | tail -n1
tput rc
done &
while true; do
VOICE=$(
dialog --title "Voice list" --stdout --no-ok --no-cancel --no-tags --menu "Select which voice modification you want to use." 0 0 0 \
"-d -d pitch 700 contrast 100 echo 0 1 20 0.4" "child" \
"-d -d pitch -200 contrast 100 echo 0 1 20 0.4" "young adult" \
"-d -d pitch -500 contrast 100 echo 0 1 20 0.4" "old man"
)
kill $APP_PID
sox $VOICE 1>/dev/null 2>"${TEMP}" &
export APP_PID=$!
done
|