Skip to content

FunnyDevs/rtmp-rtsp-stream-client-java-recordcontrollers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rtmp-rtsp-stream-client-java-recordcontrollers

Some RecordControllers to be used with https://github.com/pedroSG94/rtmp-rtsp-stream-client-java

XugglerReccordController

It can record mp4 video using Xuggler library (based on FFMPEG).

To use it

allprojects {
  repositories {
    maven {
      url 'https://dl.cloudsmith.io/public/olivier-ayache/xuggler/maven/'
    }
  }
}
dependencies {
  implementation 'xuggle:xuggle-xuggler-android-all:5.7.0-SNAPSHOT'
}

FlvReccordController

As the name suggests, it is used to record FLV videos.

To use it

allprojects {
  repositories {
    jcenter()
  }
}
dependencies {
  implementation 'com.laifeng:sopcast-sdk:1.0.4'
}

Thanks