flutter_pcm_sound 2.0.0 flutter_pcm_sound: ^2.0.0 copied to clipboard
Send real-time PCM audio (16-bit integer) to your device speakers
import 'package:flutter/material.dart';
import 'package:flutter_pcm_sound/flutter_pcm_sound.dart';
const int sampleRate = 44100;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return PcmSoundApp();
}
}
class PcmSoundApp extends StatefulWidget {
@override
_PcmSoundAppState createState() => _PcmSoundAppState();
}
class _PcmSoundAppState extends State<PcmSoundApp> {
int _remainingFrames = 0;
MajorScale scale = MajorScale(sampleRate: sampleRate, noteDuration: 0.20);
@override
void initState() {
super.initState();
FlutterPcmSound.setLogLevel(LogLevel.verbose);
FlutterPcmSound.setup(sampleRate: sampleRate, channelCount: 1);
FlutterPcmSound.setFeedThreshold(sampleRate ~/ 20);
FlutterPcmSound.setFeedCallback(onFeed);
}
@override
void dispose() {
super.dispose();
}
void onFeed(int remainingFrames) async {
setState(() {
_remainingFrames = remainingFrames;
});
List<int> frames = scale.generate(periods: 20);
await FlutterPcmSound.feed(PcmArrayInt16.fromList(frames));
}
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: Scaffold(
appBar: AppBar(
centerTitle: true,
title: Text('Flutter PCM Sound'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ElevatedButton(
onPressed: () {
FlutterPcmSound.play();
},
child: Text('Play'),
),
ElevatedButton(
onPressed: () {
FlutterPcmSound.stop(clear: false);
},
child: Text('Stop'),
),
Text('$_remainingFrames Remaining Frames')
],
),
),
),
);
}
}