Software only decoder for MPEG Audio layer 3.
High compression audio files with high quality sound.
How to use in VB !
1) Insert OCX in VB under PROJECT / COMPONENTS and a blue speaker apears in the components window
2) For the first step you can use a COMMAND button with the following two lines
Private Sub Command1_Click() Dim err As Long err = Mp3Play1.Open("c:\demo.mp3", "") ' "c:\demo.mp3" is the path of the mp3 file Mp3Play1.Play End Sub
3) Use another COMMAND button with the following text
Private Sub Command2_Click() Mp3Play1.Stop End Sub
4) That's all ! Now you can use MPEG Audio layer 3 in your program.
5) The ActiveX / OCX in the root work with all Win 95 / 98 and NT 4 version. |