Display value of individual sample
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.
Display value of individual sample
In Audacity 2.0.2, is it possible to display the value of an individual sample?
(One more question: is there a shortcut to view a track full-screen?)
(Windows 7 Professional, SP1)
(One more question: is there a shortcut to view a track full-screen?)
(Windows 7 Professional, SP1)
-
kozikowski
- Forum Staff
- Posts: 68902
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Display value of individual sample
Control-F will contract the show left to right so the whole thing fits.
Control-E will zoom into the dragged selection and Control-3 will zoom out a little bit. I live in those three.
Koz
Control-E will zoom into the dragged selection and Control-3 will zoom out a little bit. I live in those three.
Koz
Re: Display value of individual sample
Have a look at Sample Data Exportaudubon wrote:In Audacity 2.0.2, is it possible to display the value of an individual sample?
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Display value of individual sample
Thanks. I'm analyzing some audio waveforms that have certain amplitude features, and it would have been handy to be able to mouse-over or click a sample to read its value.
Re: Display value of individual sample
You can find the value of the first sample in a selection by using the Nyquist Prompt effect and running the following code:
If you want the value in dB, use this code:
You can also see an approximate value by zooming in vertically and horizontally as close in as possible
Code: Select all
(snd-fetch s)Code: Select all
(linear-to-db (abs (snd-fetch s)))9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Display value of individual sample
Thanks--I was able to get the data I needed by repeatedly applying the Nyquist command using ^R.
steve wrote:You can find the value of the first sample in a selection by using the Nyquist Prompt effect and running the following code:If you want the value in dB, use this code:Code: Select all
(snd-fetch s)You can also see an approximate value by zooming in vertically and horizontally as close in as possibleCode: Select all
(linear-to-db (abs (snd-fetch s)))
Re: Display value of individual sample
Just out of interest, what do you need these sample values for?
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Display value of individual sample
Making some audio-gear measurements--attack and release times, e.g.
steve wrote:Just out of interest, what do you need these sample values for?
Re: Display value of individual sample
Sounds interesting. Good luck with your project.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)