psibre

Results 116 comments of psibre

These warnings are generated by [DDSAudioInputStream#read](../blob/d7b57e81d0e8e9abbd4f8be4ca66766ff700687c/marytts-signalproc/src/main/java/marytts/util/data/audio/DDSAudioInputStream.java#L109-L111), which was added many years before MaryTTS started using a logging framework, and never updated... More to the point, the warnings indicate signal clipping,...

I just visualized this on OSX El Capitan with Praat 6.0.32. I took @ravehe's script and changed the frequencies to 100, 1000, and 10000 for saliency. Here's what the channels...

FWIW, I'm fine with just calling `praat` to run scripts from whatever toolchain (typically a Gradle build). The only headache is figuring out whether an installed version is pre or...

Thanks for the report! I'm aware of these vulnerabilities (and others) via [Trivy](https://trivy.dev/), [Lift](https://lift.sonatype.com/), [Dependabot](https://github.com/dependabot), etc. I'd like to avoid fiddling with another patch release to v5.2.1, since building MaryTTS...

We're seeing errors like ``` Gradle suite > Gradle test > marytts.voice.CmuTimeAwb.LoadCmuTimeAwbIT > canGetProperty[0](name, cmu-time-awb) FAILED Assertion failed: assert expected == actual | | | | | 'en' | false...

Processing errors under Java 17 isolated and resolved via marytts/marytts-voicebuilding#10

We can probably solve this by using an Ant [Concat task](https://ant.apache.org/manual/Tasks/concat.html) with filtering...

A quick and dirty WiP PoC: `build.gradle` ```gradle plugins { id 'base' } apply plugin: BarPlugin foobar = 'baz' class FooPlugin implements Plugin { @Override void apply(Project project) { project.ext.foobar...

So let's go with Gradle-based property expansion, or a GroovyTemplateEngine and avoid getting to grips with the Ant/Gradle property mapping.

Update, here's an MWE with Gradle-based template filtering and low-level Groovy-Reader/Writer-based concatenation. Needs two hops (filter templates into a temp dir, then concat from there into the destination file), but...