You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added bool isAutoSaveFile and Function()? onStopSharing parameters for startRecordScreen and startRecordScreenAndAudio to use in _record and I added html.Blob? get blobFile to get the Blob file. (I think should have getMimeType too)
The Blob doesn't work on Android and iOS devices because it uses HTML.
Then return as bytes is better for supporting all platforms.
Can you add this feature?
The text was updated successfully, but these errors were encountered:
When stopping the recording by using
This package will autosave the file and return with the path as
String
type.But I want only to get the file as Blob or byte(Uint8List or List) without autosaving the file to upload to the server.
For example, I edited the
flutter_screen_recording_web.dart
file like this.and using like.
I added
bool isAutoSaveFile
andFunction()? onStopSharing
parameters forstartRecordScreen
andstartRecordScreenAndAudio
to use in_record
and I addedhtml.Blob? get blobFile
to get theBlob
file. (I think should have getMimeType too)The
Blob
doesn't work on Android and iOS devices because it usesHTML
.Then return as bytes is better for supporting all platforms.
Can you add this feature?
The text was updated successfully, but these errors were encountered: