Did you change the sound card drivers to ones made by the computer or motherboard maker that are meant for Windows 7? Windows XP audio drivers will not work properly on Windows 7. See here for some help http://wiki.audacityteam.org/wiki/Updat ... ce_Drivers .
Gale
Search found 57626 matches: help
Searched query: help
- Thu Mar 28, 2013 8:38 am
- Forum: Windows
- Topic: recording sunds in stereo tracks from xbox
- Replies: 6
- Views: 1045
- Thu Mar 28, 2013 6:28 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
So while (seq (extract ...) (extract ...) ) did NOT do what I expected, not shortening the second extraction as expected, your function (for two ranges) would give (seq (extract ...) (seq (extract ...) (s-rest ...) ) ) which will work? Okay, but I'm still not getting why. I only overdid the business...
- Thu Mar 28, 2013 6:20 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
Thanks for the suggestion. You also show me how to make the empty sound for the null case. Are you sure you capture my intent? Even if you flatten the list, shouldn't you recur with (rest (rest list)) ? Are you sure this works? I still don't get why my earlier attempts failed, while what I wrote suc...
- Thu Mar 28, 2013 5:34 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
The shortcut for your recursive function would be (employing seq) : (defun rearrange (sig list) (when (= (length list) 1) (return-from rearrange (s-rest 0))) (seq (extract (second list) (first list) sig) (rearrange sig (rest list)))) (rearrange s '(1.0 0.7 0.4 0)) Your code is somewhat overshooting,...
- Thu Mar 28, 2013 1:05 am
- Forum: Windows
- Topic: Audacity transfer becomes erratic and stops recording
- Replies: 10
- Views: 1583
Re: Audacity transfer becomes erratic and stops recording
... hash out of live music. If you shut virus down, disconnect your network/internet and turn off WiFi if you're using that. I have favorite people to help because they're so predictable. They complain about the computer and I close, not just minimize, all their applications (sometimes dozens), empty ...
- Thu Mar 28, 2013 12:40 am
- Forum: Windows
- Topic: Problem selecting section for Noise Removal profile
- Replies: 2
- Views: 692
Re: Problem selecting section for Noise Removal profile
... Audacity will not do forensics. If the show is barely audible over the garbage (Noise) then you have no show -- we can't help you. Audacity will not remove echoes at all. Koz
- Thu Mar 28, 2013 12:23 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
Now WHY does this work without using cue? I guess I still don't understand!
- Thu Mar 28, 2013 12:19 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
Aha, duh, there's a button for that, let's make that more legible. (defun rearrange-1 (sig pairs accum-time beh) (cond ((null pairs) beh) (t (let* ((pair (first pairs)) (start (first pair)) (end (second pair)) (dur (- end start)) (new-accum-time (+ accum-time dur)) (piece (at accum-time (extract sta...
- Thu Mar 28, 2013 12:18 am
- Forum: Nyquist
- Topic: Beginner's help
- Replies: 31
- Views: 5394
Re: Beginner's help
The silence and sound finer analyzers supplied with Audacity do use snd-fetch to scan sequentially, so if that is acceptable, perhaps it's not that prohibitive for my use on few-second selections. I still don't understand why my wrong versions went wrong... but somehow I managed to write some code t...
- Wed Mar 27, 2013 11:14 pm
- Forum: Windows
- Topic: Problem selecting section for Noise Removal profile
- Replies: 2
- Views: 692
Problem selecting section for Noise Removal profile
... by themselves, and I cannot figure out what I am doing wrong. I am on Windows 7 using Audacity 2.0.3 How can I get my selection to stay selected? Help?