Git Product home page Git Product logo

react-native-video-cache's Introduction

@vino4all/react-native-video-cache

Forked from https://github.com/zhigang1992/react-native-video-cache

Boost performance on online video loading and caching

Use following libraries to do the heavy lifting.

Getting started

$ yarn add @vino4all/react-native-video-cache

Mostly automatic installation

$ react-native link @vino4all/react-native-video-cache

Usage

import convertToProxyURL from '@vino4all/react-native-video-cache';
...
<Video source={{uri: convertToProxyURL(originalURL)}} />

Set Options (Android Only)

Add this java file to the main application <project-root>/android/src/main/java/<package>/MyFileNameGenerator.java

package com.videocacheproject;

import android.net.Uri;
import com.danikula.videocache.file.FileNameGenerator;

  public class MyFileNameGenerator implements FileNameGenerator {

    // Url may contain mutable parts (parameter 'sessionToken') and stable video's id (parameter 'videoId').
    // e. g. http://example.com/videos/123?videoId=abcqaz&sessionToken=xyz987
    public String generate(String url) {

        Uri uri = Uri.parse(url);
        String[] segments = uri.getPath().split("/");
        String pathName = segments[segments.length-1];  // 123

        String videoId = uri.getQueryParameter("videoId");  // abcqaz
        return pathName+"_"+videoId + ".mp4";   // Add your own implementation
    }
}
import convertToProxyURL, {setConfig} from '@vino4all/react-native-video-cache';
...

const maxCacheSize = 1024 * 1024 * 1024; // 1GB
const fileNameGeneratorClassName =
    'com.videocacheproject.MyFileNameGenerator';
  const backgroundStyle = {
    backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
  };

  setConfig({fileNameGeneratorClassName, maxCacheSize});

...
<Video source={{uri: convertToProxyURL(originalURL)}} />

Gradle dependency

Add this dependency to the dependencies section of app/build.gradle file.

implementation 'com.danikula:videocache:2.7.1'

Check https://github.com/danikula/AndroidVideoCache for the latest version

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.