Flutter Web : How to record particular widget and audio? - flutter

I am trying to build an application for web using flutter that can record a particular widget and audio using flutter. Is there any way I can achieve it?
I have already tried using these packages. But they either record the whole screen or export video in gif format which I cannot edit in web using packages like ffmpeg
screen_recorder
flutter_screen_recording

Related

Convert speech to text in flutter for desktop(Windows) application

I am developing a cross platform application in flutter and cannot find any sources for converting speech to text in desktop(windows).
I tried using packages like speech_to_text
I even tried google_speech in which it require an audio file to transcribe it to text. But, I could not find any package for taking microphone input in windows so that I can pass it to an API and get the text.
Is there any possible solution for this?

Flutter: How to display phone gallery on a container?

I found a way to display live camera on a container(). But I want to display gallery on Container() in app and control like photo example.
Is it possible in flutter ?
I'm not sure it would be possible to implement this but one things I have thought of is to request External Storage Access and maybe get the directory where all photo are stored and display the from File. However, this approach may need to a lot exceptions thrown.
I normal image_picker invokes the native channel to be able show the Android Native UI and same for iOS.

How to send images using "flutter_open_whatsapp" package?

I am building an app that has to be able to send text and images directly to a specific WhatsApp number using this package https://pub.dev/packages/flutter_open_whatsapp. But the plugin has not implemented for the multimedia data. What exactly am I supposed to do?

Can i change the volume of my AUDIO FILE without changing the SYSTEM volume in Flutter?

I am working on a flutter project where I want to play multiple sounds simultaneously and I want to change the volume for specific audio without changing the volume of other audios or the system volume.
I have tried various Flutter Libraries but couldn't work it out. Please help if anyone knows.
The application is similar to this application.
You can try audioplayers flutter plugin. The plugin can control the sound(volume parameter) and can play multiple files.
https://pub.dev/packages/audioplayers

Flutter Images and Video Saved using path_provider not showing in Gallery

I want to record a video or audio in my Flutter App and wants it to appear in gallery. How can I do it because path_provider is saving file to safe location and one need a rooted device to access it.
I was trying Flutter Camera Plugin Example
Also asked on https://github.com/flutter/flutter/issues/20807
The reason I was facing the problem is that the example I was trying uses path_provider function "getApplicationDocumentsDirectory()" to store the files.
By replacing above Function with "getExternalStorageDirectory()" I am able to store the file in the external directory and they appear in the Gallery.
You need to do scan media files using broadcast intent.
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(YOUR_PATH)));