Get all audio files android

How to Get Audio Files on Android Phone

By Avery Pacheco , 10/03/2016, updated on 04/01/2021

In the 21st century, where Internet is easily accessible, you can get audio files, music for example, on Android phone by all kinds of means. In addition to going to a CD shop and finding albums on the shelf, you can sit back at home and get songs from your computer. Now with TunesGo, it is much easier to get audio files to Android phone, such as Samsung Galaxy, LG G, Sony Xperia, HTC One, and more.TunesGo is designed to manage Android media files, including audio files, movies, and more. The program allows you to transfer audio contents like songs from the Internet. With this piece of software, you can get songs of your favorite singers, genres, etc. with a few clicks.

First of all, you need to download or record audio files, which we will explain in step 1. Then in step 2, you can transfer files downloaded/recorded to your Android phone.

Part 1. Get Android Files Online

Method 1. Download Audio Files from Music Website

First, directly search or head to a music website. You can input a link of the song you want into the browser. Then click the «Enter» button. Besides, you can head to a website like YouTube, SOUNDCLOUD, Vevo, and more.

Second, download or purchase songs online. Find songs or MTV you would like to get. Then click to download or purchase contents.

Method 2. Record Sounds with iHere

If you go on trip and tend to record some special sounds, like sound of sea, sound of animals, and so on, you can use iHere to get the audios. Just launch iHere app on the smartphone and connect to iHere machine. Thus, it is possible to record voice remotely, and then save the recordings on device or even export them out.

Part 2. Transfer Audios Downloaded/Recorded to Android Phone

Sounds and audios are store in your hard drive. Now you need to import audio files on Android phone.

Import Audio Files from PC to Android

Step 1. Connect Android to PC

You’ll need to enable USB debugging on your phone and then plug it into your computer. The program will recognize your device automatically. And here comes this interface.

Step 2. Transfer Files to Phone

You can then go to «Music» on the top and use the button «Add» to choose files or folders. Find your audios and easily have them transferred.

Now, enjoy songs on your phone. And don’t forget to back up Android songs which were downloaded or recorded just now so that you will never lose them.

Источник

MohitSharma0101 / get all audio files in kotlin android

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

fun getAllAudioFiles(): MutableList <
val songs: MutableList = ArrayList()
val selection = MediaStore.Audio.Media.IS_MUSIC + » != 0″
val projection = arrayOf(
MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.ARTIST,
MediaStore.Audio.Media.TITLE,
MediaStore.Audio.Media.DATA,
MediaStore.Audio.Media.DISPLAY_NAME,
MediaStore.Audio.Media.DURATION
)
applicationContext.contentResolver.query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
projection,
selection,
null,
null
)?.use
while (cursor.moveToNext()) <
songs.add(
cursor.getString(0)
.toString() + «||» + cursor.getString(1) + «||» + cursor.getString(2) + «||» + cursor.getString(
3
) + «||» + cursor.getString(4) + «||» + cursor.getString(5)
)
>
>
return songs
>

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

How to Get Audio Files on Android Phone

By Avery Pacheco , 10/03/2016, updated on 04/01/2021

In the 21st century, where Internet is easily accessible, you can get audio files, music for example, on Android phone by all kinds of means. In addition to going to a CD shop and finding albums on the shelf, you can sit back at home and get songs from your computer. Now with TunesGo, it is much easier to get audio files to Android phone, such as Samsung Galaxy, LG G, Sony Xperia, HTC One, and more.TunesGo is designed to manage Android media files, including audio files, movies, and more. The program allows you to transfer audio contents like songs from the Internet. With this piece of software, you can get songs of your favorite singers, genres, etc. with a few clicks.

First of all, you need to download or record audio files, which we will explain in step 1. Then in step 2, you can transfer files downloaded/recorded to your Android phone.

Part 1. Get Android Files Online

Method 1. Download Audio Files from Music Website

First, directly search or head to a music website. You can input a link of the song you want into the browser. Then click the «Enter» button. Besides, you can head to a website like YouTube, SOUNDCLOUD, Vevo, and more.

Second, download or purchase songs online. Find songs or MTV you would like to get. Then click to download or purchase contents.

Method 2. Record Sounds with iHere

If you go on trip and tend to record some special sounds, like sound of sea, sound of animals, and so on, you can use iHere to get the audios. Just launch iHere app on the smartphone and connect to iHere machine. Thus, it is possible to record voice remotely, and then save the recordings on device or even export them out.

Part 2. Transfer Audios Downloaded/Recorded to Android Phone

Sounds and audios are store in your hard drive. Now you need to import audio files on Android phone.

Import Audio Files from PC to Android

Step 1. Connect Android to PC

You’ll need to enable USB debugging on your phone and then plug it into your computer. The program will recognize your device automatically. And here comes this interface.

Step 2. Transfer Files to Phone

