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

Applications, Games, Tools, User libs and useful stuff coded in PureBasic
User avatar
utopiomania
Addict
Addict
Posts: 1655
Joined: Tue May 10, 2005 10:00 pm
Location: Norway

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

Post by utopiomania »

Thanks a LOT BasicallyPure, for this contribution, it records streams like a charm :)

http://youtu.be/OOE3fZK9078

Changed the video from private :?
User avatar
Psychophanta
Addict
Addict
Posts: 4997
Joined: Wed Jun 11, 2003 9:33 pm
Location: Lípetsk, Russian Federation
Contact:

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

Post by Psychophanta »

@BasicallyPure,
lots of thanks!
http://www.zeitgeistmovie.com

While world=business:world+mafia:Wend
Will never leave this forum until the absolute bugfree PB :mrgreen:
User avatar
BasicallyPure
Enthusiast
Enthusiast
Posts: 536
Joined: Thu Mar 24, 2011 12:40 am
Location: Iowa, USA

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

Post 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
BasicallyPure
Until you know everything you know nothing, all you have is what you believe.
User avatar
Psychophanta
Addict
Addict
Posts: 4997
Joined: Wed Jun 11, 2003 9:33 pm
Location: Lípetsk, Russian Federation
Contact:

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

Post 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
http://www.zeitgeistmovie.com

While world=business:world+mafia:Wend
Will never leave this forum until the absolute bugfree PB :mrgreen:
Simo_na
Enthusiast
Enthusiast
Posts: 177
Joined: Sun Mar 03, 2013 9:01 am

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

Post by Simo_na »

I'd like to record in 96k and 24 bit with your PureAudioRecorder,, is that possible?

Thank you
Simo_na
Enthusiast
Enthusiast
Posts: 177
Joined: Sun Mar 03, 2013 9:01 am

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

Post 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
Simo_na
Enthusiast
Enthusiast
Posts: 177
Joined: Sun Mar 03, 2013 9:01 am

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

Post 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
User avatar
Kiffi
Addict
Addict
Posts: 1357
Joined: Tue Mar 02, 2004 1:20 pm
Location: Amphibios 9

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

Post by Kiffi »

Simo_na wrote:UP
Please stop doing that. Apparently no one has an answer to your question.
Hygge
User avatar
Kwai chang caine
Always Here
Always Here
Posts: 5353
Joined: Sun Nov 05, 2006 11:42 pm
Location: Lyon - France

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

Post by Kwai chang caine »

Apparently i missing this nice code :oops:
Too late thanks at BasicalyPure for sharing it 8)
ImageThe happiness is a road...
Not a destination
User avatar
Psychophanta
Addict
Addict
Posts: 4997
Joined: Wed Jun 11, 2003 9:33 pm
Location: Lípetsk, Russian Federation
Contact:

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

Post 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.
http://www.zeitgeistmovie.com

While world=business:world+mafia:Wend
Will never leave this forum until the absolute bugfree PB :mrgreen:
Post Reply