Reputation: 151
I have react-native application which after video recording need to upload it on express server which is on aws-ec2.It takes too long video uploading, how I can optimize that, which technologies or tools I need to use? Thanks
Upvotes: 0
Views: 190
Reputation: 792
You can use the react-native-camera library to record your video.
In recordAsync method, you can set lower quality for reducing the video size.
Upvotes: 1