FFmpeg-Android
FFmpeg-Android copied to clipboard
how to see video size after compress?
I want to check what is the size of the video after I compress it using this library, how can I do so?
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;
...