flutter_acrcloud 0.2.1 flutter_acrcloud: ^0.2.1 copied to clipboard
A Flutter plugin for the ACRCloud music recognition API. This plugin provides a simple interface for using ACRCloud to recognize music from the device's microphone.
import 'package:flutter/material.dart';
import 'package:flutter_acrcloud/flutter_acrcloud.dart';
import 'package:flutter_acrcloud_example/env.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
ACRCloudResponseMusicItem? music;
@override
void initState() {
super.initState();
ACRCloud.setUp(ACRCloudConfig(apiKey, apiSecret, host));
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Flutter_ACRCloud example app'),
),
body: Center(
child: Column(
children: [
Builder(
builder: (context) => ElevatedButton(
onPressed: () async {
setState(() {
music = null;
});
final session = ACRCloud.startSession();
showDialog(
context: context,
barrierDismissible: false,
builder: (context) => AlertDialog(
title: Text('Listening...'),
content: StreamBuilder(
stream: session.volumeStream,
initialData: 0,
builder: (_, snapshot) =>
Text(snapshot.data.toString()),
),
actions: [
TextButton(
child: Text('Cancel'),
onPressed: session.cancel,
)
],
),
);
final result = await session.result;
Navigator.pop(context);
if (result == null) {
// Cancelled.
return;
} else if (result.metadata == null) {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text('No result.'),
));
return;
}
setState(() {
music = result.metadata!.music.first;
});
},
child: Text('Listen'),
),
),
if (music != null) ...[
Text('Track: ${music!.title}\n'),
Text('Album: ${music!.album.name}\n'),
Text('Artist: ${music!.artists.first.name}\n'),
],
],
),
),
),
);
}
}