6 lines
82 B
Bash
6 lines
82 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
SAMPA=$(python text2SAMPA.py $1)
|
||
|
echo $SAMPA
|
||
|
espeak -v en "[[$SAMPA]]"
|