Page 2 of 2

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Tue Oct 08, 2013 8:28 pm
by utopiomania
Thanks a LOT BasicallyPure, for this contribution, it records streams like a charm :)

http://youtu.be/OOE3fZK9078

Changed the video from private :?

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Sun Jul 05, 2015 11:59 pm
by Psychophanta
@BasicallyPure,
lots of thanks!

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Mon Jul 06, 2015 1:52 am
by BasicallyPure
@Psychophanta

You're welcome.
I'm glad you finally found it. :)

Here is a newer version you might like to try.
http://www.mediafire.com/download/nkef3 ... r_1p28.zip

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Mon Jul 06, 2015 9:02 am
by Psychophanta
BasicallyPure wrote: I'm glad you finally found it. :)
:) hehe! thanks :!: :wink:
To me is very very useful. Never before I needed a simple tool to record voice, but i need it now, and as ever: it must be a PB coded program 8)

There is also a functional code from 2002 here:
http://www.purebasic.fr/english/viewtop ... 45#p344291

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Sun May 24, 2020 9:30 pm
by Simo_na
I'd like to record in 96k and 24 bit with your PureAudioRecorder,, is that possible?

Thank you

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Tue May 26, 2020 2:11 pm
by Simo_na
Simo_na wrote:I'd like to record in 96k and 24 bit with your PureAudioRecorder,, is that possible?

Thank you
UP

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Fri May 29, 2020 8:45 am
by Simo_na
Simo_na wrote:
Simo_na wrote:I'd like to record in 96k and 24 bit with your PureAudioRecorder,, is that possible?
Thank you
UP

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Fri May 29, 2020 10:09 am
by Kiffi
Simo_na wrote:UP
Please stop doing that. Apparently no one has an answer to your question.

Re: PureAudioRecorder, record 'Line In' audio, playback, sav

Posted: Tue Jun 02, 2020 6:00 pm
by Kwai chang caine
Apparently i missing this nice code :oops:
Too late thanks at BasicalyPure for sharing it 8)

Re: PureAudioRecorder, record 'Line In' audio, playback, save

Posted: Mon Oct 31, 2022 9:03 am
by Psychophanta
In the 1.30, when no recording device is enabled or found , the program explotes at the time of the quit the program. :!:

EDIT:

SOLVED in a fast, but funtional way:
At the global variable section add:

Code: Select all

Global NumDevices.i
and perform the verification before create threads:

Code: Select all

If NumDevices
  threadID1 = CreateThread(@AUDIO_LOOP(), #Null) ; THREAD TO HANDLE CALLBACK
  threadID2 = CreateThread(@METER_LOOP(), #Null) ; THREAD TO HANDLE METER
EndIf
Finally at ''GET_CAPTURE_DEVICES()' use the global variable 'NumDevices.i' instead to create a local one.