Search found 59476 matches

by steve
Tue Oct 20, 2015 1:39 pm
Forum: macOS
Topic: Scream Cube audio trouble
Replies: 4
Views: 421

Re: Scream Cube audio trouble

If you could post a short sample of your custom sfx file, then we can have a look for reasons why the file might be causing problems. See here: http://forum.audacityteam.org/viewtopic ... 49&t=72887
by steve
Tue Oct 20, 2015 1:33 pm
Forum: Audiobook Production
Topic: A salutory lesson
Replies: 17
Views: 2219

Re: A salutory lesson

But surely it wouldn't be rocket science to have a feature that recognises the gaps and automatically applies silence Quite correct. It is very easy to do that. A "Noise Gate" can do that. Unfortunately, speech that is processed in that way sounds weird and unsettling. Words ... become .....
by steve
Tue Oct 20, 2015 1:24 pm
Forum: macOS
Topic: Audacity Does Not Pickup My Turntables,Ever Since El Capitan
Replies: 7
Views: 522

Re: Audacity Does Not Pickup My Turntables,Ever Since El Cap

Sorry, no reference. Apple is secretive about anything and they usually don't send out detailed reports about what's been fixed or what is going to be fixed. A new thing is that they are sending out details for security fixes. That's a relief. But for something as simple as a USB fix, it will just ...
by steve
Tue Oct 20, 2015 1:07 pm
Forum: GNU/Linux
Topic: Selecting Jack input
Replies: 5
Views: 1507

Re: Selecting Jack input

Unfortunately Audacity does not have "channel mapping" for input channels, so "input 1" of the audio device always goes to the first input channel in Audacity, "input 2" to the second, and so on. To record inputs 7 and 8 you will need to either: 1) Use software to remap...
by steve
Tue Oct 20, 2015 12:54 pm
Forum: Audiobook Production
Topic: A salutory lesson
Replies: 17
Views: 2219

Re: A salutory lesson

the ACX QA guy comes back to me and says that the files have been 'gated' too much which has clipped some sounds and introduced ringing artifacts Assuming that you did not also use a "Noise Gate" effect, you probably applied Noise Reduction too aggressively. In several places in the ACX d...
by steve
Tue Oct 20, 2015 12:38 pm
Forum: Windows
Topic: Recording file in higher speed
Replies: 3
Views: 240

Re: Recording file in higher speed

by steve
Tue Oct 20, 2015 11:52 am
Forum: Audacity 2.x Feedback and Reviews
Topic: Problems with the new Noise Reduction replacing Noise Remova
Replies: 156
Views: 27716

Re: Problems with the new Noise Reduction replacing Noise Re

I too have noticed a difference in the new noise removal, when I used the prior version I didn't have to adjust any settings, usually one sample was enough to remove all the unwanted noise. Now, the same process leaves some of the noise behind, it only reduces the noise. I'm not technical enough to...
by steve
Tue Oct 20, 2015 11:18 am
Forum: macOS
Topic: Audacity Does Not Pickup My Turntables,Ever Since El Capitan
Replies: 7
Views: 522

Re: Audacity Does Not Pickup My Turntables,Ever Since El Cap

The Pioneer website only mentions support for OS X up to v10.10 (https://www.pioneerdj.com/en/support/software-information/djm-900nxs#operating-system-information) and I see lots of reports of problems with audio devices on El Capitan (for example: https://forums.developer.apple.com/thread/4273) so ...
by steve
Tue Oct 20, 2015 1:06 am
Forum: Windows
Topic: Trying to record from another DAW to Audacity..?!?
Replies: 7
Views: 1102

Re: Trying to record from another DAW to Audacity..?!?

In Reaper, use the File, Render command to render as a WAV file.
Then in Audacity, Import the WAV file.
by steve
Tue Oct 20, 2015 12:12 am
Forum: macOS
Topic: Need to create specific SNR for Hearing Research Project
Replies: 5
Views: 476

Re: Need to create specific SNR for Hearing Research Project

To make the RMS level of the "selected" audio a specified level, try this code: (setq target-level -18) (defun rms-normalize (sig target-db) (let ((rms-db (rms sig (/ (get-duration 1)))) (level (db-to-linear target-db))) (mult sig (/ level (snd-fetch rms-db))))) (if (> len 1000000) "E...