Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tourenathan-G5organisation/SiliCompressor
A powerful, flexible and easy to use Video and Image compression library for Android.
https://github.com/Tourenathan-G5organisation/SiliCompressor
android compressor image library media video
Last synced: 3 months ago
JSON representation
A powerful, flexible and easy to use Video and Image compression library for Android.
- Host: GitHub
- URL: https://github.com/Tourenathan-G5organisation/SiliCompressor
- Owner: Tourenathan-G5organisation
- License: apache-2.0
- Created: 2016-04-04T07:13:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T08:23:07.000Z (about 2 years ago)
- Last Synced: 2024-08-04T09:49:31.466Z (3 months ago)
- Topics: android, compressor, image, library, media, video
- Language: Java
- Homepage:
- Size: 4.17 MB
- Stars: 1,375
- Watchers: 38
- Forks: 290
- Open Issues: 128
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# SiliCompressor
A powerful, flexible and easy to use Video and Image compression library for Android.Description
--------
#### Image
It's usually said that "A picture is worth a thousand words". Images adds flair and beauty to our android apps, but we usaully have problems with these images due to thier large size. With SiliCompressor you can now compress and use your images more smoothly.#### Video
Due to the high resolution of our Smartphone cameras and cameras from other devices, Video files have become large in size and thus difficult for it to be shared with others on social apps, social media and even when we need to upload it on our server. With SiliCompressor you can now compress you video file while maintaining it quality.Credit
--------
The image compressor part of this project is inspired from [Void Canvas] blog from which the core part of the compressor was done.
For the Video Compression part of this project, credit goes to [Jorge E. Hernandez (@lalongooo)] whose codes was used for the core part of the video compressor module.Usage
--------
To effectively use this library, you must make sure you have added the following permission to your project.
```java```
#### Compress a video file and return the file path of the new video
```java
String filePath = SiliCompressor.with(Context).compressVideo(videoUriString, destinationDirectory);
```
```java
String filePath = SiliCompressor.with(Context).compressVideo(videoContentUri, destinationDirectory);
```
#### Compress an image and return the file path of the new image
```java
String filePath = SiliCompressor.with(Context).compress(uriString, destinationDirectory);
```
#### Compress an image and return the file path of the new image while deleting the source image
```java
String filePath = SiliCompressor.with(Context).compress(uriString, destinationDirectory, true);
```#### Compress an image drawable and return the file path of the new image
```java
String filePath = SiliCompressor.with(Context).compress(R.drawable.icon);
```#### Compress an image and return the bitmap data of the new image
```java
Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString);
```#### Compress an image and return the bitmap data of the new image while deleting the source image
```java
Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString, true);
```Download
--------
#### Gradle
```groovy
implementation 'com.iceteck.silicompressorr:silicompressor:2.2.4'
```##### Maven
```xmlcom.iceteck.silicompressorr
silicompressor
2.2.4
aar```
##### Ivy
```xml
```
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].
License
--------
Copyright 2016 [Teyou Toure Nathan][toure]Licensed under the Apache License, Version 2.0 (the "License") and GNU General Public License v2.0;
you may not use this file except in compliance with the Licenses.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0 and https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.[snap]: https://oss.sonatype.org/content/repositories/snapshots
[toure]: https://www.linkedin.com/in/toure-nathan/
[Void Canvas]: http://voidcanvas.com/whatsapp-like-image-compression-in-android/
[Jorge E. Hernandez (@lalongooo)]: https://github.com/lalongooo