65.9K
CodeProject is changing. Read more.
Home

Playing audio (mp3) File in Xamarin.Forms

Mar 26, 2016

CPOL

1 min read

viewsIcon

33050

Playing audio (mp3) File in Xamarin.Forms

Recently, I had a requirement to play mp3 file in one of my Xamarin Forms application. When I searched over the internet, I came to know that currently Xamarin Forms doesn’t support playing audio files out the box. But as every Xamarin Forms developer knows, we can achieve any native functionality using dependency service so I thought why not give this a try. :) So here it goes.

We would require to create an Interface which will be implemented in platform specific project, I named it as IAudio.cs and the code for the same is as follows:

using System;
namespace AudioPlayEx
{
	public interface IAudio
	{
		void PlayAudioFile(string fileName);
	}
}

Now, we need to write the class which will implement this interface in platform specific code. I named the class as AudioService in both platforms.

The Android project class will be like this:

using System;
using Xamarin.Forms;
using AudioPlayEx.Droid;
using Android.Media;
using Android.Content.Res;

[assembly: Dependency(typeof(AudioService))]
namespace AudioPlayEx.Droid
{
	public class AudioService: IAudio
	{
		public AudioService ()
		{
		}

		public void PlayAudioFile(string fileName){
			var player = new MediaPlayer();
			var fd = global::Android.App.Application.Context.Assets.OpenFd(fileName);
			player.Prepared += (s, e) =>
			{
				player.Start();
			};
			player.SetDataSource(fd.FileDescriptor,fd.StartOffset,fd.Length);
			player.Prepare();
		}
	}
}

Make sure that the audio files you are planning to play are copied in ‘Assets’ folder, then only the above code will work.

And the iOS project class will be like this:

using System;
using Xamarin.Forms;
using AudioPlayEx;
using AudioPlayEx.iOS;
using System.IO;
using Foundation;
using AVFoundation;

[assembly: Dependency (typeof (AudioService))]
namespace AudioPlayEx.iOS
{
	public class AudioService : IAudio
	{
		public AudioService ()
		{
		}

		public void PlayAudioFile(string fileName)
		{
			string sFilePath = NSBundle.MainBundle.PathForResource
			(Path.GetFileNameWithoutExtension(fileName), Path.GetExtension(fileName));
			var url = NSUrl.FromString (sFilePath);
			var _player = AVAudioPlayer.FromUrl(url);
			_player.FinishedPlaying += (object sender, AVStatusEventArgs e) => {
				_player = null;
			};
			_player.Play();
		}
	}
}

In case of iOS project, you will need to copy the audio files to ‘Resources’ folder.

And finally, we will use the following code in our PCL/shared project in order to play the audio file.

	DependencyService.Get<IAudio>().PlayAudioFile("MySong.mp3");

You can call this code in the click of a button event or any other event in your PCL/Shared project. In the above example, I have played an mp3 file but you can use the same code to play any audio file supported by the platform, for example .aif (only in iOS), mp4, wav, etc.

You can get the example source code from here.

Happy coding! :)