Hi @Fernando ,
I added a feature to let my users record a video presentation for there profil. The video will then be sent to S3 bucket.
The problem is that videos are very big and it takes too much time. So i tried compression but it's too long.
So i choosed for now to use the android standard options to reduce quality, and give a max time and size limit:
takeVideoIntent.putExtra(android.provider.MediaSto re.EXTRA_VIDEO_QUALITY, 0);
takeVideoIntent.putExtra(android.provider.MediaSto re.EXTRA_DURATION_LIMIT,15);
takeVideoIntent.putExtra(android.provider.MediaSto re.EXTRA_SIZE_LIMIT,10485760L);
I added them to camera extension (line 431), but next time you update the extension, my changes will be lost.
Can you add these options to the camera extension with parameters. So we can use them from inside Fusion ?
Thanks !![]()