+ Reply to Thread
Page 1 of 3 123 LastLast
Results 1 to 10 of 24

Thread: Tutorial: Playing MP3 files with C#

  1. #1
    Join Date
    Mar 2009
    Posts
    1,375
    Rep Power
    24

    Cool Tutorial: Playing MP3 files with C#

    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



    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:

    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:

    Code:
    [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.



    There is nothing as worthy as comments

    Thanks to everyone reading my tutorial. Any comments and +rep are welcomed. Hope you enjoyed reading.
    Attached Thumbnails Attached Thumbnails Tutorial: Playing MP3 files with C#-running-program-2-.jpg   Tutorial: Playing MP3 files with C#-playing-video-2-.jpg  
    Attached Files Attached Files
    Last edited by ArekBulski; 09-03-2009 at 02:25 AM.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Jordan Guest

    Re: Tutorial: Playing MP3 files with C#

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

  4. #3
    Parabola's Avatar
    Parabola is offline Programming Professional
    Join Date
    Jul 2009
    Location
    Texas
    Posts
    336
    Blog Entries
    4
    Rep Power
    13

    Re: Tutorial: Playing MP3 files with C#

    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.

  5. #4
    Join Date
    Jul 2006
    Posts
    16,478
    Blog Entries
    75
    Rep Power
    143

    Re: Tutorial: Playing MP3 files with C#

    More +rep
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  6. #5
    so1i's Avatar
    so1i is offline Programming Professional
    Join Date
    Sep 2009
    Location
    Aberystwyth, United Kingdom
    Posts
    309
    Rep Power
    0

    Re: Tutorial: Playing MP3 files with C#

    Nice tutorial, very helpful! +rep

  7. #6
    Join Date
    Aug 2009
    Location
    ~/
    Posts
    918
    Rep Power
    19

    Re: Tutorial: Playing MP3 files with C#

    very nice +rep

  8. #7
    diedo is offline Newbie
    Join Date
    Sep 2009
    Posts
    3
    Rep Power
    0

    Re: Tutorial: Playing MP3 files with C#

    yeah very nice tutorial

  9. #8
    Join Date
    Mar 2009
    Posts
    1,375
    Rep Power
    24

    Re: Tutorial: Playing MP3 files with C#

    Thank you all, guys.

  10. #9
    Darkco's Avatar
    Darkco is offline Newbie
    Join Date
    Feb 2008
    Location
    Holland
    Posts
    13
    Rep Power
    0

    Re: Tutorial: Playing MP3 files with C#

    Very nice tutorial indeed
    But can you please explain this part of the code I dont fully understand it yet ...
    Code:
    private static extern long mciSendString(string strCommand, StringBuilder strReturn, int iReturnLength, IntPtr hwndCallback);
    Last edited by Darkco; 01-11-2010 at 03:02 PM. Reason: grammar

  11. #10
    TkTech's Avatar
    TkTech is offline The Crazy One
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    1,412
    Blog Entries
    1
    Rep Power
    31

    Re: Tutorial: Playing MP3 files with C#

    lol @ Eureka Seven

+ Reply to Thread
Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

There are currently 4 users browsing this thread. (0 members and 4 guests)

Similar Threads

  1. C# Tutorial: Reading and Writing XML Files
    By rueleonheart in forum CSharp Tutorials
    Replies: 3
    Last Post: 07-19-2011, 12:02 PM
  2. C# Tutorial: Writing Text Files
    By Xav in forum CSharp Tutorials
    Replies: 47
    Last Post: 05-30-2011, 07:38 AM
  3. having difficulty playing mp3 files in linux....
    By SnydeMz in forum Linux Applications
    Replies: 2
    Last Post: 10-28-2010, 05:25 PM
  4. Replies: 0
    Last Post: 08-17-2010, 01:52 PM
  5. Tutorial: Playing video files with Managed DirectX
    By ArekBulski in forum CSharp Tutorials
    Replies: 5
    Last Post: 05-29-2010, 02:53 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts