Reputation: 6458
Is it possible to view or capture an rtsp stream using AVFoundation on OS X? I have created an AVURLAsset using the rtsp address, but all attempts to do anything with it result in an EXC_BAD_ACCESS in com.apple.coremedia.formatreaderloader.makereadyforinspection. Am I using the wrong technique, or is this functionality denied?
Upvotes: 2
Views: 3038
Reputation: 319
AVFoundation only supports HTTP Live Streaming (HLS) or progressive download. Unfortunately, RTSP is not yet supported by iOS SDK.
You have to port an open source solution like live555 to ios environment.
Upvotes: 2