Hi I am uploading a video to my bucket with :
String uploadedImageUrl = await AmazonS3Cognito.uploadImage( imagePath.path, 'bucketname', 'us-east-1:xyz', );
This works perfectly fine. But the problem is when I get uploadedImageUrl , it doesn't have a extension. ie. if the video was .mp4 file then this would be the url
Hi I am uploading a video to my bucket with :
String uploadedImageUrl = await AmazonS3Cognito.uploadImage( imagePath.path, 'bucketname', 'us-east-1:xyz', );
This works perfectly fine. But the problem is when I get uploadedImageUrl , it doesn't have a extension. ie. if the video was .mp4 file then this would be the url
As you can see there is no '.' before mp4. This is the problem when I try to play to video in flutter video player or chewie. How can it be solved?