Search found 59476 matches

by steve
Wed Jun 13, 2012 5:00 pm
Forum: Windows
Topic: Voice recording not clear
Replies: 5
Views: 922

Re: Voice recording not clear

Do you have Skype running in the background?
Could you post a short sample for us to hear (see here for how to post a sample: http://forum.audacityteam.org/viewtopic ... 49&t=64936 )
by steve
Wed Jun 13, 2012 4:51 pm
Forum: New Plug-Ins
Topic: Cross-Fade (revisited)
Replies: 106
Views: 30079

Re: Cross-Fade (revisited)

OK I'm excited now :D Here's a demo version (proof of concept) of the new idea. Tracks must be arranged as described in my previous post, then apply "Cross-Fade Demo". There are no user controls in this version. Fades are linear but other fade types can be added. cross-fade-demo.ny (Demo v...
by steve
Wed Jun 13, 2012 3:30 pm
Forum: Windows
Topic: windows 7 doesn't seem to recognize audacity 2
Replies: 10
Views: 2296

Re: windows 7 doesn't seem to recognize audacity 2

glennggraves wrote:Problem is now fixed. Computers have gremlins and we don't know what they do, to paraphrase the actor in "I, Robot."
:D Glad it's up and working again.
by steve
Wed Jun 13, 2012 3:27 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

eddieRay wrote:Is that working for you? I am getting some errors
What errors?
by steve
Wed Jun 13, 2012 3:03 pm
Forum: Windows
Topic: Voice recording not clear
Replies: 5
Views: 922

Re: Voice recording not clear

Topic moved to the Windows forum.
Which version of Windows?
by steve
Wed Jun 13, 2012 2:59 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

We need to initialise the new running total "starts-tot" here (around line 164) (let ((odd-lab ()) ; list of odd labels (even-lab ()) ; list of even labels (even-tot 0) ; total durations for even labels (starts-tot 0)) ; total durations for start of odd to start of even Then in the printin...
by steve
Wed Jun 13, 2012 2:13 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

So you don't actually need:
1) The start time of the odd labels [Apples] to the start time of the even labels [Oranges].

you only need (in addition to the current data):
2) The start time of the odd labels [Apples] to the end time of the even labels [Oranges].
by steve
Wed Jun 13, 2012 2:11 pm
Forum: Windows
Topic: windows 7 doesn't seem to recognize audacity 2
Replies: 10
Views: 2296

Re: windows 7 doesn't seem to recognize audacity 2

So what happens if you select: "Select a program from a list of installed programs" and then click "OK"?
by steve
Wed Jun 13, 2012 2:08 pm
Forum: Windows
Topic: Voice recording not clear
Replies: 5
Views: 922

Re: Voice recording not clear

My guess is that you are recording using the in-built microphone and sound card on your Windows 7 laptop computer and it sounds rubbish?
by steve
Wed Jun 13, 2012 2:06 pm
Forum: Nyquist
Topic: Label data to text file
Replies: 108
Views: 21011

Re: Label data to text file

eddieRay wrote:

Code: Select all

              (- (first nth-even)(first nth-odd)))      ; time from odd start to even start
Can't we put another variable here as a running total of the times?
Yes we can.