Closed joshgalvan closed 1 year ago
Currently there is no support for m4a files. Is it as simple as implementing case m4a = "audio/m4a in MIMEType.Audio?
case m4a = "audio/m4a
MIMEType.Audio
Also, it seems the default way to record audio in iOS using AVFoundation and AVAudioRecord is to create .m4a files, making it necessary to support.
I tested it, and it is as simple as adding the above case. Works with .m4a audio files creates using AVAudioRecord. Will create PR for this issue.
Currently there is no support for m4a files. Is it as simple as implementing
case m4a = "audio/m4a
inMIMEType.Audio
?Also, it seems the default way to record audio in iOS using AVFoundation and AVAudioRecord is to create .m4a files, making it necessary to support.