Audio Wife

General

Category
Free
Tag
Audio
License
MIT License
Registered
Jul 5, 2014
Favorites
5
Link
https://github.com/jaydeepw/audio-wife
See also
Dhwani
RecordWave
PlayerHater
Music visualization
Pasta-Music

Additional

Language
Java
Version
v1.1.0 (Jul 13, 2014)
Created
May 3, 2014
Updated
Apr 17, 2017 (Retired)
Owner
JW (jaydeepw)
Contributor
JW (jaydeepw)
1
Activity
Badge
Generate
Download
Source code

Index

Audio Wife - Introduction

A simple themable & integrable audio player library for Android. Helps you have an Audio Controller for your Audio Player UI. Have your own UI and pass the instance of UI controls like Play button, Pause button, Seekbar etc to AudioWife and rest is taken care of.

your_player.xml

Demo

Caution!

Eclipse library project structure has been dropped. If you wish to use this library in your eclipse IDE, please checkout eclipse-develop. No further development will be done or merged into eclipse-develop branch.

Why this project?

  1. A simple native audio player API wrapper
  2. Others found were complex & provided no way to be integrate as library
  3. Some even involved compilation using Android NDK

Features

  1. Provides default UI truly making it an integrable player.
  2. Ability to set multiple custom click handlers to play and pause buttons.
  3. No dependencies.

Including in your project

AudioWife is presented as an Android library project.

You can include this project by referencing it as a library project in Eclipse or ant.

This project has NO DEPENDENCIES.

Download

Gradle:

{
 compile 'net.the4thdimension:audio-wife:1.0.3'
}

Requires Android 4.0+.

Getting started

Permission required to play audio

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

##Using default player UI

AudioWife comes with a simple default player UI that you can use right away. This is the simplest and fastest way to get AudioWife working.

// mPlayerContainer = Parent view to add default player UI to.
AudioWife.getInstance().init(mContext, uri)
  .useDefaultUi(mPlayerContainer, getLayoutInflater());

##Using custom player UI

You can initialize the custom player controls of your UI using AudioWife

// initialize the player controls
mPlayMedia = findViewById(R.id.play);
mPauseMedia = findViewById(R.id.pause);
mMediaSeekBar = (SeekBar) findViewById(R.id.media_seekbar);
mRunTime = (TextView) findViewById(R.id.run_time);
mTotalTime = (TextView) findViewById(R.id.total_time);

// AudioWife takes care of click handler for play/pause button
AudioWife.getInstance()
   .init(mContext, uri)
   .setPlayView(mPlayMedia)
   .setPauseView(mPauseMedia)
   .setSeekBar(mMediaSeekBar)
   .setRuntimeView(mRunTime)
   .setTotalTimeView(mTotalTime);

// to explicitly pause
AudioWife.getInstance().pause();


// when done playing, release the resources
AudioWife.getInstance().release();

##Add custom listeners

To extend the capabilities of AudioWife, custom click listeners can be attached. Refer to source documentation for more details.

AudioWife.getInstance().addOnCompletionListener( new MediaPlayer.OnCompletionListener() {
 
 @Override
 public void onCompletion(MediaPlayer mp) {
  Toast.makeText(getBaseContext(), "Completed", Toast.LENGTH_SHORT)
    .show();
  // do you stuff
 }
});

AudioWife.getInstance().addOnPlayClickListener(new View.OnClickListener() {
 
 @Override
 public void onClick(View v) {
  Toast.makeText(getBaseContext(), "Play", Toast.LENGTH_SHORT)
    .show();
  // Lights-Camera-Action. Lets dance.
 }
});

AudioWife.getInstance().addOnPauseClickListener(new View.OnClickListener() {
 
 @Override
 public void onClick(View v) {
  Toast.makeText(getBaseContext(), "Pause", Toast.LENGTH_SHORT)
    .show();
  // Your on audio pause stuff.
 }
});

Why the name 'AudioWife'?

This relates with another Android AudioRecorder library project that is coming soon. The name AudioWife comes from an analogy of a married couple where the wife is an active Player, hence AudioWife for Audio Player and husband being a Listener hence AudioHusband for Audio Recorder.

Later found that Audio Recorder Library project already exists for Android. You can find it here.

Contributing

Please fork this repository and contribute back using pull requests.

Please follow Android coding style guide

Developed by

Credits

Official Android MediaPlayer Dev Docs

Android MediaPlayer Tutorial

License

The MIT License (MIT)

Copyright (c) 2014 Jaydeep

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.