- Android android-audio-player Libraries
- Android android-audio-player Libraries
- Android audio player library
- About
- A Step by Step Guide to Building an Android Audio Player App
- Part One – Setting up the Project.
- Step Two – Create the MediaPlayer Service
- Step Three – Constructing the MediaPlayer
- Step Four – Handling Audio Focus
- Step Five – Service Lifecycle Methods
- Step Six – Binding the Audio Player
- Step Seven – Activity Lifecycle Methods
- Extras – Loading Local Audio Files
- What is a BroadcastReceiver ?
- Lets Get Back to the Audio Player App
- Change of audio outputs (headphone removed)
- Handling Incoming Calls
- Redefine Methods
- Play New Audio Broadcast
- Register BroadcastReceiver S
- User Interactions
- Finishing Up
- Fast Forward
Android android-audio-player Libraries
Android android-audio-player Libraries
Fermata Media Player is a free, open source audio and video player with a simple and intuitive interface.
Fermata Media Player About Fermata Media Player is a free, open source audio and video player with a simple and intuitive interface. It is focused on
This app is a single word scrambler app. The app displays one scramble word at a time, and the player has to guess the word using all the letters from the scrambled word. The player scores points if the word is correct, otherwise the player can play any number of times. There are 10 words per game.
Unscramble App Starter code for Android Basics codelab — Store the data in a ViewModel Unscramble is a single player game app that displays scrambled
A radio player mobile application which streams audio from Radio Sai Global Harmony.
A radio player mobile application which streams audio from Radio Sai Global Harmony.
Odeon Music Player is a lightweight music player for Android.
Odeon 🎵 Odeon Music Player is a lightweight music player for Android. Get it on Google Play. We value your privacy, your battery life and your device
Yet Another Video Player (or YAVP) is a Video Player for Android that is based on Googles ExoPlayer.
Yet Another Video Player Yet Another Video Player (or YAVP) is a Video Player for Android that is based on Googles ExoPlayer. Who Is YAVP For? First o
Music Player — This is a basic music player built with Android Studio and Kotlin
Music Player Made by Jenny Cárdenas This is a basic music player built with Android Studio and Kotlin, it shows two views in the UI, the user can play
:sound: [Android Library] Easily generate pure audio tone of any frequency in android
Android library to easily generate audio tone in android. Generating pure tone of an specific frequency was never that easy. ZenTone does all the heav
Android has a built in microphone through which you can capture audio and store it , or play it in your phone. There are many ways to do that but with this dialog you can do all thats with only one dialog.
# Media Recorder Dialog   
audio_tagger A Flutter (Android only) plugin for editing and extracting information from your music, at the moment it only works on AAC and OGG (last
A simple android sound recorder which let’s users record audio and listen to it
Android-Sound-Recorder A simple android sound recorder which let’s users record audio and listen to it. Getting started To get started just clone or f
A sample audio app for Android
Universal Android Music Player Sample The goal of this sample is to show how to implement an audio media app that works across multiple form factors a
Button which is visible while user holds it. Main use case is controlling audio recording state (like in Telegram, Viber, VK).
HoldingButton Button which is visible while user holds it. Main use case is controlling audio recording state (like in Telegram, Viber, VK). Getting s
mpv-android is a video player for Android based on libmpv.
mpv-android is a video player for Android based on libmpv.
An extensible media player for Android
ExoPlayer ExoPlayer is an application level media player for Android. It provides an alternative to Android’s MediaPlayer API for playing audio and vi
Android/iOS video player based on FFmpeg n3.4, with MediaCodec, VideoToolbox support.
ijkplayer Platform Build Status Android iOS Video player based on ffplay Download Android: Gradle # required allprojects < repositories <
Custom Android view with video player, loader and placeholder image
VideoPlayerView Custom Android view with video player, loader and placeholder image. To stay up-to-date with news about the library Usage Here is an e
A Music Player for android that renders beautiful DNA(Visualization) of the currently playing music.
MusicDNA — A Music Player like no other A Music Player for android that makes use of the Visualizer Class for rendering a beautiful DNA (Visualization
DMPLayer is an Android music player prototype
DMPlayer DMPLayer is an Android music player prototype #License Copyright 2015 [email protected] Dibakar Mistry Licensed under the Apache License,
Vanilla Music Player for Android (abandoned). Visit https://github.com/vanilla-music/vanilla for an actively developed fork
Translating You can help translate here. If your language isn’t on the list, open an issue and I can add it. Building To build you will need: A Java c
A Free, Fully Fledged, Open-Source Music Player for Android
Turtle Player Free, Fully Fledged & Open-Source. The Music Player for Android. Turtle Player is designed to be a fun and unique app for playing your m
With MVVM Architecture pattern using Android Architecture Components This is a sample app demonstrating Youtube player animation using constraint layout
Youtube UI/UX Animation This is a sample app demonstrating Youtube UX/UI animation using ConstraintLayout.It implements the Keyframe Animation feature
YouTube Player library for Android and Chromecast, stable and customizable.
android-youtube-player android-youtube-player is a stable and customizable open source YouTube player for Android. It provides a simple View that can
Источник
Android audio player library
A simple audio player for Android that you can plugin to your apps quickly get audio playback working.
- Raw files
- Asset Files
- Custom layout
Not tested URLs
You can support us by becoming a patron on Patreon, any support is much appreciated.
Gradle Dependency (Project level)
Gradle Dependency (Module level)
You only need a JcPlayerView on your Layout Activity/Fragment. All the controls and everything else are created by the player view itself.
Find your JcPlayerView xml and.
Option 1: Just init a playlist
Option 2: Initialize an anonymous playlist with a default title for all
Option 3: Initialize an playlist with a custom title for all
Call the notification player where you want.
How can I get callbacks of player status?
You can customize the player layout by manipulating these attributes.
Please, if you liked this project or help you to do your job, support me by being a sponsor
- Set custom layouts for player.
- Add Instrumentation tests
- Add unit tests.
About
🎵 A simple audio player for Android applications.
Источник
A Step by Step Guide to Building an Android Audio Player App
This tutorial is a step by step guide to building an Android Audio app, using the best and most efficient methodologies and APIs. This is a long tutorials, so I have split it into two discrete parts if it’s too much to digest in one read:
- Building a media player in a service, important for playing media in the background.
- Interacting with the service through BroadcastReceiver s ( PLAY, PAUSE, NEXT, PREVIOUS). How to handle edge use-cases like incoming calls, change of audio outputs (e.g. removing headphones).
Part One – Setting up the Project.
Create a new Project in Android Studio and add the following permissions in the AndroidManifest.xml file.
The app needs these permissions to access media files over the internet when streaming media. Since the focus of this article is building a media player app, you need the MEDIA_CONTENT_CONTROL to control media playback. You use the READ_PHONE_STATE permission to access phone state to listen to events like incoming calls so you can stop the audio while a call is in progress.
Step Two – Create the MediaPlayer Service
The core of the Audio Player app is the media player service. The following class is an example of this service. The class has multiple MediaPlayer implementations to handle events that can happen while playing audio. The last implementation, from AudioManager.OnAudioFocusChangeListener is necessary to handle requests for AudioFocus from other apps that want to play media files.
The code above is a template of all the methods that will handle the MediaPlayer events. The only code that is complete is the binding of the Service . You need to bind this service because it interacts with the activity to get the audio files. You can lean more about bound services in the documentation.
Declare the Service in the AndroidManifest.xml file
Step Three – Constructing the MediaPlayer
The Android multimedia framework supports a variety of common media types. One key component of this framework is the MediaPlayer class, which with minimal setup you can use to play audio and video. You can find a basic example of the MediaPlayer implementation in the documentation, but you will need more than this example Service to play media. Next I will describe the necessary methods that need to be setup in the MediaPlayerService class.
Create the following global instances of MediaPlayer and the String path of the audio in the Service class.
Now initialize the mediaPlayer :
When working with media, you need to implement some functions to handle basic action for playing media. These basic functions are Play, Stop, Pause, and Resume.
First add another global variable to store the pause/resume position.
Add if statements to make sure there are no problems while playing media.
Now that you have created the initialization functions it’s time to implement the @Override methods constructed in the initial Service template. These methods are important to the MediaPlayer because all the key actions the player will perform will be called from these methods. Replace the original methods in the Service template with the following.
Note: There are more @Override methods implemented in the initial Service template. These are useful in specific MediaPlayer events, but since the focus of this tutorial is building a general purpose media player I wont implement them.
Step Four – Handling Audio Focus
For a good user experience with audio in Android, you need to be careful that your app plays nicely with the system and other apps that also play media.
To ensure this good user experience the MediaPlayerService will have to handle AudioFocus events and these are handled in the last override method, onAudioFocusChange() . This method is a switch statement with the focus events as its case: s. Keep in mind that this override method is called after a request for AudioFocus has been made from the system or another media app.
What happens in each case: ?
- AudioManager.AUDIOFOCUS_GAIN – The service gained audio focus, so it needs to start playing.
- AudioManager.AUDIOFOCUS_LOSS – The service lost audio focus, the user probably moved to playing media on another app, so release the media player.
- AudioManager.AUDIOFOCUS_LOSS_TRANSIENT – Fucos lost for a short time, pause the MediaPlayer .
- AudioManager.AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK – Lost focus for a short time, probably a notification arrived on the device, lower the playback volume.
In addition to the override methods, you need two other functions to request and release audio focus from the MediaPlayer . The following code block contains all the audio focus methods described above. I took the onAudioFocusChange() вЂs code from the Android Developer documentation and made some changes, but this code gets the job done for this example.
First add a new global variable to the Service class.
Replace the Service вЂs onAudioFocusChange() method with the following and add the functions it uses.
If you want to learn more about audio focus then SitePoint article has a great tutorial.
Step Five – Service Lifecycle Methods
In this section I will focus on the Service lifecycle. These methods are crucial to the MediaPlayer because the Service lifecycle is closely connected to the MediaPlayer s. These methods will handle the initialization and resource management for the MediaPlayer .
I have inline comments to make it easier to understand.
The onStartCommand() handles the initialization of the MediaPlayer and the focus request to make sure there are no other apps playing media. In the onStartCommand() code I added an extra try-catch block to make sure the getExtras() method doesn’t throw a NullPointerException .
Another important method you need to implement is onDestroy() . In this method the MediaPlayer resources must be released, as this service is about to be destroyed and there is no need for the app to control the media resources.
The onDestroy() method also releases audio focus, this is more of a personal choice. If you release the focus in this method the MediaPlayerService will have audio focus until destroyed, if there are no interruptions from other media apps for audio focus.
If you want a more dynamic focus control, you can request audio focus when new media starts playing and release it in the onCompletion() method, so the service will have focus control only while playing something.
Step Six – Binding the Audio Player
In this section I will cover the final steps to bind the MediaPlayerService class to the MainActivity and provide it with audio to play. You must bind the Service to the Activity so they can interact with each other.
Add the following global variables to the MainActivity class.
The first is an instance of the Service and the second Boolean value contains the status of the Service , bound or not to the activity.
To handle Service binding, add the following to the MainActivity class.
Now it’s time to play some audio. The following function creates a new instance of the MediaPlayerService and sends a media file to play, so add it to the MainActivity .
The playAudio() function is not complete. I will return to this later when sending media files to the Service with a BroadcastReceiver .
Call the playAudio() function from the Activity s onCreate() method and reference an audio file.
Step Seven – Activity Lifecycle Methods
In this section I will cover basic, but crucial implementations of the MainActivity s life-cycle methods. If you call the playAudio() function from the Activity s onCreate() method the Service will start playing, but the app can easily crash.
Add the following methods to MainActivity to fix it. All these methods do is save and restore the state of the serviceBound variable and unbind the Service when a user closes the app.
Extras – Loading Local Audio Files
A user will likely want to load audio from the actual device instead of streaming them online. You can load audio files from the device by using ContentResolver .
Create a new Java class used as an audio object. The following class contains the crucial information an audio file needs, but you can add more if necessary.
Add the permission to AndroidManifest.xml.
This is necessary to load local media files from the Android device.
In the MainActivity class create a global ArrayList of Audio objects.
To get data from the device add the following function to MainActivity . It retrieves the data from the device in ascending order.
After retrieving data from the device the playAudio() function can play it on the Service .
In MainActivity вЂs onCreate() method add the following code. Be sure to have at least one audio track the service can play or the app will crash.
If you’re ready for more, then keep reading, or this is also a good opportunity to take a quick break before continuing.
Next I will focus on user interaction with the MediaPlayerService and handling interruptions that occur while playing media like incoming calls, change of audio outputs and other functionality needed to build a complete Audio Player app.
The key component for interacting with background services is BroadcastReceiver .
What is a BroadcastReceiver ?
Android system components and apps make system wide calls through intents with the help of sendBroadcast() , sendStickyBroadcast() or sendOrderedBroadcast() methods to notify interested applications. Broadcast intents can be useful for providing a messaging and event system between application components or used by the Android system to notify interested applications about key system events. Registered BroadcastReceiver s intercept these events broadcast to the whole Android system. The BroadcastReceiver s purpose is to wait for certain events to happen and to react to these events, but a BroadcastReceiver does not react to all the incoming events, only specific events. When a BroadcastReceiver detects a matching intent it will call its onReceive() method to handle it.
You can register a BroadcastReceiver in two ways, statically in AndroidManifest.xml or dynamically by using the registerReceiver() method at runtime.
For this tutorial, the BroadcastReceiver s are dynamically created since it’s important that the MediaPlayerService listens for events only when the player is active. It’s not a good user experience if the app starts playing audio unexpectedly after an event was triggered. If you register a receiver, you must unregister it when it’s no longer needed.
Lets Get Back to the Audio Player App
For a more complete audio app I added a RecyclerView , and with the help of the loadAudio() function, loaded local audio files to the RecyclerView . I also made changes to the color scheme and layout. I wont go into detail describing the process of adding the RecyclerView to the app, but you can see the end result on GitHub.
If you want to learn more about RecyclerView , then read my article.
Another change is the playAudio() function and the Service s onStartCommand() method, but I will return to these changes later and focus on the BroadcastReceiver s events and user interaction with the Service .
Change of audio outputs (headphone removed)
In media apps it’s common that when a user removes their headphones from the jack the media stops playing.
In the MediaPlayerService class create a BroadcastReceiver that listens to ACTION_AUDIO_BECOMING_NOISY , which means that the audio is about to become вЂnoisy’ due to a change in audio outputs. Add the following functions in the service class.
The BroadcastReceiver instance will pause the MediaPlayer when the system makes an ACTION_AUDIO_BECOMING_NOISY call. To make the BroadcastReceiver available you must register it. The registerBecomingNoisyReceiver() function handles this and specifies the intent action BECOMING_NOISY which will trigger this BroadcastReceiver .
You have not yet implemented the buildNotification() , so don’t worry when it shows an error.
Handling Incoming Calls
The next functions avoid audio playing during calls, which would be a terrible user experience.
First create the following global variables in the MediaPlayerService class.
Add the following function.
The callStateListener() function is an implementation of the PhoneStateListener that listens to TelephonyManager s state changes. TelephonyManager provides access to information about the telephony services on the device and listens for changes to the device call state and reacts to these changes.
Redefine Methods
I mentioned that I changed the methods described earlier in this article. I also made changes to the way audio files are passed to the Service . The audio files are loaded from the device with the help of the loadAudio() function. When the user wants to play audio, call the playAudio(int audioIndex) function with an index of the wanted audio from the ArrayList of loaded audio files.
When calling the playAudio() function for the first time, the ArrayList is stored in SharedPreferences together with the audio index number and when the MediaPlayerService wants to play new audio it loads it from SharedPreferences . This is one way to load the Audio array to the Service , but there are others.
Open build.gradle (app) and add dependencies for the Gson library.
The following class handles Data storage.
Now it’s time to change the playAudio() function. First in the MainActivity class create a global static String .
This string sends broadcast intents to the MediaPlayerService that the user wants to play new audio and has updated the cached index of the audio they want to play. The BroadcastReceiver that handles this intent is not created yet, for now replace your old playAudio() function in the MainActivity with the following.
The audio is not passed to the Service through putExtra() , so the Service has to load the data from the SharedPreferences and this is why the onStartCommand() method needs to be rewritten. I will return to this method at the end of this tutorial to give the complete onStartCommand() implementation. For now, add the following global variables to the MediaPlayerService class.
Play New Audio Broadcast
When the MediaPlayerService is playing something and the user wants to play a new track, you must notify the service that it needs to move to new audio. You need a way for the Service to listen to these “play new Audio” calls and act on them. How? Another BroadcastReceiver . I mentioned these “play new Audio” calls in the Redefine methods section when calling the playAudio() function.
In the MediaPlayerService class add the following functions.
When intercepting a PLAY_NEW_AUDIO intent, this BroadcastReceiver loads the updated index and updates the activeAudio object to the new media and the MediaPlayer is reset to play the new audio. The buildNotification() function is not yet implemented so it shows an error.
Register BroadcastReceiver S
In the Service s onCreate() method add the registration calls for the BroadcastReceiver s.
You must unregister all the registered BroadcastReceiver s when they are not needed anymore. This happens in the Service s onDestroy() method. Replace your current onDestroy() method with the following. Again, don’t worry about the removeNotification() , it’s implemented later.
When the Service is destroyed it must stop listening to incoming calls and release the TelephonyManager resources. Another final thing the Service handles before it’s destroyed is clearing the data stored in the SharedPreferences .
User Interactions
Interacting with the MediaPlayerService is one of the key features of an audio player app, because users don’t need to play media, but also need to have control over the app. This is not as easy as it looks when working with background services because there is no user interface in background threads. Android Lollipop introduced new features, including Android MediaStyle notifications.
Notification.MediaStyle allows you to add media buttons without having to create custom notifications. In this example I will use the MediaStyle s support library, NotificationCompat.MediaStyle to support older Android versions.
To have full control over media playback in the MediaPlayerService you need to create an instance of MediaSession . MediaSession allows interaction with media controllers, volume keys, media buttons, and transport controls. An app creates an instance of MediaSession when it wants to publish media playback information or handle media keys.
To build a MediaStyle notification for this example, the MediaPlayerService will make use of MediaSession s transport controls to add notification controls and publish MetaData so the Android system know that it’s playing audio.
Before moving on, add the following variables in the MediaPlayerService class.
The String variables are used to notify which action is triggered from the MediaSession callback listener. The rest of the instances relate to the MediaSession and a notification ID to uniquely identify the MediaStyle notification.
The following functions handle the initialization of the MediaSession and setting the MetaData to an active session. An important part of the following initMediaSession() function is setting the MediaSession callbacks to handle events coming from the notification buttons.
Add the following functions in the MediaPlayerService class.
The updateMetaData() method has a Bitmap image that you need to create, so add an image to the drawable folder of the project. The Callback() override methods make use of the media player key functions described earlier. Next add the media player functions mentioned earlier to the Service .
Now the service needs a way to build the MediaStyle notification, but the service needs a way to keep track of its playback status. For this create a new enumeration.
In your project create the following class.
Now the service has a way to keep track of its playback status add the following function for building the notifications.
When called, this function will build the notification according to the PlaybackStatus .
The main purpose of the buildNotification() function is building the notification UI and setting up all the events that will trigger when a user clicks a notification button. You generate the actions through PendingIntent s from the playbackAction() function. Add it to the MediaPlayerService .
Now that the service generates actions when the user clicks on the notification buttons it needs a way to handle these actions. Add the following action to the service.
This function figures out which of the playback actions is triggered and executes one of the MediaSession callback methods through its transport controls. The callback methods, implemented in the initMediaSession() function handle all the MediaPlayer actions.
Finishing Up
All that is left is to define the services onStartCommand() method. This method will handle the initialization of the MediaSession , the MediaPlayer , loading the cached audio playlist and building the MediaStyle notification. In the service class replace the old onStartCommand() method with the following.
In the initMediaPlayer() function replace the setDataSource() call with the following line
That sums it up for playing audio in a background service in Android. Now run the app and play audio the right way. Here is an example how my sample app looks. I added a RecyclerView to the app and the layout might look different, but the notification view and controls are the same.
Fast Forward
And that’s it! I understand there was a lot to absorb and understand in this tutorial, so if you have any questions or comments, please let me know below.
Источник