Search found 59476 matches

by steve
Thu Aug 01, 2013 6:11 pm
Forum: Nyquist
Topic: Want to do time-delay scaled add with channel swap/mix
Replies: 11
Views: 5135

Re: Want to do time-delay scaled add with channel swap/mix

Here's a snippet to swap left and right channels of a stereo track:

Code: Select all

(vector (aref s 1)(aref s 0))
by steve
Thu Aug 01, 2013 6:07 pm
Forum: GNU/Linux
Topic: line sound is stopped when I start recording
Replies: 7
Views: 6116

Re: line sound is stopped when I start recording

I'm not familiar with qarecord, but it looks like it has some fancy signal routing capability.
I'm trying to get an idea of what your sound system itself can do as a guide to how to configure Audacity. - can you record streaming audio with arecord, and if so, how?
by steve
Thu Aug 01, 2013 5:57 pm
Forum: Nyquist
Topic: Want to do time-delay scaled add with channel swap/mix
Replies: 11
Views: 5135

Re: Want to do time-delay scaled add with channel swap/mix

Here's a simple snippet for a mono delay (echo) (defun echo (sig delay gain repeats) (let ((output sig) (dly delay)) (dotimes (i repeats output) (setf output (sim output (at-abs dly (cue (mult sig gain))))) (setq gain (* gain gain)) (setq dly (+ dly delay))))) (echo s 0.5 0.8 3)
by steve
Thu Aug 01, 2013 5:41 pm
Forum: Nyquist
Topic: Want to do time-delay scaled add with channel swap/mix
Replies: 11
Views: 5135

Re: Want to do time-delay scaled add with channel swap/mix

All of the regular postings on this forum use LISP syntax rather than SAL. SAL is a newer syntax that was intended to be more comfortable for C/C++ programmers. Any code examples you find on this forum are likely to use LISP syntax. Nyquist is based on XLISP (a dialect of LISP). There is a good guid...
by steve
Thu Aug 01, 2013 4:50 pm
Forum: macOS
Topic: Gverb for the Mac?
Replies: 4
Views: 1065

Re: Gverb for the Mac?

Update: I checked the download link in that post and it does not seem to be working.
Audacity 2.0.4 alpha is available here: http://www.audacity.homerow.net/index.php?dir=mac%2F
or you can wait until Audacity 2.0.4 is officially released (should be later this year).
by steve
Thu Aug 01, 2013 4:49 pm
Forum: macOS
Topic: Gverb for the Mac?
Replies: 4
Views: 1065

Re: Gverb for the Mac?

Unfortunately GVerb got missed out from the 2.0.3 Audacity release, but see here for a solution: http://forum.audacityteam.org/viewtopic ... 78#p207578
by steve
Thu Aug 01, 2013 4:45 pm
Forum: Audio Processing
Topic: Import Label Text
Replies: 5
Views: 2190

Re: Import Label Text

Edgar wrote:eagerly awaiting the next beta!
I'm on alpha versions at the moment (no error checking, possible bugs, and a failure just fails with no explanation unless you can work out the cryptic debug info), but the next alpha should be pretty effective.
by steve
Thu Aug 01, 2013 1:27 pm
Forum: Audio Processing
Topic: Import Label Text
Replies: 5
Views: 2190

Re: Import Label Text

Hi Ed, My new Album Track Marker is starting to look like it could be accurate enough, at least on "non-difficult" albums, to be able to provide something useful in relation to this. What I'm thinking, is for a version of Album Track Marker (optional download) that allows pasting plain tex...
by steve
Thu Aug 01, 2013 12:14 pm
Forum: General Audio Programming
Topic: Audacity audio tools help me:(
Replies: 5
Views: 3745

Re: Audacity audio tools help me:(

You've not really given enough information for us to be able to answer. I'll make some guesses: You have a Windows computer. You want to produce musical sounds from within the program. You want the program the be easy to use. You want a program that is inexpensive and preferably free. You want Garag...
by steve
Thu Aug 01, 2013 2:13 am
Forum: Audacity 2.x Feedback and Reviews
Topic: Recording
Replies: 1
Views: 838

Re: Recording

Transport menu > Append Record
or
Shift + R