You can then go to «Music» on the top and use the button «Add» to choose files or folders. Find your audios and easily have them transferred.

Now, enjoy songs on your phone. And don’t forget to back up Android songs which were downloaded or recorded just now so that you will never lose them.

Источник

MohitSharma0101 / get all audio files in kotlin android

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters

fun getAllAudioFiles(): MutableList <
val songs: MutableList = ArrayList()
val selection = MediaStore.Audio.Media.IS_MUSIC + » != 0″
val projection = arrayOf(
MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.ARTIST,
MediaStore.Audio.Media.TITLE,
MediaStore.Audio.Media.DATA,
MediaStore.Audio.Media.DISPLAY_NAME,
MediaStore.Audio.Media.DURATION
)
applicationContext.contentResolver.query(
MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
projection,
selection,
null,
null
)?.use
while (cursor.moveToNext()) <
songs.add(
cursor.getString(0)
.toString() + «||» + cursor.getString(1) + «||» + cursor.getString(2) + «||» + cursor.getString(
3
) + «||» + cursor.getString(4) + «||» + cursor.getString(5)
)
>
>
return songs
>

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Get all audio files android

Android smartphones offer amazing audio capabilities.

Following table shows a simplified version of the supported Android audio formats. There are many special rules and exceptions depending on device.

  • Y indicates encoding or decoding is available (all SDK versions) for a codec.
  • N indicates encoding is not available for a codec.

It can get confusing with all of the audio APIs and classes in Android. Let’s break it down. Following table summarizes the classes and APIs for Android audio. As you can see, many of these APIs have been around since the beginning of Android with API of level 1. Others have been added into Android more recently.

Name Description API Level
AudioTrack Low-level API, not meant to be real time. Used in most audio apps. Manages and plays a single audio resource for Java applications. Streaming/decoding of PCM audio buffers to the audio sink for playback by «pushing» the data to the AudioTrack object. Supports .wav playback. 22 Low
AudioRecord Manages the audio resources for Java applications to record audio from the hardware by «pulling» (reading) the data from the AudioRecord object. Can set rate, quality, encoding, channel config. 22 Low
AudioManager AudioManager provides access to volume and ringer mode control. 1
MediaPlayer MediaPlayer class can be used to control playback of audio/video files and streams. Playback control of audio/video files and streams is managed as a state machine. 1 High
MediaRecorder High-level API used to record audio and video. The recording control is based on a simple state machine. Does not support .wav or .mp3. Generally better to use Audio Record for more flexibility. 18 High
MediaStore The media provider contains metadata for all available media on both internal and external storage devices. 1
MediaFormat MediaFormat is useful to read encoded files and every detail that is connected to the content. The format of the media data is specified as string/value pairs. Keys common to all audio/video formats. 16
MediaCodec MediaCodec class can be used to access low-level media codecs, such as encoder/decoder components. It is part of the Android low-level multimedia support infrastructure (normally used together with MediaExtractor, MediaSync, MediaMixer, MediaCrypto, MediaDrm, Image, Surface, and AudioTrack). Low
SoundPool SoundPool uses the MediaPlayer service to decode the audio into a raw 16-bit PCM stream and play the sound with very low latency, helping the CPU decompression effort. Multiple audio streams at once. 8 High
AudioFormat The AudioFormat class is used to access a number of audio formats and channel configuration constants that can be used in AudioTrack and AudioRecord. 8
TextToSpeech Synthesizes speech from text for immediate playback or to create a sound file. The constructor for the TextToSpeech class, using the default TTS engine. 4/21
SpeechRecognition This class provides access to the speech recognition service. The implementation of this API is likely to stream audio to remote servers to perform speech recognition. 8
MediaExtractor MediaExtractor facilitates extraction of demuxed, typically encoded, media data from a data source. Reads bytes from the encoded data whether it is an online stream, embedded resources, or local files. 16

The high-level APIs MediaPlayer , MediaRecorder and SoundPool are very useful and easy to use when you need to play and record audio without the need for low level controls. The low-level APIs AudioTrack and AudioRecord are excellent when you need low-level control over playing and recording audio.

As with most of the functions available on the Android platform, there is almost always more than one way to accomplish a given task. Audio is no exception. Following figure shows the various classes and APIs you can employ to accomplish common audio tasks.

No discussion on audio would be complete without talking about latency. Audio latency has been one of the most annoying issues on the entire platform.

Android developers are second-class citizens when it comes to audio latency on our mobile platform. Android audio latency has seen improvements but still lags other platforms. The most recent significant improvements include

  • OpenSL supported was added on Android 2.3+.
  • USB Audio is included in Android 5.0+ (API 21), but is not yet supported by most devices.

