All Projects → Tourenathan-G5organisation → Silicompressor

Tourenathan-G5organisation / Silicompressor

Licence: apache-2.0
A powerful, flexible and easy to use Video and Image compression library for Android.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Silicompressor

Isobmff
C++ Library for ISO/IEC 14496-12 - ISO Base Media File Format (QuickTime, MPEG-4, HEIF, etc)
Stars: ✭ 157 (-85.48%)
Mutual labels:  library, image, media
Kiimagepager
The KIImagePager is inspired by foursquare's ImageSlideshow, the user may scroll through images loaded from the Web
Stars: ✭ 324 (-70.03%)
Mutual labels:  library, image
Imageviewer.swift
An easy to use Image Viewer that is inspired by Facebook
Stars: ✭ 1,071 (-0.93%)
Mutual labels:  library, image
Compressor
An easy to use and well designed image compress library for Android, based on Android native image library. Put forward a framework for quick switch from different compress algorithm.
Stars: ✭ 476 (-55.97%)
Mutual labels:  image, compressor
Slideimageview
Simple and convenient library that allows you to slide images through a view.
Stars: ✭ 227 (-79%)
Mutual labels:  library, image
Landscapist
🍂 Jetpack Compose image loading library which can fetch and display network images using Glide, Coil, and Fresco.
Stars: ✭ 264 (-75.58%)
Mutual labels:  library, image
React Native Blurhash
🖼️ A library to show colorful blurry placeholders while your content loads.
Stars: ✭ 430 (-60.22%)
Mutual labels:  library, image
Media Watermark
GPU/CPU-based iOS Watermark Library for Image and Video Overlay
Stars: ✭ 170 (-84.27%)
Mutual labels:  library, image
Jvedio
Windows desktop application to manage local video;Support baidu AI, youdao translation;Support FFMPEG video processing;Support multi-database management and statistics;Support skin switching
Stars: ✭ 545 (-49.58%)
Mutual labels:  library, image
Louvre
A small customizable library useful to handle an gallery image pick action built-in your app. 🌄🌠
Stars: ✭ 629 (-41.81%)
Mutual labels:  library, image
Handright
A lightweight Python library for simulating Chinese handwriting
Stars: ✭ 634 (-41.35%)
Mutual labels:  library, image
Yt Dlc
media downloader and library for various sites.
Stars: ✭ 2,590 (+139.59%)
Mutual labels:  library, media
Jcplayer
🎵 A simple audio player for Android applications.
Stars: ✭ 209 (-80.67%)
Mutual labels:  library, media
Bottomsheet Imagepicker
Modern image picker for Android
Stars: ✭ 267 (-75.3%)
Mutual labels:  library, image
Ptimagealbumviewcontroller
"Image Album" — or "Photo Album" if you like that better — View( Controller) for all crazy iOS developers out there...
Stars: ✭ 199 (-81.59%)
Mutual labels:  library, image
Ptshowcaseviewcontroller
An initial implementation of a "showcase" view( controller) for iOS apps... Visualizes images, videos and PDF files beautifully! (by @pittleorg) [meta: image, photo, video, document, pdf, album, gallery, showcase, gallery, iOS, iPhone, iPad, component, library, viewer]
Stars: ✭ 395 (-63.46%)
Mutual labels:  library, image
Belvedere
An image picker library for Android
Stars: ✭ 122 (-88.71%)
Mutual labels:  library, media
Ambient
Lightweight ambient light javascript library for HTML image and video elements
Stars: ✭ 20 (-98.15%)
Mutual labels:  library, image
Turbopfor Integer Compression
Fastest Integer Compression
Stars: ✭ 520 (-51.9%)
Mutual labels:  library, compressor
Exhibit
Exhibit is a managed screensaver App for tvOS.
Stars: ✭ 19 (-98.24%)
Mutual labels:  image, media

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.

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

Compress a video file and return the file path of the new video

String filePath = SiliCompressor.with(Context).compressVideo(videoUriString, destinationDirectory);
String filePath = SiliCompressor.with(Context).compressVideo(videoContentUri, destinationDirectory);

Compress an image and return the file path of the new image

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

String filePath = SiliCompressor.with(Context).compress(uriString, destinationDirectory, true);

Compress an image drawable and return the file path of the new image

String filePath = SiliCompressor.with(Context).compress(R.drawable.icon);

Compress an image and return the bitmap data of the new image

Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString);

Compress an image and return the bitmap data of the new image while deleting the source image

Bitmap imageBitmap = SiliCompressor.with(Context).getCompressBitmap(imageUriString, true);

Download

Gradle

implementation 'com.iceteck.silicompressorr:silicompressor:2.2.4'
Maven
<dependency>
  <groupId>com.iceteck.silicompressorr</groupId>
  <artifactId>silicompressor</artifactId>
  <version>2.2.4</version>
  <type>aar</type>
</dependency>
Ivy
<dependency org='com.iceteck.silicompressorr' name='silicompressor' rev='2.2.4'>
  <artifact name='silicompressor' ext='pom' ></artifact>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2016 Teyou Toure Nathan

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 at

http://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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].