bravobit / FFmpeg-Android

FFMpeg/FFprobe compiled for Android
https://bravobit.nl/
MIT License
734 stars 172 forks source link

how to see video size after compress? #124

Open alonsd opened 4 years ago

alonsd commented 4 years ago

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

uzaysan commented 4 years ago
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;

...