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

How to distribute to GStreamer #57

Closed tnoborio closed 1 year ago

tnoborio commented 1 year ago

I would like to use this library to gift audio data to GStreamer on the server.

I don't think the data Mic_steam sends is RTP, but is there any way to receive the data at GStreamer?

anarchuser commented 1 year ago

This plugin does not send any data at all. If you want to transmit the data to different devices, like a server, you have to do this yourself. Concretely, write an app that initiates an RTP connection to the receiving device, starts recording audio, and sends all data over the connection

tnoborio commented 1 year ago

Thank you for your comment, I will try to write a library of such libraries myself.