A powerful and easy-to-use video compression library for android uses MediaCodec API. This library generates a compressed MP4 video with a modified width, height, and bitrate (the number of bits per seconds that determines the video and audio files’ size and quality). It is based on Telegram for Android source code.
The general idea of how the library works is that, extreme high bitrate is reduced while maintaining a good video quality resulting in a smaller size.
I would like to mention that the set attributes for size and quality worked just great in my projects and met the expectations. It may or may not meet yours. I’d appreciate your feedback so I can enhance the compression process.
When the video file is called to be compressed, the library checks if the user wants to set a min bitrate to avoid compressing low resolution videos. This becomes handy if you don’t want the video to be compressed every time it is to be processed to avoid having very bad quality after multiple rounds of compression. The minimum is;
- Bitrate: 2MB
You can pass one of a 3 video qualities; High, Medium, or Low and the library will handle generating the right bitrate value for the output video
return when (quality) {
VideoQuality.LOW -> (bitrate * 0.1).roundToInt()
VideoQuality.MEDIUM -> (bitrate * 0.2).roundToInt()
VideoQuality.HIGH -> (bitrate * 0.3).roundToInt()
}
when {
width >= 1920 || height >= 1920 -> {
newWidth = (width * 0.5).toInt()
newHeight = (height * 0.5).toInt()
}
width >= 1280 || height >= 1280 -> {
newWidth = (width * 0.75).toInt()
newHeight = (height * 0.75).toInt()
}
width >= 960 || height >= 960 -> {
newWidth = MIN_HEIGHT
newHeight = MIN_WIDTH
}
else -> {
newWidth = width
newHeight = height
}
}
These values were tested on a huge set of videos and worked fine and fast with them. They might be changed based on the project needs and expectations.
To use this library, you must add the following permissions to allow read and write to external storage.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
And import the following dependencies to use kotlin coroutines
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${Version.coroutines}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${Version.coroutines}"
Then just call [doVideoCompression] and pass both source and destination file paths. The method has a callback for 5 functions;
- OnStart - called when compression started
- OnSuccess - called when compression completed with no errors/exceptions
- OnFailure - called when an exception occurred or video bitrate and size are below the minimum required for compression.
- OnProgress - called with progress new value
- OnCancelled - called when the job is cancelled
You can pass the optional video quality (default is medium) and if to enable checking for min bitrate (default is true)
To cancel the compression job, just call [VideoCompressor.cancel()]
VideoCompressor.start(
path,
desFile.path,
object : CompressionListener {
override fun onProgress(percent: Float) {
// Update UI with progress value
}
override fun onStart() {
// Compression start
}
override fun onSuccess() {
// On Compression success
}
override fun onFailure() {
// On Failure
}
override fun onCancelled() {
// On Cancelled
}
}, VideoQuality.MEDIUM, isMinBitRateEnabled = false)
Minimum Android SDK: LightCompressor requires a minimum API level of 21.
This method was tested on Pixel, Huawei, Xiaomi, Samsung and Nokia phones and more than 150 videos. Here’s some results from pixel 2 XL (medium quality);
- 94.3MB compressed to 9.2MB in 11 seconds
- 151.2MB compressed to 14.7MB in 18 seconds
- 65.7MB compressed to 6.4MB in 8 seconds
Include this in your Project-level build.gradle file:
allprojects {
repositories {
.
.
.
maven { url 'https://jitpack.io' }
}
}
Include this in your Module-level build.gradle file:
implementation 'com.github.AbedElazizShe:LightCompressor:0.3.0'
For questions, suggestions, or anything else, email elaziz.shehadeh(at)gmail.com
Telegram for Android