我想使用API而不是自定义接收器从iOS发送图像流到chromecast。
我可以使用此代码在NSTimer上发送图像
GCKMediaInformation *mediaInformation =
[[GCKMediaInformation alloc] initWithContentID:url
streamType:GCKMediaStreamTypeNone
contentType:@"image/jpg"
metadata:nil
streamDuration:0
customData:nil];
//cast video
[_mediaControlChannel loadMedia:mediaInformation autoplay:TRUE playPosition:0];
但每帧之间存在大量闪烁。 API能够进行无缝图像传输吗?
答案 0 :(得分:1)
这与API无关;这是关于如何在接收器端处理多个图像和它们之间的过渡的问题;默认/样式接收器对这类事情没有做任何特别的事情;你需要编写自己的接收器。