Jump to content

Tutorial: Playing MP3 files with C#

- - - - -

  • Please log in to reply
23 replies to this topic

#1
ArekBulski

ArekBulski

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,376 posts
Hello to everyone! This tutorial will explain how to play MP3 files as songs, without any external assemblies or SDKs. I dedicate this tutorial to Thomas Morgan, a new but not unwelcomed member of our forum. And to all who seek the power of .NET. :)

There are several technologies available

There are multiple approaches to playing audio multimedia as it seems. I could try to embed a Windows Media Player using one of the SDKs. But that would be something completely new to me. I decided to leave it for another time.

I could use Managed DirectX, too. This one is very powerful and easy to use, using the AudioVideoPlayback namespace. I very much like Managed DirectX, but not every system will be able to run my program. You need to install both .NET Framework and DirectX in correct order to be able to run it. This becomes a problem, from wider perspective.

This tutorial will be using mciSendString WinAPI function, through P/Invoke. Therefore it won't run on Mono. Honestly I hate WinAPI functions, but if that is the easiest way then let's do it.


Playing MP3 songs using mciSendString function

http://forum.codecal...=1&d=1251875231

The whole code is just three methods long. Notice that user has to select a song to be able to press Play button. And he needs to play it to be able to stop it. It will easily prevent user from clicking buttons he should not click yet. Here is a simple file selection dialog code:

if (openFileDialog1.ShowDialog() == DialogResult.OK)

{

    FilenameTextbox.Text = openFileDialog1.FileName;


    button3.Enabled = true; //So you dont play no file. lol

}


Then we need to add a P/Invoke declaration to main form's class. Afterwards it is just calling the method few times. If Windows Media Player is already playing a song then they will overlap. No exception but what noise heh. Here is the P/Invoke and the code playing and stopping the song:


[DllImport("winmm.dll")]

private static extern long mciSendString(string strCommand, StringBuilder strReturn, int iReturnLength, IntPtr hwndCallback);



private void button3_Click(object sender, EventArgs e)

{

    mciSendString("open \"" + FilenameTextbox.Text + "\" type mpegvideo alias MediaFile", null, 0, IntPtr.Zero);

    mciSendString("play MediaFile", null, 0, IntPtr.Zero);


    button3.Enabled = false;

    button2.Enabled = true;

}


private void button2_Click(object sender, EventArgs e)

{

    mciSendString("close MediaFile", null, 0, IntPtr.Zero);


    button2.Enabled = false;

    button3.Enabled = true;

}


If you are still not satisfied then here is an additional joke. If you select a video then a new window will pop up and display it. Now I'm laughing at myself, lol.

http://forum.codecal...=1&d=1251875810

There is nothing as worthy as comments

Thanks to everyone reading my tutorial. Any comments and +rep are welcomed. Hope you enjoyed reading. :)

Attached Files


Edited by ArekBulski, 03 September 2009 - 01:25 AM.


#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Very cool tutorial! I've used this namespace before in prior projects. It works and is indeed very powerful. +rep

#3
Parabola

Parabola

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 331 posts
Time to make my own media player.... lol Very nice, +rep
Programmer (n): An organism that can turn caffeine into code.
Programming would be so much easier without all the users.

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
  • Location:Upstate, South Carolina
  • Programming Language:C, C++, PL/SQL, Delphi/Object Pascal, Pascal, Transact-SQL, Others
  • Learning:Java, C#, PHP, JavaScript, Lisp, Fortran, Haskell, Others
More +rep :)
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
so1i

so1i

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 312 posts
Nice tutorial, very helpful! +rep

#6
debtboy

debtboy

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 916 posts
very nice +rep

#7
diedo

diedo

    Newbie

  • Members
  • Pip
  • 3 posts
yeah very nice tutorial

#8
ArekBulski

ArekBulski

    Speaks fluent binary

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,376 posts
Thank you all, guys. :)

#9
Darkco

Darkco

    Newbie

  • Members
  • PipPip
  • 13 posts
Very nice tutorial indeed :)
But can you please explain this part of the code I dont fully understand it yet ...
private static extern long mciSendString(string strCommand, StringBuilder strReturn, int iReturnLength, IntPtr hwndCallback);

Edited by Darkco, 11 January 2010 - 03:02 PM.
grammar


#10
TkTech

TkTech

    The Crazy One

  • Moderators
  • 1,396 posts
lol @ Eureka Seven

#11
gokuajmes

gokuajmes

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 518 posts
very well done.Good tut.
How do i + Rep U [ i am new over here ]

#12
hampus.tagerud

hampus.tagerud

    Learning Programmer

  • Members
  • PipPipPip
  • 46 posts
Very nice tutorial! Just was I was looking for!! +rep (Y)




2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users