npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-sili-video-compression

v1.2.1

Published

react native video compressor, android and ios

Downloads

51

Readme

react-native-video-compression

Getting started

$ npm install react-native-sili-video-compression --save

Mostly automatic installation

$ react-native link react-native-sili-video-compression

Manual installation

  1. Open the package.json file and under dependencies ➜ Add "react-native-sili-video-compression" : 1.0.6

  2. You should add a comma before the line to keep the JSON format of it.

  3. Open the terminal in the project ➜ Type npm install.

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-video-compression and add RNVideoCompression.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNVideoCompression.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

Usage

Import Library

import CompressModule from 'react-native-sili-video-compression';

Add External File read write permission into your Manifest.xml.

Add xmlns:tools="http://schemas.android.com/tools" to your <Manifest/> tag in your Manifest.xml.

Manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  ...
  ...>

Add these 2 line to your <application/> tag.

<application
      android:name=".MainApplication"
      android:label="@string/app_name"
      ...
      android:requestLegacyExternalStorage="true"   //Add this
      tools:replace="android:allowBackup"           //Add this
      />

Add Event Emitter for progress update

const EVENT_NAME = new NativeEventEmitter(NativeModules.CompressModule);
    this.subscription = EVENT_NAME.addListener(
                             CompressModule.VIDEO_COMPRESS_PROGRESS_EMITTER,
                             (value)=> console.log(value));

Add success listener

var successCall = (fileName, size, path, message) => {
      // Do your work
      console.log(message);
    };

Success method properties

| Property | Type | Description | | --------------------------------------- | :--------------------------------------: | :--------------------------------------- | | fileName | String | File name with absolute path : '/storage/emulated/0/Download/20201003_095653.mp4'| | size | Long | Size in Bytes | | path | String | Absolute file path of compressed file : '/storage/emulated/0/Download/20201003_095653.mp4'| | message | String | Compress comprete message |

Add Failure listener

var errorCall = (errorMessage) => { 
      // Do your work
      console.log(errorMessage);
    };

Failure method properties

| Property | Type | Description | | --------------------------------------- | :--------------------------------------: | :--------------------------------------- | | errorMessage | String | Error message with reason |

Compression methode for predefined levels

//Check for External file access permission before video conversion
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
      CompressModule.compressVideo('/storage/emulated/0/Download/20201003_095653.mp4', CompressModule.LOW,
      errorCall, successCall);
      // console.log(CompressModule.LOW);
    }

compressVideo() request Params

| Property | Type | Description | | --------------------------------------- | :--------------------------------------: | :--------------------------------------- | | inputFilePath | String | Absolute path for input file : '/storage/emulated/0/Download/20201003_095653.mp4' | | compressLevel | Constant | LOW/MEDIUM/HIGH | | errorCallback | CallBack | ErrorCallback object to handle error events | | successCallback | CallBack | SuccessCallback object to handle error events |

Predefined 3 level of compress can be done.

| Constant | Description | | ------------------------------|---------------------------------------| | CompressModule.LOW | compress level 10% and reduce Height and Width to 50% | | CompressModule.MEDIUM | compress level 50% and reduce Height and Width to 50% | | CompressModule.HIGH | compress level 100% and reduce Height and Width to 50% |

Compression methode by using percentage

//Check for External file access permission before video conversion
if (granted === PermissionsAndroid.RESULTS.GRANTED) {
      CompressModule.compressVideoWithQuality('/storage/emulated/0/Download/20201003_095653.mp4', reduceVideoQualityToPercent, reduceHeightWidthToPercent, 
      errorCall, successCall);
      // console.log(CompressModule.LOW);
    }

compressVideoWithQuality() request Params

| Property | Type | Description | | --------------------------------------- | :--------------------------------------: | :--------------------------------------- | | inputFilePath | String | Absolute path for input file : '/storage/emulated/0/Download/20201003_095653.mp4' | | reduceVideoQualityToPercent | Float | value should be in between 0 to 1, default value is 0.5 | | reduceHeightWidthToPercent | Float | value should be in between 0 to 1, default value is 0.5 | | errorCallback | CallBack | ErrorCallback object to handle error events | | successCallback | CallBack | SuccessCallback object to handle error events |

VERY IMPORTANT FOR ANDROID Close the Emitter subscription if not using it or in task completion or task failed

this.subscription.remove();

License

MIT