zx_tape_to_wav 0.1.0 zx_tape_to_wav: ^0.1.0 copied to clipboard
Conversion library of .TAP/.TZX files (a ZX-Spectrum emulator data format) into .WAV sound files.
zx_tape_to_wav #
Easy Flutter library to convert .TAP / .TZX files (a data format for ZX-Spectrum emulator) into sound WAV file.
Example of usage #
await new File('roms/RENEGADE.tzx').readAsBytes()
.then((input) => ZxTape.create(input)
.then((tape) => tape.toWavBytes(frequency:44100))
.then((output) => new File('output/RENEGADE.wav').writeAsBytes(output)));
License #
Please see LICENSE.
Contribute #
Contributions are welcome. Just open an Issue or submit a PR.
Contact #
You can reach me via my email.
Thanks #
Many thanks especially to Igor Maznitsa for his library as a source for ideas.