Easy Flutter library to convert TAP/.TZX files (a data format for ZX-Spectrum emulator) into sound WAV file.
Easy Flutter library to convert .TAP/.TZX files (a data format for ZX-Spectrum emulator) into sound WAV file.
A simple usage example:
import 'dart:io';
import 'package:zx_tape_to_wav/zx_tape_to_wav.dart';
void main() async {
var sourceFilePath = 'assets/roms/RENEGADE.tzx';
var outputFileName = 'assets/out/RENEGADE.wav';
await new File(sourceFilePath).readAsBytes().then((input) =>
ZxTape.create(input)
.then((tape) =>
tape.toWavBytes(frequency: 44100, amplifySoundSignal: true))
.then((output) => new File(outputFileName).writeAsBytes(output)));
}
Contributions are welcome. Just open an Issue or submit a PR.
You can reach me via my email.
Many thanks especially to Igor Maznitsa for his library as a source for ideas.
Author: semack
Source Code: https://github.com/semack/zx_tape_to_wav
Google has announced new flutter 1.20 stable with many improvements, and features, enabling flutter for Desktop and Web
Flutter has been booming worldwide from the past few years. While there are many popular mobile app development technologies out there, Flutter has managed to leave its mark in the mobile application development world. In this article, we’ve curated the best Flutter app templates available on the market as of July 2020.
As the new decade dawns upon us, a slew of technologies has been making a lot of noise to grab the developers’ attention. While native app development is going strong, the trade winds are now blowing towards going cross-platform.
This article covers everything about mobile app wireframe design: what to do and what not, tools used in designing a mobile or web app wireframe, and more.
The mobile application scenario has been continually changing over the years. In recent years India has become a center for mobile app development companies. The increase of smartphones has instantly increased the requirements for these apps. Every year new technological trends occur due to contin