Search found 59476 matches

by steve
Mon Jun 11, 2012 11:46 pm
Forum: Windows
Topic: Filtering frequency during recording
Replies: 17
Views: 3736

Re: Filtering frequency during recording

How ingenious. As Koz wrote, Audacity does not do real time processing so I doubt that it will be much use for your application. It may be worth looking at Wavosaur which I think does have real time processing ability http://www.wavosaur.com/ A possible alternative to filtering the input and looking...
by steve
Mon Jun 11, 2012 10:52 pm
Forum: Plug-in Archive
Topic: dUSt: Dynamic Universal Sweeper Toolkit
Replies: 16
Views: 15548

Re: dUSt: Dynamic Universal Sweeper Toolkit

The general pattern for changing global XLISP variables temporally is using PROGV, for example: (progv '(*control-srate*) '(*sound-srate*) ; the code inside PROGV uses *control-srate* = *sound-srate* ) ; end of PROGV automatically restores the original *control-srate* That doesn't quite work becaus...
by steve
Mon Jun 11, 2012 9:20 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

And also, once we have all of the times is it possible to find an average time of the even numbered labels as well as an average time of the odd numbered labels? It's possible to do just about anything, but first things first. Let's have a look at the data that we currently have. Have a read of thi...
by steve
Mon Jun 11, 2012 9:12 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

Writing a text file (part 2) The code in Writing a file to the home folder. (part 1) should have produced a valid, fully qualified file name (full path and file name). Did it? What did it produce? This must be working before we can add to it. We can then use the (open) function to open a file for w...
by steve
Mon Jun 11, 2012 8:59 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

eddieRay wrote:Where is Output.txt written to?
So far there isn't a text file. That's what we are going to add.
Is the effect creating a label track and marking the sounds like sound finder does?
Have you used Sound Finder before?
by steve
Mon Jun 11, 2012 8:56 pm
Forum: Windows
Topic: Microphone Set??
Replies: 7
Views: 5307

Re: Microphone Set??

You probably want a "large diaphragm usb recording microphone". There's quite a few available in that price range. You will definitely also want some sort of microphone stand, headphones and a "pop shield" http://en.wikipedia.org/wiki/Pop_filter If you want to hear yourself throu...
by steve
Mon Jun 11, 2012 7:46 pm
Forum: Windows
Topic: Microphone Set??
Replies: 7
Views: 5307

Re: Microphone Set??

What's the job? (what do you want to record and for what purpose?)
What's your budget?
by steve
Mon Jun 11, 2012 6:43 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

Looking at the soundfinder.ny code, it's a bit of a mess, so I've just tidied it up a bit so that we can see what we're doing. I've changed the name of the variable "l" to "labels-list". It's not generally a good idea to use single letters as variable names, particularly not a le...
by steve
Mon Jun 11, 2012 6:00 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

Writing a file to the home folder. (part 1) First we create a fully qualified file name for the output file which will be written in the "home" folder. ;;; home directory (defun home () (or (get-env "HOME") ; Mac / Linux (get-env "UserProfile"))) ; Windows ; file separ...
by steve
Mon Jun 11, 2012 5:47 pm
Forum: Windows
Topic: How Do I Automate Audacity?
Replies: 13
Views: 8311

Re: How Do I Automate Audacity?

I've posted some stuff here: http://forum.audacityteam.org/viewtopic ... 39&t=66085
We can continue the conversation there.