Giter Site home page Giter Site logo

linecode / omrecorder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kailash09dabhi/omrecorder

0.0 0.0 0.0 438 KB

A Simple Pcm / Wav audio recorder with nice api. https://play.google.com/store/apps/details?id=com.kingbull.omrecorder

License: Apache License 2.0

Java 100.00%

omrecorder's Introduction

Build Status Download Android Arsenal

Om Recorder

Logo

A Simple Pcm / Wav audio recorder with nice api.

  • Record Pcm audio
  • Record Wav audio
  • Configure audio source to have desired output
  • Record with pause / resume feature

Get it on Google Play

Add these permissions into your AndroidManifest.xml and request for them in Android 6.0+

<uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  recorder = OmRecorder.wav(
        new PullTransport.Default(mic(), new PullTransport.OnAudioChunkPulledListener() {
          @Override public void onAudioChunkPulled(AudioChunk audioChunk) {
            animateVoice((float) (audioChunk.maxAmplitude() / 200.0));
          }
        }), file());

For Skip Silence

  // FOR SKIP SILENCE     
 recorder = OmRecorder.wav(
        new PullTransport.Noise(mic(),
            new PullTransport.OnAudioChunkPulledListener() {
              @Override public void onAudioChunkPulled(AudioChunk audioChunk) {
                animateVoice((float) (audioChunk.maxAmplitude() / 200.0));
              }
            },
            new WriteAction.Default(),
            new Recorder.OnSilenceListener() {
              @Override public void onSilence(long silenceTime) {
                Log.e("silenceTime", String.valueOf(silenceTime));
                Toast.makeText(WavRecorderActivity.this, "silence of " + silenceTime + " detected",
                    Toast.LENGTH_SHORT).show();
              }
            }, 200
        ), file()
    );
      
 @NonNull private File file() {
    return new File(Environment.getExternalStorageDirectory(), "demo.wav");
  }
  

Configure Audio Source

  return new PullableSource.Default(
         new AudioRecordConfig.Default(
             MediaRecorder.AudioSource.MIC, AudioFormat.ENCODING_PCM_16BIT,
             AudioFormat.CHANNEL_IN_MONO, 44100
         )
     );
     
   To Enable NoiseSuppresor (android.media.audiofx.NoiseSuppressor)
   
   return new PullableSource.NoiseSuppressor(
          new PullableSource.Default(
              new AudioRecordConfig.Default(
                  MediaRecorder.AudioSource.MIC, AudioFormat.ENCODING_PCM_16BIT,
                  AudioFormat.CHANNEL_IN_MONO, 44100
              )
          )
      );   
      
   To Enable AutomaticGainControl (android.media.audiofx.AutomaticGainControl)
   
   return new PullableSource.AutomaticGainControl(
            new PullableSource.Default(
                new AudioRecordConfig.Default(
                    MediaRecorder.AudioSource.MIC, AudioFormat.ENCODING_PCM_16BIT,
                    AudioFormat.CHANNEL_IN_MONO, 44100
                )
            )
        );    
        
   and if you want both NoiseSuppressor & AutomaticGainControl :-
   
   return new PullableSource.AutomaticGainControl(
           new PullableSource.NoiseSuppressor(
               new PullableSource.Default(
                   new AudioRecordConfig.Default(
                       MediaRecorder.AudioSource.MIC, AudioFormat.ENCODING_PCM_16BIT,
                       AudioFormat.CHANNEL_IN_MONO, 44100
                   )
               )
           )
       );
       

Start & Stop Recording

    recorder.startRecording();
    recorder.stopRecording();

Pause & Resume Recording

    recorder.pauseRecording();
    recorder.resumeRecording();

For documentation and additional information see the website.

Download

compile 'com.kailashdabhi:om-recorder:1.1.5'

Donations

This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!

PayPal

  • Donate $7: Thank's for creating this project, here's a coffee (or some beer) for you!
  • Donate $10: Wow, I am stunned. Let me take you to the movies!
  • Donate $16: I really appreciate your work, let's grab some lunch!
  • Donate $25: That's some awesome stuff you did right there, dinner is on me!
  • Donate $52: I really really want to support this project, great job!
  • Donate $97: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
  • Donate $2500: Go buddy, buy Macbook Pro for yourself! Of course, you can also choose what you want to donate, all donations are awesome!

Contributing Code

If you would like to help provide the other format to be recorded then please implement the WriteAction interface to provide mp3, amr,etc and then create pull request.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

Copyright 2017 Kailash Dabhi (Kingbull Technology)

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.

omrecorder's People

Contributors

kailash09dabhi avatar ultraklon avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.