record 7.0.0
record: ^7.0.0 copied to clipboard
Audio recorder from microphone to file or stream with multiple codecs, bit rate and sampling rate options.
import 'package:flutter/material.dart';
import 'package:record_example/audio_player.dart';
import 'package:record_example/audio_recorder.dart';
void main() => runApp(const MyApp());
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
String? audioPath;
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: Center(
child: audioPath != null
? AudioPlayer(
source: audioPath!,
onDelete: () => setState(() => audioPath = null),
)
: Recorder(
onStop: (path) {
debugPrint('Recorded file path: $path');
setState(() => audioPath = path);
},
),
),
),
);
}
}