Giter Club home page Giter Club logo

rtsplibrary's Introduction

RtspLibrary

Android library based on FFMpeg for playing given RTSP endpoint.

Pipeline

  1. Open RTSP Endpoint
  2. Find Video Stream
  3. Read Frame
  4. Convert to RGB
  5. Invoke Callback
  6. Java Interface

Setup

  1. In root build.gradle:
allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}
  1. In target module build.gradle
dependencies {
  compile 'com.github.potterhsu:RtspLibrary:v1.0'
}

Usage

  1. Initialize
ImageView ivPreview = (ImageView) findViewById(R.id.ivPreview);
RtspClient rtspClient = new RtspClient(new NativeCallback() {
    @Override
    public void onFrame(final byte[] frame, final int nChannel, final int width, final int height) {
        ivPreview.post(new Runnable() {
            @Override
            public void run() {
                int area = width * height;
                int pixels[] = new int[area];
                for (int i = 0; i < area; i++) {
                    int r = frame[3 * i];
                    int g = frame[3 * i + 1];
                    int b = frame[3 * i + 2];
                    if (r < 0) r += 255;
                    if (g < 0) g += 255;
                    if (b < 0) b += 255;
                    pixels[i] = Color.rgb(r, g, b);
                }
                Bitmap bmp = Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
                ivPreview.setImageBitmap(bmp);
            }
        });
    }
});
  1. Play
new Thread(new Runnable() {
    @Override
    public void run() {
        rtspClient.play("rtsp://endpoint/to/rtsp");
    }
}).start();
  1. Stop and release
rtspClient.stop();
rtspClient.dispose();

Demo

Clone the repository and run.

rtsplibrary's People

Contributors

potterhsu avatar

Watchers

 avatar

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.