Kari Pihkala
Kari Pihkala
bodymovin-to-avd seems to be creating bad SVG path data. pathData.js has code to add a ‘c’ command without coordinates to the end: if(data.c) { pt = matrix.transformPoint(data.o[i][0] + data.v[i][0], data.o[i][1]...
The Cargo.toml file has a wrong URL in its `repository` field: repository = "https://github.com/savge13/agg" It should be: repository = "https://github.com/savage13/agg" The result is that e.g. the crates.io page uses the...
I have written an [AIFF test suite](https://github.com/karip/toisto-aiff-test-suite) and I tested symphonia AIFF implementation with it. Here's a summary of the results for symphonia 0.5.4. - 8-bit uncompressed files return wrong...
AIFF files with 8-bit PCM audio data are read incorrectly by NAudio. Audio bytes seem to be read as *unsigned* 8-bit integers, but they should be read as *signed* 8-bit...
I'm trying to write 32-bit samples using AiffFileWriter. Here's the code for it: ``` WaveFormat format = WaveFormat.CreateCustomFormat(WaveFormatEncoding.Extensible, 44100, 1, 0, 0, 32); AiffFileWriter writer = new AiffFileWriter("output.aiff", format); for...