audio_toolkit 0.0.4
audio_toolkit: ^0.0.4 copied to clipboard
A macOS-only Flutter plugin to record system/microphone audio and transcribe voice to text with real-time speech detection.
example/lib/main.dart
import 'package:audio_toolkit_example/audio_toolkit/screen/audio_toolkit_screen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: const AudioToolkitScreen(),
);
}
}