Skip to content

Commit

Permalink
> 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
SeogyeongPark committed May 29, 2019
1 parent 52032f2 commit d786117
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions 20190529/Asterisk Google TTS 설정 방법.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ $ mv googletts-cli.pl /usr/local/sbin/googletts-cli.pl
```
$ vi /var/lib/asterisk/agi-bin/propolys-tts.agi
>Find
>case 'swift':
> exec($enginebin." -p audio/channels=1,audio/sampling-rate=8000 -o $wavefile -f $textfile");
> break;
>and below add
>case 'googleTTS':
> exec($enginebin." -l de -f $textfile -r 8000 -o $wavefile");
> break;
Find
case 'swift':
exec($enginebin." -p audio/channels=1,audio/sampling-rate=8000 -o $wavefile -f $textfile");
break;
and below add
case 'googleTTS':
exec($enginebin." -l de -f $textfile -r 8000 -o $wavefile");
break;
or
>case 'googleTTS':
> exec($enginebin." -r ".$format['rate']." -f $textfile -o $tmpwavefile");
> break;
case 'googleTTS':
exec($enginebin." -r ".$format['rate']." -f $textfile -o $tmpwavefile");
break;
```

## 편집결과
Expand Down

0 comments on commit d786117

Please sign in to comment.