Git Product home page Git Product logo

rplayer's Introduction

RPlayer

Flutter RTSP low latency video player for Android TV only. This player is intended to use FFmpeg under the hood to decode RTSP streams and Android SurfaceView to draw in native code. If time permits, I'll try to use OpenGLES as its backend renderer and OpenSLES as its audio solution. For now I only achieved video decode part.

Minimal example

@override
void initState() {
  super.initState();
  player.startPlayWhenReady('rtsp://admin:[email protected]:8554/live');
}

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: const Text('RPlayer Video Test Page'),
    ),
    body: RPlayerView(
      player: player,
      width: MediaQuery.of(context).size.width,
      height: 300,
    ),
  );
}

@override
void dispose() {
  player.dispose();
  super.dispose();
}

Design

RPlayerConfig

RPlayerConfig configures how videos will be played. You could only create a RPlayerConfig instance like this:

var rplayerConfig = RPlayerConfig()
  ..retryTimesOnDisconnect = 10
  ..retryDelayInMilliseconds = 2000
  ..preferHardcodec = 1;
  • retryTimesOnDisconnect: Determine how many times the player will retry to connect when stream is closed.
  • retryDelayInMilliseconds: Determine how long (in milliseconds) before the player make next reconnection when stream is closed.
  • preferHardcodec: If set to true, the player will try to ask for a hardcodec first before playing video if ROM permits. If failed to allocate hardcodec, player will fallback to use a softcodec to play video.

RPlayerState

RPlayerState exposes the inner state of RPlayer. The states are as follows:

  • INIT:
  • STOPPED:
  • BUFFERING:
  • PLAYING:

rplayer's People

Contributors

autokaka avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

rplayer's Issues

fps is wrong

Hello. I have rtsp stream with max 20fps only but when display in example app, it said 40-50fps, that makes view not smoothly. Could you please fix it?

Failed on avformat_open_input: Connection refused

error when connecting to an rtsp video.

Running on Windows 11

Notes:
during running Gradle a warning came out:

Warning: unexpected element (uri:"", local:"base-extension"). Expected elements are <{}codename>,<{}layoutlib>,<{}api-level>

Update:
Running flutter run on Linux creates app with no such error

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.