VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Getting extra info from wave file

by David Filipovic (4 Submissions)
Category: Sound/MP3
Compatability: Visual Basic 3.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (4 Votes)

Finding out if wave file is mono or stereo, 8bit or 16bit, and how many KHz's.

Rate Getting extra info from wave file


 In order for this to work you would have to have these on your form:



   - Text Boxes named:

       txtFile

       Freq

       Bit

       Channel

   - Button named:

       Load


 Note: I didn't want to use Common dialog or any other control for
 simplicity, you just type the location of your wave file in a textbox.

 

 Code:

 


Dim Buf As String * 58
Dim beg As Byte


Private Sub Load_Click()

  Open txtFile.Text For Binary As #1

    Get #1, 1, Buf

  Close #1

  beg = InStr(1, Buf, "WAVE")

  If beg = 0 Then

    MsgBox "Sorry not a wave file...", vbCritical, "Error..."

  Else


    'The 23rd byte in a wave file determines if file is Mono(1 Ascii) or Stereo(2 Ascii)


    If Mid(Buf, 23, 1) = Chr$(1) Then

      Channel = "Mono"

    Else

      Channel = "Stereo"

    End If


    'The 25th byte in a wave file determines how many KHz the file has

    '44KHz(Ascii 68{44 hexadecimal})

    '22KHz(Ascii 34{22 hexadecimal})

    '11KHz(Ascii 17{11 hexadecimal})


    Freq = Sredi(Mid(Buf, 25, 1)) / 17 * 11 & " KHz"


    'The 35 byte in a wave file determines if the file is 16bit(16 ascii) or 8bit(8 ascii)


    Bit = Sredi(Mid(Buf, 35, 1)) & " Bit"

  End If

End Sub


Private Function Sredi(ByVal accStr As String) As String

  Sredi = Trim(Str(Asc(accStr)))

End Function





Download this snippet    Add to My Saved Code

Getting extra info from wave file Comments

No comments have been posted about Getting extra info from wave file. Why not be the first to post a comment about Getting extra info from wave file.

Post your comment

Subject:
Message:
0/1000 characters