Skip to content

Koch-AG/android-mjpeg-view

 
 

Repository files navigation

android-mjpeg-view

Android View for displaying MJPEG stream.

  • This view only requires a specific http url.
  • Supported image scaling methods are fit width, fit height, original size, stretch and best fit.
  • Only boundary is used to separate each jpeg image (each frame) from a stream. Content-length is ignored.
  • A boundary must be specified in an HTTP headr (Content-type). Otherwise a default boundary pattern will be used.

Basic usage

  1. Include a library in to your project by adding this to app level build.gradle file.
dependencies {
    // other dependencies
    
    implementation 'com.github.perthcpe23:mjpegviewer:1.0.7'
}
  1. Add a view to XML layout:
<com.longdo.mjpegviewer.MjpegView
    android:id="@+id/mjpegview"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
  1. Specify mjpeg source and start streaming
MjpegView viewer = (MjpegView) findViewById(R.id.mjpegview);
viewer.setMode(MjpegView.MODE_FIT_WIDTH);
viewer.setAdjustHeight(true);
viewer.setUrl("http://bma-itic1.iticfoundation.org/mjpeg2.php?camid=test");
viewer.startStream();

//when user leaves application
viewer.stopStream();

Contact

[email protected]

About

Custom View to display MJPEG

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%