Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stokito/freettslog4jappender
Talking log appender to keep your eyes :)
https://github.com/stokito/freettslog4jappender
logging speech-synthesis
Last synced: 4 months ago
JSON representation
Talking log appender to keep your eyes :)
- Host: GitHub
- URL: https://github.com/stokito/freettslog4jappender
- Owner: stokito
- Created: 2013-11-02T17:43:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-18T14:29:39.000Z (about 11 years ago)
- Last Synced: 2024-04-16T18:12:22.654Z (10 months ago)
- Topics: logging, speech-synthesis
- Language: Java
- Homepage: https://github.com/stokito/FreeTTSLog4JDemo
- Size: 141 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FreeTTS Log4J Appender
Talking log appender to keep your eyes :)
# Add to your project
```xml
bintray-stokito-maven-FreeTTSLog4JAppender
stokito-maven-FreeTTSLog4JAppender
https://api.bintray.com/maven/stokito/maven/FreeTTSLog4JAppender
name.stokito
FreeTTSLog4JAppender
1.1```
Then add it as usual Log4J appender.
## How to use in Grails
### Instalation
Add dependency in `BuildConfig.groovy`:```groovy
repositories {
mavenRepo 'http://dl.bintray.com/stokito/maven'
}dependencies {
compile('name.stokito:FreeTTSLog4JAppender:1.1')
}
```
### Configuration
Then add following lines to `Config.groovy`:```groovy
// log4j configuration
log4j = {
appenders {
appender(new FreeTTSAppender(name: 'freetts',
voiceName: 'kevin16',
nThreads: 10))
}root {
error 'freetts'
}
}
```## Demo application
You can quickly try [example application](https://github.com/stokito/FreeTTSLog4JDemo)