Off-Top-App / off-top-flutter

Repository for our mobile client application.
0 stars 2 forks source link

OT-ContinuouslyRecordAudio (5) #39

Open frlzjosh opened 4 years ago

frlzjosh commented 4 years ago

WHAT TO DO:

  1. Currently, we are only able to record and export the file once. What we want to do is find a way to keep on exporting files until the user manually presses on the stop button.
  2. There was an approach we tried to implement where we would stop the recorder every ten seconds so that we can generate a wave file to be sent into our data pipeline and then start recorder immediately right after. THEN when the user decides to stop we will stop that process.

DONE:

  1. You are able to keep on sending over files until the user presses on stop in the flutter app
dendenso commented 4 years ago

I have some inquiries to this activity.

1) Is this aspect of the project required to be in Flutter?

2) By "sending over files" do you mean a real-time stream of the audio or deploying a buffer resulting in a delay of the information being sent or fragmenting the audio file with a fixed time interval and those pieces are sent.

3) What file type should the file be and should i be concerned where to send them.