FFmpeg-Android icon indicating copy to clipboard operation
FFmpeg-Android copied to clipboard

how to see video size after compress?

Open alonsd opened this issue 5 years ago • 1 comments

I want to check what is the size of the video after I compress it using this library, how can I do so?

alonsd avatar Jul 23 '19 08:07 alonsd

File file = new File(YOUR_COMPRESSED_VIDEO_PATH);
long fileSize = file.length(); //Returns file size in bytes so you ave to convert it
long fileSizeInKB = fileSize/1024;
long fileSizeInMB = fileSizeInKB/1024;

...

uzaysan avatar Apr 09 '20 06:04 uzaysan