I’m trying to create an iOS app using Kaltura sdk and ran across a strange behavior: player created using initWithURL
redirects to safari instead of playing the stream in the app. Here is a code sample:
self.kplayer = [[KPViewController alloc] initWithURL:[NSURL URLWithString:@"http://djing.com/tv/androoidhi.m3u8"]];
self.kplayer.view.frame = CGRectMake(0, 64, 320, 200);
[self.view addSubview:self.kplayer.view];
Please suggest a workaround/fix