2

I am developing an android video compression application.

I have video 1280*720, video duration is 4 seconds and size of the video is 7Mb, How can get estimated video size for different resolutions.

I want to find estimated video size for 854*504, 640*360 and more resolutions, please let me if any formal for calculating estimated video size.

Thanks :)

rajahsekar
  • 916
  • 1
  • 11
  • 25

1 Answers1

0

You can not estimate file size from resolution alone. A file with little motion will compress much smaller that a file with a lot of action. If you need to know the size before compression, you should decide what size you want, then divide that number by the video duration, and use that number for your bitrate when encoding.

szatmary
  • 29,969
  • 8
  • 44
  • 57