If you want to play audio in your Android apps, there are three APIs to choose from. You need to choose the approach that best matches your needs.

  • MediaPlayer . Streams and decodes in real time for local or remote files. Good for long clips and applications such as background music. More CPU and resource intensive. Relatively long initialization time. MediaPlayer is a state machine!
  • SoundPool . Good for short audio effects or clips. Stored uncompressed in memory, 1MB limit. Clips must be fully loaded before playing. Supports volume and speed control, looping, simultaneous sounds, priorities.
  • AudioTrack . Lowest-level audio API on Android. Provides a channel you can configure. Push and pull byte data to the channel. Configure rate, samples, audio format, etc. You can decode audio in unsupported formats.

In summary, MediaPlayer is the good general-purpose class to play a file, SoundPool is well suited for short audio effects, and AudioTrack lets you get into the low-level audio configurations.

OPEN SL ES was included in Android starting at version 2.3. AudioTrack and AudioRecord APIs make use of OPEN SL ES.

MediaPlayer has a lot of functionality and yet it is pretty simple to just play simple sounds. Once you generate your audio URI from the resourceID , you just start the MediaPlayer . The code is shown below. Notice that it is a simple process to invoke the .setDataSource , .prepare , and .start methods on the MediaPlayer object.

Recall that SoundPool is ideal when you need to play short sounds.

Setup for SoundPool is a little more involved than with MediaPlayer because you have to load your sound, which can take a bit of time, so you use a listener to know when it is ready.

Once loaded, the onLoadComplete method will be triggered and you can then use the .play method to play the sound.

Notice the extra control you get on Priority, Volume, Repeat, and Frequency. This is one of the advantages for SoundPool . See the following key code:

AudioTrack is the low-level API for playing audio. The PlaySound function shown below uses AudioTrack to play the sound with soundID . Notice that AudioTrack is run on a thread.

Inside the thread, the first thing you do is set up the sample rate and buffer size parameters. Remember to match the buffer size and sample rate for your device. In the code below, the buffer size is automatically calculated using the .getMinBufferSize method, while the sample rate is specified directly as 44,100 Hz.

You then invoke the .play method on the object and then invoke the .write method on the AudioTrack object to copy the raw PCM audio data to the object.

You can see this is a much lower level approach to producing audio. But, this ability to directly read and write buffers to the audio hardware gives you a lot of power including the ability to encode and decode.

For example, you may have an .mp3 song that has a very long duration. What happens if you try to play it using SoundPool ? You will see that it is truncated after only a few seconds of playing. This is due to the SoundPool limitations with file size.

What happens if you try to play .mp3 files with AudioTrack ? You will see this leads to unhandled exceptions, as AudioTrack only works with raw PCM data.

Playing Audio with a Background Service

For playing background music in your apps, the background service is the best architecture. This architecture allows you to play long-running music tracks in the background while performing other more critical operations in the foreground.

Following app plays the track audio.mp3 in the background. The song file is stored locally in the /res/raw folder.

Once the app is launched, the song will begin to play. You can see there are some very basic controls available, including Play and Pause buttons.

There is also an undocumented feature that allows you to skip forward in the track. The skip forward can be accomplished by long-pressing the Pause button. Each time you long-press the Pause button, the track will skip forward 30 seconds. This type of function is often implemented by providing a SeekBar with seek forward and seek backward buttons to move the position within the track.

The project contains an activity MainActivity.java , and a service MusicService.java .

You need to register your service in the AndroidManifest.xml file:

Within the activity, three steps are required to interface with the service that will be running in the background.

  1. Bind the service to the activity.
  2. Start and connect to the service.
  3. Control the service from the activity.

The following code shows how the three steps are accomplished:

The services .resumeMusic and .pauseMusic methods are used within the activity to control the playing of the song by the service when the corresponding buttons are pressed.

Once you have the service defined in the AndroidManifest.xml, implementing the service is fairly straightforward.

Inside the service, you use MediaPlayer to play the song. It is the best choice for playing long audio files in a background service. Using MediaPlayer , you just need to create the object and specify the song you wish to play. Notice that there are a couple of extra methods you are using to set looping and volume controls.

With the service bound to the activity, you are free to control the playing of the song at any point during the lifecycle of the activity.

Following is MainActivity.

Following is a layout.

It is not always optimal to load up your app with audio samples. This is where audio synthesis comes into play. Pure Data and Csound are open source visual programming languages for sound synthesis and they run well on Android.

On Android, there are now three choices:

  • Pure Data. Excellent stable library ported to Android by Google. Recommended as a general purpose synthesis engine for Android.
  • Csound. Powerful synthesis engine. Higher learning curve and not quite as light a resource footprint as Pure Data, but can produce some amazing sounds. Chosen as the audio engine for the OLPC (One Laptop Per Child) initiative.
  • Supercollider. An excellent choice for live coding. The Android library is not very stable at this time. It is an excellent synthesis engine, but unfortunately at this time there are just not enough Android resources available for me to recommend it.

Источник

Читайте также:  The lost vikings для андроида
Оцените статью