Anroid Call Recorder
Android incomig and outgoing call recorder at any time.
How to Use
callRecord = new CallRecord.Builder(this)
.setRecordFileName("RecordFileName")
.setRecordDirName("RecordDirName")
.setRecordDirPath(Environment.getExternalStorageDirectory().getPath()) // optional & default value
.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB) // optional & default value
.setOutputFormat(MediaRecorder.OutputFormat.AMR_NB) // optional & default value
.setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION) // optional & default value
.setShowSeed(true) // optional & default value ->Ex: RecordFileName_incoming.amr || RecordFileName_outgoing.amr
.build();
callRecord.startCallReceiver();
OR
callRecord = CallRecord.init(this);
Stop CallRecord
callRecord.stopCallReceiver();
If you wish run in Service;
callRecord = new CallRecord.Builder(this)
.setRecordFileName("RecordFileName")
.setRecordDirName("RecordDirName")
.setRecordDirPath(Environment.getExternalStorageDirectory().getPath()) // optional & default value
.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB) // optional & default value
.setOutputFormat(MediaRecorder.OutputFormat.AMR_NB) // optional & default value
.setAudioSource(MediaRecorder.AudioSource.VOICE_COMMUNICATION) // optional & default value
.setShowSeed(true) // optional & default value ->Ex: RecordFileName_incoming.amr || RecordFileName_outgoing.amr
.buildService();
callRecord.startCallRecordService();
Optimize
If you wish stop save CallRecord file;
callRecord.disableSaveFile();
and
callRecord.anableSaveFile();
If you wish change save file name after initialize CallRecorder,
callRecord.changeRecordFileName("NewFileName");
or
callRecord.changeRecordDirName("NewDirName");
or
callRecord.changeRecordDirPath("NewDirPath");
Installation
Gradle
Add it as a dependency in your app's build.gradle file
compile 'com.aykuttasil:callrecord:1.2.1'
Last Release Summarize
You can enable/disable to phone number for record file name
- .setShowPhoneNumber(true) // optional & default value
callRecord = new CallRecord.Builder(this)
.setRecordFileName("RecordFileName")
.setRecordDirName("RecordDirName")
.setShowSeed(true) // optional & default value ->Ex: RecordFileName_incoming.amr || RecordFileName_outgoing.amr
.setShowPhoneNumber(true) // optional & default value
.build();
Custom CallRecordReceiver
callRecord.changeReceiver(new MyCallRecordReceiver(callRecord));
Sample
You can see sample project in app folder.
License
Copyright 2016 aykuttasil - Aykut Asil
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.