-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
323 lines (292 loc) · 9.11 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
import 'dart:async';
import 'dart:math';
import 'dart:core';
import 'package:flutter/widgets.dart';
import 'package:flutter/material.dart';
import 'package:flutter/animation.dart';
import 'package:flutter/rendering.dart';
import 'package:mic_stream/mic_stream.dart';
import './pages/record/widgets/wavePainter.dart';
import './pages/record/widgets/analyzer.dart';
import './constants.dart';
import './pages/library/library.dart';
enum Command {
start,
stop,
change,
}
const AUDIO_FORMAT = AudioFormat.ENCODING_PCM_16BIT;
void main() => runApp(MicStreamExampleApp());
class MicStreamExampleApp extends StatefulWidget {
@override
_MicStreamExampleAppState createState() => _MicStreamExampleAppState();
}
class _MicStreamExampleAppState extends State<MicStreamExampleApp>
with SingleTickerProviderStateMixin, WidgetsBindingObserver {
Stream<List<int>> stream;
StreamSubscription<List<int>> listener;
List<int> currentSamples = [];
List<int> rawSamples = [];
Library libraryCards = new Library();
// Refreshes the Widget for every possible tick to force a rebuild of the sound wave
AnimationController controller;
bool isRecording = false;
bool memRecordingState = false;
bool isActive;
DateTime startTime;
Prediction predicitonResponse = Prediction(prediction: "-", confidence: 0);
int page = 0;
List state = ["SoundWavePage", "InformationPage"];
@override
void initState() {
print("Init application");
super.initState();
WidgetsBinding.instance.addObserver(this);
setState(() {
initPlatformState();
});
}
void _controlPage(int index) => setState(() {
_pageIdx = index;
_pageController.animateToPage(
index,
curve: Curves.linear,
duration: Duration(milliseconds: 400),
);
});
var _pageController = PageController(initialPage: 1);
// Responsible for switching between recording / idle state
void _controlMicStream({Command command: Command.change}) async {
_controlPage(1);
switch (command) {
case Command.change:
_changeListening();
break;
case Command.start:
_startListening();
break;
case Command.stop:
_stopListening();
break;
}
}
bool _changeListening() =>
!isRecording ? _startListening() : _stopListening();
bool _startListening() {
if (isRecording) return false;
stream = microphone(
audioSource: AudioSource.DEFAULT,
sampleRate: 8000,
channelConfig: ChannelConfig.CHANNEL_IN_MONO,
audioFormat: AUDIO_FORMAT);
setState(() {
isRecording = true;
startTime = DateTime.now();
});
print("Start Listening to the microphone");
setState(() {
currentSamples = [];
});
listener = stream.listen((samples) {
if (currentSamples != null) {
List<int> resampledSamples = [];
var window = samples.length ~/ 10;
for (var i = 0; i < samples.length; i = i + window) {
var windowSamples = samples.getRange(i, i + window);
resampledSamples.add((windowSamples.fold(0, (p, c) => p + c)) *
10 ~/
windowSamples.length);
}
rawSamples.addAll(samples);
if (currentSamples.length > 350) {
analyzeSamples(rawSamples)
.then((value) => setState(() => predicitonResponse = value));
setState(() => currentSamples = []);
rawSamples = [];
}
setState(() => currentSamples.addAll(resampledSamples));
} else {
setState(() => currentSamples = []);
rawSamples = [];
}
});
return true;
}
bool _stopListening() {
if (!isRecording) return false;
print("Stop Listening to the microphone");
listener.cancel();
setState(() {
isRecording = false;
//currentSamples = null;
startTime = null;
});
return true;
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> initPlatformState() async {
if (!mounted) return;
isActive = true;
controller =
AnimationController(duration: Duration(seconds: 1), vsync: this)
..addListener(() {
if (isRecording) setState(() {});
})
..addStatusListener((status) {
if (status == AnimationStatus.completed)
controller.reverse();
else if (status == AnimationStatus.dismissed) controller.forward();
})
..forward();
}
Icon _getIcon() => (isRecording)
? Icon(Icons.pause, size: 32)
: Icon(Icons.fiber_manual_record, size: 32);
int _pageIdx = 1;
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: colors["light-grey"],
appBar: AppBar(
centerTitle: true,
title: Text("Heart AI"),
elevation: 0,
backgroundColor: colors["red"],
actions: [
IconButton(
icon: Icon(
Icons.more_vert,
color: colors["white"],
),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => null),
);
},
)
],
),
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: SizedBox(
width: 68,
height: 68,
child: FloatingActionButton(
onPressed: _controlMicStream,
child: _getIcon(),
foregroundColor: colors["white"],
backgroundColor: colors["red"],
tooltip: (isRecording) ? "Stop recording" : "Start recording",
),
),
bottomNavigationBar: BottomAppBar(
shape: CircularNotchedRectangle(),
notchMargin: 6,
clipBehavior: Clip.antiAlias,
child: BottomNavigationBar(
currentIndex: _pageIdx,
items: [
BottomNavigationBarItem(
icon: Icon(
Icons.reorder,
color: colors["gray"],
),
label: "Library",
),
BottomNavigationBarItem(
icon: Icon(Icons.mic_external_off), label: ""),
BottomNavigationBarItem(
icon: Icon(
Icons.mic,
color: colors["gray"],
),
label: "Source",
)
],
backgroundColor: colors["white"],
elevation: 20,
onTap: _controlPage,
),
),
body: PageView(
controller: _pageController,
onPageChanged: (page) => setState(() => _pageIdx = page),
children: [
Center(child: libraryCards),
Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.stretch,
//child: Recor(currentSamples, context))
children: [
Container(
color: colors["red"],
alignment: Alignment.topCenter,
child: Text(
'${predicitonResponse.prediction}',
style: TextStyle(
fontWeight: FontWeight.w900,
fontSize: 36,
color: colors["white"]),
),
),
Container(
decoration: BoxDecoration(
color: colors["red"],
borderRadius: BorderRadius.only(
bottomRight: Radius.circular(50),
bottomLeft: Radius.circular(50))),
padding: EdgeInsets.only(bottom: 15.0),
alignment: Alignment.topCenter,
child: Text(
'${predicitonResponse.confidence}% confidence',
style: TextStyle(
fontWeight: FontWeight.w400,
fontSize: 12,
color: colors["white"],
),
),
),
CustomPaint(
painter: WavePainter(currentSamples, colors["red"], context)),
Container(
alignment: Alignment.bottomCenter,
child: Text(
//'Please keep the microphone close to your chest',
"",
style: TextStyle(
fontWeight: FontWeight.w300,
fontSize: 12,
color: colors["grey"],
),
),
),
],
),
Text("Source"),
],
),
));
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
if (state == AppLifecycleState.resumed) {
isActive = true;
print("Resume app");
_controlMicStream(
command: memRecordingState ? Command.start : Command.stop);
} else if (isActive) {
memRecordingState = isRecording;
_controlMicStream(command: Command.stop);
print("Pause app");
isActive = false;
}
}
@override
void dispose() {
listener.cancel();
controller.dispose();
WidgetsBinding.instance.removeObserver(this);
super.dispose();
}
}