We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Apple format audio is converted to octetstream. A file with this signature (using file):
file
... ISO Media, Apple iTunes ALAC/AAC-LC (.M4A) Audio
will result in
data:application/octet-stream;base64,AAAAIGZ0e...
This cannot be played by the HTMLAudioElement.
The text was updated successfully, but these errors were encountered:
Sorry for the delay.
Apparently this extension is not part of IANA's Media types spec as per https://www.iana.org/assignments/media-types/media-types.xhtml#audio , which is followed by datauri submodule https://github.com/data-uri/mimer
Other than that, I believe is a good idea to allow custom mimetypes in datauri as per mimer submodule.
Sorry, something went wrong.
mimer parses apache mime types file(based on IANA's spec), the good news is that m4a will be supported on next datauri release 😄
m4a
As per mime.types from Apache:
audio/mp4 m4a mp4a
Fixed in https://github.com/data-uri/datauri/releases/tag/v2.0.0
No branches or pull requests
Apple format audio is converted to octetstream. A file with this signature (using
file
):will result in
This cannot be played by the HTMLAudioElement.
The text was updated successfully, but these errors were encountered: