I don't know why that didn't occur to me. Yep, I can move tracks
around to do that. Thanks for the idea!
--MooniE
On Thu, 28 Oct 2004 22:47:20 -0700 (PDT), David R. Sky <sky@...> wrote:
> I am pretty sure that the current implementation of nyquist in Audacity only
> allows for left-right two channel work. I'll ask Dominic about it and will
> re-work the plug-in if I'm wrong. David In the meantime, is it possible to
> temporarily re-assign a track number so you can time shift it? David
>
>
>
>
> On Fri, 29 Oct 2004, Moon Caine wrote:
>
> > Sounds pretty cool. Any chance you could make one that lets you choose
> > any track, even if you have many tracks? When I mix in Audacity, I
> > compile many tracks -- well, between 4 and 10, so far -- and it'd be
> > great to be able to time shift any track by a specified number of
> > milliseconds.
> >
> > --MooniE
> >
> >
> > On Thu, 28 Oct 2004 01:52:50 -0700 (PDT), David R. Sky <sky@...> wrote:
> >> * timeshift.ny: Time Shift Tool
> >>
> >> A plug-in for performing the same task as the time shift tool in
> >> Audacity.
> >>
> >> Choose the track you want to time shift (0=left, 1=right), and the
> >> amount to shift (range from 0.0 to 100.0 milliseconds). If you
> >> choose the left channel shifted by 10.0ms, it will start 10.0ms
> >> later than previously.
> >>
> >> Only works on stereo audio. Useful for aligning tracks due to
> >> recording latency. Also can be used for stereo effects.
> >>
> >> After copying timeshift.ny into your Audacity plug-ins folder and
> >> restarting Audacity, Time Shift Tool will appear in the effects
> >> menu.
> >>
> >> For those receiving the Audacity list in digest mode, the plug-in
> >> is included below. Beware of lines marked to not word wrap.
> >>
> >> Nyquist plug-ins, descriptions and mp3 audio examples are available
> >> from http://audacity.sourceforge.net/nyquistplugins.php
> >>
> >> Nyquist plug-ins, mp3 audio examples and other plug-in resources
> >> are available from http://audacity.sourceforge.net/plugins.php
> >>
> >> {begin timeshift.ny}
> >>
> >> ;nyquist plug-in
> >> ;version 1
> >> ;type process
> >> ;name "Time Shift tool..."
> >> ;action "Time shifting one track..."
> >> ;info "Time Shift Tool by David R. Sky\nChoose the track you want
> >> to shift forward in time, by how much"
> >> ;; The above line should not be word wrapped!
> >>
> >> ;; Time Shift Tool by David R. Sky October 28, 2004
> >> ;; For people who use screen readers and/or
> >> ;; who prefer to use the keyboard over the mouse
> >> ;; This is a plug-in option to the Audacity Time Shift Tool
> >>
> >> ;control track "Track" int "0=left 1=right" 0 0 1
> >> ;control shift "Time shift" real "ms" 10.0 0.0 100.0
> >>
> >> (setf track (truncate track))
> >> (setf shift (mult 0.001 shift))
> >>
> >> (if (= track 0)
> >> (vector
> >> (sim (s-rest 0.0) (at-abs shift (cue (aref s 0))))
> >> (aref s 1))
> >>
> >> (vector
> >> (aref s 0)
> >> (sim (s-rest 0.0) (at-abs shift (cue (aref s 1))))))
> >>
> >> {end timeshift.ny}
> >>
> >> --
> >>
> >>
> >
> >
> > -------------------------------------------------------
> > This Newsletter Sponsored by: Macrovision
> > For reliable Linux application installations, use the industry's leading
> > setup authoring tool, InstallShield X. Learn more and evaluate
> > today. http://clk.atdmt.com/MSI/go/ins0030000001msi/direct/01/
> >
>
> --
>
> -------------------------------------------------------
> This Newsletter Sponsored by: Macrovision
> For reliable Linux application installations, use the industry's leading
> setup authoring tool, InstallShield X. Learn more and evaluate
> today. http://clk.atdmt.com/MSI/go/ins0030000001msi/direct/01/
> --
> Mailing list: Audacity-users@...
> To UNSUBSCRIBE, use the form at the bottom of this web page:
> https://lists.sourceforge.net/lists/listinfo/audacity-users
>
|