Library that helps you to implement screen recorder(with sound) functionality easily
First Add jitpack.io on yout root build.gradle:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
jcenter()
}
}Add the following dependency on your app's build.gradle:
compile 'com.github.itsnothingg:EasyScreenRecorder:1.0.0'First of all, make sure you have these permissions granted in order for this lib to work.
Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.RECORD_AUDIOFirst thing you'll have to do is to grant media projection permission by using the following code
MediaProjectionManager mMediaProjectionManager = (MediaProjectionManager) getSystemService(Context.MEDIA_PROJECTION_SERVICE);
startActivityForResult(mMediaProjectionManager.createScreenCaptureIntent(), REQUEST_CODE);this will call permission dialog, and return result on onActivityResult
Then on onActivityResult initialize EasyScreenRecorder instance
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_CODE) {
if (resultCode != RESULT_OK) {
return;
}
MediaProjection mediaProjection = mMediaProjectionManager.getMediaProjection(resultCode, data);
EasyScreenRecorder mScreenRecorder = new EasyScreenRecorder([yourContext], [pathToYourMP4File], mediaProjection);
}
}Now you are ready to use these functions
mScreenRecorder.start(); // start recording
mScreenRecorder.pause(); // pause recording
mScreenRecorder.resume(); // resume recording
mScreenRecorder.stop(); // finish and release recording
File videoFile = new File(mScreenRecorder.getPath()); // after recording has stopped, you can play with your file.There are few thing you can customize like:
mScreenRecorder.recordAudio(false); // don't record audio
mScreenRecorder.setFrameRate(30); // set frame rate to 30. (default is 25)
mScreenRecorder.setBitrate(800 * 1000); // change bitrate (default is auto-calculated)please take a look at sample module for more details.
copyright of java files under encoder package belongs to saki t_saki@serenegiant.com
most of the sources are from https://github.com/saki4510t/AudioVideoRecordingSample repo.
it's great repo so please take a look if you are interested in MediaCodec/MediaMuxer.
