Android Compress Video before Upload to Server

前端 未结 5 1938
情书的邮戳
情书的邮戳 2021-02-09 01:41

How can I compress a video file in Android before uploading to a remote server? I\'m not looking to zip up the file, because I don\'t think that will help much. I want to compre

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-09 02:16

    I got a similar problem. Where I had to upload video in server having size within 5.4mb. But due to different camera resolutions of different phones, there was a problem. These are the solutions which I have opted

    mediaRecorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
    mediaRecorder.setVideoEncodingBitRate(690000 );
    

    Hope these will help you

提交回复
热议问题