-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wavbrro format #64
Wavbrro format #64
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great progress on the library! Two quick notes for future consideration:
Error Handling: There's a fair bit of expect
and unwrap
calls all over the code. While totally fine for now, we should look at more nuanced error handling down the line to avoid panics. Maybe error propagation?
Platform Compatibility: The write_wavbrro_file
function's use of std::os::unix
might limit cross-platform use. But if it is designed exclusively for UNIX, then everything makes sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exciting!
Improved README to state what actually is in the package (Including no Windows support), added the suggestions from the review. |
This is the new WAVBRRO format, using the rkyv crate.
Not all features are implemented (Streaming, working with serialized data, working with different types, etc) but it lays the work to integrate into the compressor and also creating a new tool (
wav2wavbrro
) to convert all the existing data to this new format.Far more simple and less "hackish" that the old work around the WAV format.