Feature: Multi-channel WAV export #23
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This adds support for exporting time series data from all recorded channels as a single .wav file, where each recorded channel is a separate channel in the resulting WAV file. It encodes samples using 32-bit floats so they are not limited to between (-1, 1).
Motivation & Context
This makes it easier to play back recorded data as audio, and also to import it into programs like audacity for further analysis.
The file sizes also considerably smaller than CSVs due to the binary encoding.
Changes
formatparameter to ChartExportOptions to choose betweencsvandwavchartExporttests so they work with the new ChartExportOptionsScreenshots / Demos (if UI)
Updated export UI:

How to Test
Export as multi-channel WAVChecklist
npm run lintand fixed any issuesnpm run typecheck(TypeScript) with no errorsnpm testand tests passnpm run test:coverageif code paths changed significantlyAdditional Notes
The resulting WAV file is often very loud as values are often clipped during playback. This could be solved by normalizing the amplitude, however this is not ideal as it alters the data. I have added some warnings so people don't damage their speakers and/or ears.