VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



How To Record Sound CD To wav file

by bOLLEIN (1 Submission)
Category: Sound/MP3
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Sat 24th December 2005
Date Added: Mon 8th February 2021
Rating: (1 Votes)

How To Record Sound CD To wav file

Rate How To Record Sound CD To wav file



    ' TrackNum: track to record
    ' Filename: file to save wave as
    On Local Error Resume Next
    Dim i As Long
    Dim RS As String
    Dim cb As Long
    Dim t#
    RS = Space$(128)
    i = mciSendString("stop cdaudio", RS, 128, cb)
    i = mciSendString("close cdaudio", RS, 128, cb)
    Kill Filename
    RS = Space$(128)
    i = mciSendString("status cdaudio position track " & TrackNum, RS, 128, cb)
    i = mciSendString("open cdaudio", RS, 128, cb)
    i = mciSendString("set cdaudio time format milliseconds", RS, 128, cb)
    i = mciSendString("play cdaudio", RS, 128, cb)
    i = mciSendString("open new Type waveaudio Alias capture", RS, 128, cb)
    i = mciSendString("record capture", RS, 128, cb)
    t# = Timer + 1: Do Until Timer > t#: DoEvents: Loop
    i = mciSendString("save capture " & Filename, RS, 128, cb)
    i = mciSendString("stop cdaudio", RS, 128, cb)
    i = mciSendString("close cdaudio", RS, 128, cb)
End Sub


Download this snippet    Add to My Saved Code

How To Record Sound CD To wav file Comments

No comments have been posted about How To Record Sound CD To wav file. Why not be the first to post a comment about How To Record Sound CD To wav file.

Post your comment

Subject:
Message:
0/1000 characters