libao 0.1.0 copy "libao: ^0.1.0" to clipboard
libao: ^0.1.0 copied to clipboard

outdated

A Dart wrapper for the libao library to output audio using a simple API on a wide variety of platforms.

example/main.dart

import 'dart:math';
import 'dart:typed_data';

import 'package:libao/libao.dart';

void main() {
  final ao = Libao.open();

  ao.initialize();

  final driverId = ao.defaultDriverId();
  
  print(ao.driverInfo(driverId));

  const bits = 16;
  const channels = 2;
  const rate = 44100;

  final device = ao.openLive(
    driverId,
    bits: bits,
    channels: channels,
    rate: rate,
  );

  const volume = 0.5;
  const freq = 440.0;

  // Number of bytes * Channels * Sample rate.
  const bufferSize = bits ~/ 8 * channels * rate;
  final buffer = Uint8List(bufferSize);

  for (var i = 0; i < rate; i++) {
    final sample = (volume * 32768.0 * sin(2 * pi * freq * (i / rate))).round();
    // Left = Right.
    buffer[4 * i] = buffer[4 * i + 2] = sample & 0xff;
    buffer[4 * i + 1] = buffer[4 * i + 3] = (sample >> 8) & 0xff;
  }

  ao.play(device, buffer);

  ao.close(device);
  ao.shutdown();
}
17
likes
40
pub points
0%
popularity

Publisher

verified publishertiagohm.dev

A Dart wrapper for the libao library to output audio using a simple API on a wide variety of platforms.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

ffi

More

Packages that depend on libao