Search found 59476 matches
- Wed Jan 02, 2019 5:00 pm
- Forum: Windows
- Topic: No Instrument sound when using Behringer UMC22
- Replies: 17
- Views: 13595
Re: No Instrument sound when using Behringer UMC22
The first time I did it I got the warning that the device was in use by another app and if I changed it that app may lose sound - but I was able to OK that and the change was made. That used to happen here too, but not now. No new software on the test machine other than updates. I now need to dance...
- Wed Jan 02, 2019 4:55 pm
- Forum: Windows
- Topic: Very strange "damage" to audio track - need to repair
- Replies: 12
- Views: 516
Re: Very strange "damage" to audio track - need to repair [SOLVED]
Maybe I need to bite the bullet and learn how to write a C++ utility that will subtract 16384 from every 3rd sample in the right channel. You could do that with Nyquist in Audacity. Unfortunately I don't think it would be a complete solution because: 1) The left channel is also affected, though to ...
Re: playback
Try setting "host" to "MME" in the device toolbar.
- Wed Jan 02, 2019 4:14 pm
- Forum: macOS
- Topic: Audacity 2.3.0 suddenly crashing on open
- Replies: 8
- Views: 386
Re: Audacity 2.3.0 suddenly crashing on open
It's always a good idea to remove dodgy plug-ins, though the problem here was simply that your operating system is too out of date for recent versions of Audacity.
- Wed Jan 02, 2019 3:52 pm
- Forum: New Plug-Ins
- Topic: Additive Tone
- Replies: 13
- Views: 1220
Re: Additive Tone
Similarly:
Code: Select all
(defun normalize-table (tab)
(let ((tab-peak (peak tab ny:all)))
(scale (/ 0.75 tab-peak) tab)))
Code: Select all
(defun normalize (sig)
(scale (/ 0.75 (peak sig ny:all)) sig))
- Wed Jan 02, 2019 3:49 pm
- Forum: New Plug-Ins
- Topic: Additive Tone
- Replies: 13
- Views: 1220
Re: Additive Tone
GEN-TABLES could be written a bit more succinctly, though both of these versions work correctly: ;;;Build list of tables/breakpoints to pass to siosc. (defun gen-tables (coef-lists pitch interval) (setf time interval) (setf tables ()) (reverse (cdr ;list built in reverse. loop adds extra element. (d...
- Wed Jan 02, 2019 3:45 pm
- Forum: New Plug-Ins
- Topic: Additive Tone
- Replies: 13
- Views: 1220
Re: Additive Tone
There's a minor bug here: (defun gen-table (coef-list) (do* ((current-harmonic 1 (1+ current-harmonic)) (wavetable (s-rest 0)) (amplitude 1.0 (get-amplitude current-harmonic coef-list))) ((> current-harmonic top-harmonic) wavetable) (if (> amplitude quiet) (setf wavetable (sim wavetable (scale ampli...
- Wed Jan 02, 2019 2:36 pm
- Forum: New Plug-Ins
- Topic: Additive Tone
- Replies: 13
- Views: 1220
Re: Additive Tone
I like it. It produces some nice sounds. :D ;If the rth element is a number x, then the ith harmonic (where i is r modulo k) has ;amplitude i^(-x). Does it make sense to allow negative numbers? Although it is "legal" to use most standard set ASCII characters in symbol names, it is generall...
- Wed Jan 02, 2019 12:54 pm
- Forum: GNU/Linux
- Topic: Microphone is not recording
- Replies: 9
- Views: 2500
- Wed Jan 02, 2019 12:52 pm
- Forum: Making Music with Audacity
- Topic: Music for background videos on YouTube
- Replies: 11
- Views: 1374
Re: Music for background videos on YouTube
popular music It depends what you mean by "popular music". If you mean songs that are heard on the radio / TV, then probably not. Production companies spend big bucks producing and marketing such music, and may prosecute legal proceedings against anyone they find violating their copyright...