Files
react-native-video-cache/README.md
2019-12-03 12:00:16 +08:00

27 lines
582 B
Markdown

# react-native-video-cache
Boost performance on online video loading and caching
Use following libraries to do the heavy lifting.
- iOS: https://github.com/ChangbaDevs/KTVHTTPCache
- Android: https://github.com/danikula/AndroidVideoCache
## Getting started
`$ yarn add react-native-video-cache`
### Mostly automatic installation
`$ react-native link react-native-video-cache`
## Usage
```javascript
import convertToProxyURL from 'react-native-video-cache';
...
const localProxiedURL = await convertToProxyURL(originalURL);
...
<Video source={{uri: localProxiedURL}} />
```