A sound file viewer with numerous options.
Zoom in and out using Shift + right-click + mouse-up/down;
Scroll using right-click + mouse-left/right.
(arg1) |
An Instance of SoundFile to display. |
Reads a section of the -soundfile and displays it in the view. For large files, you may want to use readWithTask instead.
The 'block' argument has no effect; the display resolution is infinite.
startFrame |
The beginning of the section, in frames. |
frames |
The size of the section, in frames. |
block |
The block size - visual resolution of the display. An Integer of the form 2**n. |
closeFile |
If true, closes the SoundFile after reading. |
doneAction |
A Function called when the file reading has completed. |
Reads a section of an open instance of SoundFile, and displays it in the view. For large files, you may want to use the method readWithTask instead.
The 'block' argument has no effect; the display resolution is infinite.
aSoundFile |
An open instance of SoundFile. |
startFrame |
The beginning of the section, in frames. |
frames |
The size of the section, in frames. |
block |
The block size - visual resolution of the display. An Integer of the form 2**n. |
closeFile |
If true, closes the SoundFile after reading. |
doneAction |
A Function called when the file reading has completed. |
Reads a section of the -soundfile asynchronously (in the background), updating the -readProgress along the way. If the showProgress
argument is true
, a SoundFileViewProgressWindow opens to show the progress.
The 'block' argument has no effect; the display resolution is infinite. The 'showProgress' argument has no effect; the view always displays reading progress within itself.
startFrame |
The beginning of the section, in frames. |
frames |
The size of the section, in frames. |
block |
The block size - visual resolution of the display. An Integer of the form 2**n. |
doneAction |
An optional function to be evaluated on completion. |
showProgress |
Whether to open a progress window. Defaults to |
Reads a section of an open instance of SoundFile asynchronously (in the background), updating the -readProgress along the way. If the showProgress
argument is true
, a SoundFileViewProgressWindow opens to show the progress.
The 'block' argument has no effect; the display resolution is infinite. The 'showProgress' argument has no effect; the view always displays reading progress within itself.
soundFile |
An open instance of SoundFile. |
startFrame |
The beginning of the section, in frames. |
frames |
The size of the section, in frames. |
block |
The block size - visual resolution of the display. An Integer of the form 2**n. |
doneAction |
An optional function to be evaluated on completion. |
showProgress |
Whether to open a progress window. Defaults to |
Sets custom data instead of a sound file. This is a setter only; it is not possible to get the data. If you need access to the data, you must keep it in your own variable.
Setting this property assumes 1 channel and sample rate of 44100 Hz. Use -setData instead if you want more control.
data |
An Array of Floats; multiple channel data should be interleaved. |
Sets custom display data instead of a sound file, interpreting it using specified number of channels and sample rate.
data |
An Array of Floats; multiple channel data should be interleaved. |
block |
The block size - visual resolution of the display. An Integer of the form 2**n. (since the port to QT, the 'block' argument has no effect; the display resolution is infinite). |
startFrame |
An integer. |
channels |
An integer. |
samplerate |
An integer. |
Allocates a desired amount of display channels and frames; all frames have initial value of 0.
frames |
An Integer. |
channels |
An Integer. |
samplerate |
An Integer. |
Overwrites a range of display data with another data. This method can be used after -alloc or -setData has been called, but not while the view is displaying a sound file.
offset |
The frame at which to start overwriting; an Integer. |
data |
The new data; an Array of Floats; multiple channel data should be interleaved. |
The reading progress, updated periodically when reading a soundfile using -readWithTask or -readFileWithTask.
The amount of currently visible frames in the view.
Zooms by a factor relative to current zoom.
factor |
A Float. |
Zooms to a specific scale.
fraction |
A Float. |
Zooms to the current selection.
Zooms to a specific selection.
selection |
The index of the selection; an Integer between 0 an 63. |
The number of seconds of audio to display in the view. E.g., to zoom out by a factor of 2, view.xZoom = dataDuration / 2
. (You are responsible for keeping track of the data duration.)
A Float, in seconds of audio displayed.
Vertical scaling. The default yZoom = 1
sets ±1.0 to the top and bottom of the view. If yZoom = 2
, the view covers ±0.5 of the value range.
A Float scaling factor.
Vertical offset. The default yOffset = 0
sets value of 0.0 in the middle of the channel's view, while yOffset = 1
, sets 0.0 at the top and yOffset = -1
sets 0.0 at the bottom of the view. This is performed after (and thus is not scaled by) the -yZoom factor.
A Float offset.
A ratio between vertical space outside of the ±1.0 value range and channel's full height. The default spacing = 0.1
makes top and bottom spaces add up to 0.1 * height
(each of them occupying half of that), while ±1.0 value range occupies 0.9 * height
. The value is clipped in the range from 0.0
to 1.0
.
A Float scaling factor.
The scrolling position of the view, as a fraction of the total scrolling range. The total scrolling range is totalDuration - xZoom
.
A Float in the range of 0.0 to 1.0.
Scrolls to a fraction of the total scrolling range. The total scrolling range is totalDuration - xZoom
.
fraction |
A Float in the range of 0.0 to 1.0. |
Scrolls by a fraction of the visible range.
fraction |
A Float. |
Scrolls to the beginning.
Scrolls to the end.
All the selections.
An array of 64 arrays of start frames and sizes: [ [ start0, size0 ] , [ start1, size1 ], ... ].
The selection at index.
An Array of the form [start, size]
, where start and size denote frames.
Sets the selection at index.
index |
An Integer between 0 an 63. |
selection |
An Array of the form |
The index of the current selection
index |
An integer between 0 an 63. |
The start frame of a selection.
index |
The index of the selection; an Integer between 0 an 63. |
An Integer.
Sets the start frame of a selection.
index |
The index of the selection; an Integer between 0 an 63. |
frame |
The starting frame of the selection, an Integer. |
The size of a selection.
index |
The index of the selection; an Integer between 0 an 63. |
An Integer.
Sets the size of a selection.
index |
The index of the selection; an Integer between 0 an 63. |
frames |
The size in frames of the selection, an Integer. |
The start of a selection in seconds.
index |
The index of the selection; an Integer between 0 an 63. |
A Float.
The size of a selection in seconds.
index |
The index of the selection; an Integer between 0 an 63. |
A Float.
Sets a selection to span the whole data range.
index |
The index of the selection; an Integer between 0 an 63. |
Sets the size of a selection to 0.
index |
The index of the selection; an Integer between 0 an 63. |
Sets the color of a selection.
index |
The index of the selection; an Integer between 0 an 63. |
color |
A Color. |
Sets whether the start point of a selection can be edited.
index |
The index of the selection; an Integer between 0 an 63. |
editable |
A Boolean. |
Whether the end point of a selection can be edited.
index |
The index of the selection; an Integer between 0 an 63. |
editable |
A Boolean. |
Read the data within a selection.
block |
The block size - visual resolution of the display. An Integer of the form 2**n. |
closeFile |
If true, closes the SoundFile after reading. |
Read the data within the current selection asynchronously (in the background), showing the progress in a separate window.
The color of the peak-to-peak data. This can be overridden by -waveColors. Defaults to Color(0.95, 0.7)
.
color |
A |
The color of the RMS data. Defaults to Color(1.0, 1.0)
.
color |
A |
An array of colors for the peak-to-peak data for each channel, allowing each channel to be represented by a different color. Defaults to [ ]
. Once set, it overrides -peakColor. In order to revert to using .peakColor
, set .waveColors
back to an empty array: .waveColors_([])
.
.rmsColor_(Color.grey(1, 0.3))
) or a darker (e.g. .rmsColor_(Color.grey(0, 0.3))
) shade of the peak-to-peak color.colors |
And array of |
Whether the grid is displayed. Defaults to true
.
flag |
A Boolean. |
The resolution of the grid.
seconds |
An instance of Float. |
Sets the grid offset.
seconds |
Grid blocks are offset by this value (in seconds). |
The color of the grid.
color |
A Color. |
Whether the data is displayed. Defaults to true
.
boolean |
A Boolean. |
Whether the RMS data for the waveform is displayed. Defaults to true
.
Whether the center line (at value 0.0) is displayed. Defaults to true
.
boolean |
A Boolean. |
Whether the bounding lines (at values ±1.0) are displayed. Defaults to true
.
boolean |
A Boolean. |
Whether the time cursor is displayed. Defaults to false
.
flag |
A Boolean. |
The position of the time cursor in frames.
frame |
An Integer. |
The color of the time cursor.
color |
A Color. |
Not operational, for compatibility only.
The object to be evaluated whenever the user interacts with the view.
The object to be evaluated on Ctrl + click.
Zooming and scrolling by mouse, directly in a SoundFileView, may not be immediately intuitive. (Most users wouldn't guess to shift-right-click!) You can add a RangeSlider to act as a scrollbar.
Notes:
xZoom == slider.range * duration
, and slider.range == xZoom / duration
.slider.lo = sfv.scrollPos / (1 - slider.size)
, with some refinements to avoid division by 0.