-
Notifications
You must be signed in to change notification settings - Fork 757
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
replace aiff with wav as the default value for recHeaderFormat #5559
Conversation
Thanks @RhnSharma |
As far as I am concerned, it is ok. I am not sure about possible downsides of |
I've just realized: what about files >4GB? Currently, AFAICT, EDIT: FWIW the 4GB limit might also apply to AIFF, but I'd need to check that. |
https://manual.audacityteam.org/man/export_formats_supported_by_audacity.html : "Size limits for WAV and AIFF PCM-encoded files So we don't lose anything by switching to WAV. I think this change is fine esp. for the benefit of Windows users. (FWIW, #5557 reports problems opening AIFF files in Linux, which I have never experienced, so I found that a puzzling remark.) |
This is generally true - sorry, I should have specified (was in a hurry when reporting - bad idea). The only program really that struggles with this is |
FWIW I couldn't reproduce this: But again, I don't mind the change for the sake of Windows players. It's more common to find audio apps that don't like 32-bit float samples, but we shouldn't change that -- floats prevent irreversible clipping. |
If we are to move ahead with this change, the documentation should be updated as well. |
To clarify: I'm now also OK with this change, but the PR needs to have the documentation updated, as indicated earlier. |
WAV is a simpler format and don't have extended 80 bit IEEE Standard 754 floating point number just for the sample rate... Which is a technological mystery for me. |
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.
Thanks! Can you please add changes for documentation?
Hello @RhnSharma |
Okay, I'm going to push documentation changes for this PR |
Please note:
|
Thanks a bunch Marcin ! |
All right, seems like there are no objections, I'll merge this. Thanks! |
Purpose and Motivation
Fixes #5557
Types of changes
Enhancement
To-do list
Hi @madskjeldgaard, how does this look?
Let me know if this needs any changes.
Thanks