Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phuochau/react-native-compress
Compress video for react native. Only for iOS, Android will be coming.
https://github.com/phuochau/react-native-compress
Last synced: 2 months ago
JSON representation
Compress video for react native. Only for iOS, Android will be coming.
- Host: GitHub
- URL: https://github.com/phuochau/react-native-compress
- Owner: phuochau
- Created: 2017-04-27T06:22:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-02T05:07:40.000Z (about 5 years ago)
- Last Synced: 2024-10-03T18:46:15.494Z (3 months ago)
- Language: Objective-C
- Size: 10.7 KB
- Stars: 35
- Watchers: 4
- Forks: 15
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-react-native - react-native-compress ★21 - Compress video for react native. Only for iOS, Android will be coming. (Components / UI)
- awesome-reactnative-ui - react-native-compress
- awesome-react-native - react-native-compress ★21 - Compress video for react native. Only for iOS, Android will be coming. (Components / UI)
- awesome-reactnative-ui - react-native-compress
- awesome-react-native - react-native-compress ★21 - Compress video for react native. Only for iOS, Android will be coming. (Components / UI)
- awesome-react-native - react-native-compress ★21 - Compress video for react native. Only for iOS, Android will be coming. (Components / UI)
- awesome-react-native-native-modules - react-native-compress ★15
README
# react-native-compress
Compress local video for react native. Only for iOS, Android will be coming.## Getting started
`$ npm install react-native-compress --save`
### Mostly automatic installation
`$ react-native link react-native-compress`
### Manual installation
#### iOS
1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
2. Go to `node_modules` ➜ `react-native-compress` and add `RNCompress.xcodeproj`
3. In XCode, in the project navigator, select your project. Add `libRNCompress.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
4. Run your project (`Cmd+R`)<#### Android
1. Open up `android/app/src/main/java/[...]/MainActivity.java`
- Add `import com.hauvo.compress.RNCompressPackage;` to the imports at the top of the file
- Add `new RNCompressPackage()` to the list returned by the `getPackages()` method
2. Append the following lines to `android/settings.gradle`:
```
include ':react-native-compress'
project(':react-native-compress').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-compress/android')
```
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
```
compile project(':react-native-compress')
```## Usage
```javascript
import RNCompress from 'react-native-compress';
// quality will be "low", "medium" or "high"
RNCompress.compressVideo(filePath, quality)
```