Kickflip手机流媒体SDK
Kickflip 是一个手机流媒体应用开发 SDK ,支持 Android 和 iOS 开发。
特性:
Live Video Broadcasting
Global distribution
Infinately scalable
No Setup Time or Fee
Developer Friendly
Open Source
Free for Development
iOS 示例代码:
[Kickflip setupWithAPIKey:@"API_KEY" secret:@"API_SECRET"]; [Kickflip presentBroadcastViewFromViewController:self ready:^(NSURL *streamURL, NSError *error){ if (streamURL) { NSLog(@"Stream is ready to view at URL: %@", streamURL); } } completion:nil];
Android 示例代码:
Kickflip.initWithApiKey(API_KEY, API_SECRET); Kickflip.startBroadcastActivity(this, mBroadcastListener);
评论