You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The time strip graph, on the left side, is limited in the amount of time it can display based on the vertical resolution of the screen. The most it can do it about 3 minutes. Much less on a small screen.
For longer term accuracy, it would be good to have a longer strip available. As an example, a point where the center wheel binds would only show up every hour.
One idea is to support an alternate layout, which places the strip chart horizontally. This way it can be longer, since screens are wider than tall and the tg status bar would not be using space. One or more row(s) of the waveform displays could be eliminated in this layout.
Another idea is to support a zoom out mode. Each row (or column in a horizontal layout) would not be one sample, but multiple samples grouped together, providing a 2x, 3x, etc. zoom out factor.
Here are some ideas for different ways multiple samples could be shown in a single pixel/row of the strip chart:
A single pixel that corresponds to the mean of the sample group (of 2, 3, etc. or more samples based on zoom out factor).
As above, but the median value. This is more robust, i.e. less likely to have a significant error due to a single glitch (audio related) in a group of samples.
A line, showing the range from the two extreme samples.
A multi-colored line, similar to a box plot of the sample distribution. A darker color line in the center shows the range from the 1st to 3rd quartile, while a lighter color shows the rest of the limits (as in previous example). Outliers greater than 1.5*IQR are shown as individual dots.
The text was updated successfully, but these errors were encountered:
A feature branch on my repo has something for this implemented. The paperstrip now has scroll bars and can scroll back to see old history. You can't see more at once, i.e. there is no zoom on the time span axis, but you can go back see how it's changing over time.
The time strip graph, on the left side, is limited in the amount of time it can display based on the vertical resolution of the screen. The most it can do it about 3 minutes. Much less on a small screen.
For longer term accuracy, it would be good to have a longer strip available. As an example, a point where the center wheel binds would only show up every hour.
One idea is to support an alternate layout, which places the strip chart horizontally. This way it can be longer, since screens are wider than tall and the tg status bar would not be using space. One or more row(s) of the waveform displays could be eliminated in this layout.
Another idea is to support a zoom out mode. Each row (or column in a horizontal layout) would not be one sample, but multiple samples grouped together, providing a 2x, 3x, etc. zoom out factor.
Here are some ideas for different ways multiple samples could be shown in a single pixel/row of the strip chart:
The text was updated successfully, but these errors were encountered: