An extended ImageView that can stream MJPEG videos
IPCamView
An extended ImageView that can stream MJPEG videos.
Usage:
Adding the depencency
Add this to your root build.gradle file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Now add the dependency to your app build.gradle file:
implementation 'com.github.marcoscgdev:IPCamView:1.0.0'
Loading a MJPEG stream
- XML
<com.marcoscg.ipcamview.IPCamView
android:id="@+id/ip_cam_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitCenter"
app:url="YOUR_STREAM_URL"
app:interval="1500"/>
- Java
IPCamView ipCamView = findViewById(R.id.ip_cam_view);
ipCamView.setUrl("http://webcam.abaco-digital.es/zuda/image2.jpg");
ipCamView.setInterval(1000); // In milliseconds, default 1000
ipCamView.start();
NOTE:
The start() method is required in order to start the MJPEG stream. You can also stop the stream by calling the stop() method.
See the sample project to clarify any queries you may have.