While I realize that AirPlay has inherent lag/latency, I'm wondering if there's a way for a (currently hypothetical) iPhone app to detect what that latency is. If so, how precise can that latency value be? I'm more curious in whether an app can "know" its own AirPlay latency, rather than simply minimize it.
|
|
The latency does not come from network jitter, but rather is decided by the source device (your iPhone). Long story short:
Audio latency needs to be very accurate so that multiple outputs can play in sync. Some explanations about AirPlay's implementation:
It's possible to change the latency if you use a custom implementation, but Apple usually rejects them. Check this writeup for more information. You can also read the unofficial protocol documentation. |
|||||
|
|
The short answer is: no, Apple does not provide a way to do this. Assuming you need your app to be approved in the App Store, you're sort of out of luck. If you can run your app on a jailbroken device you can search around for undocumented APIs that will let you do more. If you need your app to be available in Apple's App Store, most things you can do network-wise are outlined in the "Reachability" sample app. The only way I can think of to get a good guess would be to use Bonjour to identify the host (see sample code here https://developer.apple.com/library/ios/#samplecode/BonjourWeb/Introduction/Intro.html) and then ping the host. However:
Instead of spending too much time on this, you should follow Apple's guidelines for preparing your audio for AirPlay and enriching your app for AirPlay: http://developer.apple.com/library/ios/#documentation/AudioVideo/Conceptual/AirPlayGuide/PreparingYourMediaforAirPlay/PreparingYourMediaforAirPlay.html#//apple_ref/doc/uid/TP40011045-CH4-SW1 Hope this helps! :) |
|||
|
|