aoxel_decoder 1.0.0
aoxel_decoder: ^1.0.0 copied to clipboard
A starting point for Dart libraries For Decoding the Aox Audio Files.
example/aoxel_decoder_example.dart
import 'package:aoxel_decoder/aoxel_decoder.dart';
Future<void> main() async {
// The path to the AOX file.
final aoxFilename = '../data/input.aox';
// The path to the output directory.
final outputDir = 'output_dir';
// Decode the AOX file and save the WAV files to the output directory.
await decodeAOX(aoxFilename, outputDir);
}