StreamingKit
StreamingKit copied to clipboard
Keep getting thread error at AudioConverterNew
STKAudioPlayer* audioPlayer = [[STKAudioPlayer alloc] init]; [audioPlayer play:@"http://www.abstractpath.com/files/audiosamples/sample.mp3"];
this will crash, and it leads me to status = AudioConverterNew(asbd, &canonicalAudioStreamBasicDescription, &audioConverterRef);
Am I doing something wrong?
It's status 12. Thank you so much!
Greetings,
I believe you have all an all exception breakpoint set? You should be able to simply continue and the App will function fine.
perfect thank you. But, is there a way around this? I still want to the exception breakpoint to catch other bugs
I believe I previously had a symbolic breakpoint setup similarly to this Stackoverflow answer:
http://stackoverflow.com/questions/14370632/ignore-certain-exceptions-when-using-xcodes-all-exceptions-breakpoint
I'm sure someone will have a better option as I'm not great with debugging / breakpoints etc.
Try changing your breakpoint from all exceptions to just Objective-C exceptions
same problem, is there has anything update?