Click here to Skip to main content
15,914,419 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am going to develop simple mp3 player on VB.NET, suggest me which controls are needed and how to play mp3 file.
Posted
Updated 22-Feb-11 14:51pm
v2

I mean no offence here but you say you are going to create an mp3 player and then the rest of your question indicates that you have no idea how to do it.

Have you done an internet search?

There are loads of articles out there which demonstrate how to do this. I suspect that there are several here on The Code Project.

When you have done some work towards this and encounter a problem then please ask about it. Until then, you are as capable of searching as I am.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 24-Feb-11 18:57pm    
I agree with you, my 5. Besides, too many louse players around, "cool" look, using all the same stuff inside. Good player -- unwritten player.
--SA
 
Share this answer
 
You can look for components that play sound files on open-source code web-sites.Also you can use Win32API functions that plays mp3 or wav files (but i strongly recommend you avoid using any win32API functions in your application).
If you would like to only playback sound without customizing options (like custom equalizer) you can use this though:
Dim mp3 As New Microsoft.DirectX.AudioVideoPlayback.Audio("D:\Auf die Liebe.mp3")
mp3.Play()
 
Share this answer
 
v2
Comments
Ed Nutting 24-Feb-11 13:37pm    
Edited: changed 'waw' to 'wav'..unless i'm missing something..:P And improved grammer/formatting :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900