You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have integrated Kickflip for live streaming. I write a following code.
[Kickflip presentBroadcasterFromViewController:self ready:^(KFStream stream) {
if (stream.streamURL) {
NSLog(@"Stream is ready at URL: %@", stream.streamURL);
}
} completion:^(BOOL success, NSError error){
if (!success) {
NSLog(@"Error setting up stream: %@", error);
} else {
NSLog(@"Done broadcasting");
}
}];
But each and every time I got following result.
codec not found: h264
[mpegts @ 0x13006ee00] muxrate VBR, pcr every 3 pkts, sdt every 200, pat/pmt every 40 pkts
Done broadcasting
Not able to getting StreamUrl. Can you please help me.
The text was updated successfully, but these errors were encountered:
I have integrated Kickflip for live streaming. I write a following code.
[Kickflip presentBroadcasterFromViewController:self ready:^(KFStream stream) {
if (stream.streamURL) {
NSLog(@"Stream is ready at URL: %@", stream.streamURL);
}
} completion:^(BOOL success, NSError error){
But each and every time I got following result.
codec not found: h264
[mpegts @ 0x13006ee00] muxrate VBR, pcr every 3 pkts, sdt every 200, pat/pmt every 40 pkts
Done broadcasting
Not able to getting StreamUrl. Can you please help me.
The text was updated successfully, but these errors were encountered: