OSStatus error 1718449215

前端 未结 8 1225
陌清茗
陌清茗 2020-12-08 19:25

I have created an iPhone application to record our voice. When I try to record, I am getting error message in following statement.


recorder = [[ AVAudioReco         


        
8条回答
  •  感情败类
    2020-12-08 19:30

    My favourite tool for deciphering OSStatus codes is https://osstatus.com

    OSStatus error 1718449215 is kAudioConverterErr_FormatNotSupported, which may mean:

    • The format you're trying to export to is not supported (double check the file extension of your output file URL).

    • There's an issue with the recordSettings. One thing to look out for is that the value of the AVFormatIDKey matches the file extension of the output file URL.

提交回复
热议问题