Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

296
Views
uploading media file to s3 contains auto-compression?

I uploaded mpeg4 file from my local to s3. the file size is 10M on local while the file size is just under 1M. compression itself doesn't matter, but the uploaded file on s3 cause a/v async problem. I want to solve the a/v async issue. My code is as follows.

TransferUtility utility = new TransferUtility(ConfigurationManager.AppSettings["AmazonAccessKey"], ConfigurationManager.AppSettings["AmazonSecretKey"], RegionEndpoint.USWest2);
// making a TransferUtilityUploadRequest instance
TransferUtilityUploadRequest request = new TransferUtilityUploadRequest();        

if (subDirectoryInBucket == "" || subDirectoryInBucket == null)
{
    request.Key = fileNameInS3; //file name up in S3
}
else
{   // subdirectory and bucket name
    request.Key = subDirectoryInBucket + @"/" + fileNameInS3; //file name up in S3                                
}
request.BucketName = bucketName; //no subdirectory just bucket name
request.CannedACL = S3CannedACL.PublicRead;
request.FilePath = localFilePath; //local file name
utility.Upload(request); //commensing the transfer

If there is anyone who experience this problem, please help me. Thanks in advance.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Unless it has changed recently, which it does regularly..., a standard transfer to S3 should not be compressing your video. I would take a look at the wider client code to see if the compression is happening there, or at the logs to see if the transfer is not completing properly for some reason.

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!