Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 :)

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)