与UIWebView的IP摄像头流适用于iOS 5,但不是在IOS 6(IP camera stre

2019-06-28 08:30发布

嗨即时在我的网站流式传输的IP摄像头和我嵌入一个UIWebView我的网站,好的工作与IOS 5,但是当我打开我的IOS 6程序只显示图像,而不是视频。 使用我的网站IM <iframe width="640" height="480" src="http://112.214.96.41:87/videostream.cgi?user=user&pwd=" frameborder="0"></iframe>请有人帮助我,还有另一种方式?

Answer 1:

如果你想一个UIWebView中显示的IP摄像机,比如,你可以这样做:(假设web视图是一个出口到您的UIWebView)

NSString * stream = @"http://login:password@ip:port/stream/"


NSString * html = [NSString stringWithFormat:@"<img name=\"Cam\" src=\"%@\" width=\"100%%\" height=\"100%%\" alt=\"Live Feed\" style=\"background-color: #000000\" />", stream];

[webView loadHTMLString:html baseURL:nil];

当流是正确的URL,这取决于你的相机的型号。

它的工作原理上的iOS5和iOS6的。



文章来源: IP camera stream with UIWebview works on IOS 5 but not on IOS 6