Adjusting scroll speed?
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Adjusting scroll speed?
I have hours of recordings to scroll through in spectrogram mode to watch for quick sounds (less than a second). Currently I am just zooming in so that about 8 seconds of audio is displayed, and then hitting the pagedown key to scroll through. Is there another way to do this that doesn't involved hitting the key 3000+ times per recording? If I hold the key down, it scrolls by way too fast.
-
waxcylinder
- Forum Staff
- Posts: 14684
- Joined: Tue Jul 31, 2007 11:03 am
- Operating System: Windows 10
Re: Adjusting scroll speed?
Try the Play-at-Speed Toolbar (which now adjusts speed dynamically during playback).
See: https://manual.audacityteam.org/man/pla ... olbar.html
WC
See: https://manual.audacityteam.org/man/pla ... olbar.html
WC
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
Re: Adjusting scroll speed?
Thanks, I did look at that feature, but it only goes up to 3x, which isn't fast enough. I don't actually need to hear the audio, just look at the spectrogram.
I did figure out that I can use another program AutoHotKey with a script to press the pagedown key for me about 5 times per second (see below). I just press F12 to start scrolling, then F12 again to stop scrolling.
The ideal would be if the display would smoothly scroll to the right, rather than jump from one section to the next. Is that possible?
I did figure out that I can use another program AutoHotKey with a script to press the pagedown key for me about 5 times per second (see below). I just press F12 to start scrolling, then F12 again to stop scrolling.
The ideal would be if the display would smoothly scroll to the right, rather than jump from one section to the next. Is that possible?
#MaxThreadsPerHotkey 2
F12::
toggle:=!toggle
While toggle{
Send {PgDn}
Sleep 250
}
Return
Re: Adjusting scroll speed?
What is the purpose of this? What is the recording?
(The reason that this matters is that there are ways to get fast playback, but they may modify the sound in some way. Without knowing what you are doing, I can't know if any of the possible solutions will be suitable)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Adjusting scroll speed?
Hi Steve. Is there any way to slow the scrolling down to really slow, slow enough to pinpoint the location of a bit of noise in the track?
Re: Adjusting scroll speed?
If you have a mouse with a mouse wheel, then you can start "scrubbing" playback, and rotate the mouse wheel to change the play speed. The slowest supported speed is x0.01 (100 times slower). https://manual.audacityteam.org/man/scr ... eking.html
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Adjusting scroll speed?
No way to do that with touch pad only?
Re: Adjusting scroll speed?
OK. I'm starting to get the hang of it. I can do it with the touch pad. WOOT!