anarchuser / mic_stream

Flutter plugin to get an infinite audio stream from the microphone
https://pub.dev/packages/mic_stream
GNU General Public License v3.0
100 stars 68 forks source link

Stream to Base64 #46

Closed 0x15F9 closed 1 year ago

0x15F9 commented 1 year ago

What approach should be taken to convert the Uint8List recording to Base64?

anarchuser commented 1 year ago

It should be as easy as

import 'dart:convert';
...
Stream<String> base64Steam = byteStream.transform(base64Encode);

I have not tested this, though.