0

我正在 iPad 上从名为 Foscam 的 IP 摄像机获取流。如果我在 iPad 浏览器中打开 IP,那么它运行良好,但是当我在我的应用程序中获取流时,它会出现第一个屏幕截图并卡在上面。应用程序没有从 cam 获得连续的流媒体。我正在使用这种方式

- (IBAction)powerChanged:(id)sender {
    UISwitch * s = (UISwitch *)sender;
    if( s.on == TRUE){
        [self initializeData];
        if(![deviceClient connect]){
            UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Can not connect to T-Rex device!"
                                                              message:[[NSString alloc] initWithFormat:@"Could not connec to %@ and %d port",deviceClient.host,deviceClient.port] 
                                                             delegate:nil
                                                    cancelButtonTitle:@"OK"
                                                    otherButtonTitles:nil];
                                    [message show];
                                    [s setOn:FALSE animated:TRUE];
        } else {
           [self adjustLayout:TRUE]; 
            [self startFrequencyTimer];
        }
    }else {
        [self stopFrequencyTimer];
        [self adjustLayout:FALSE];
    }
}

-(void)initializeData {
    [cameraViewFront loadRequest:[NSURLRequest requestWithURL:[frontCameraClient getVideoStreamURL]]];
}
-(BOOL)connect {
    if (udpSocket == nil){
        udpSocket = [[GCDAsyncUdpSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];
    }
    NSLog(@"host %@ and port %i", self.host, self.port);
    return [udpSocket connectToHost:self.host onPort:self.port error:nil];
}
- (NSURL *) getURL:(NSString *)forPage {
    NSLog(@"front cam IP %@" ,self.host);
    return [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"http://%@/%@user=%@&pwd=%@",self.host,forPage,self.username, self.password]];
}

-(NSURL *)getVideoStreamURL{
    return [self getURL:@"videostream.cgi?"];
}
4

1 回答 1

0

我想到了。我正在使用 foscam 并且 foscam 在此链接上提供了 URL 列表,因此我搜索了我的 cam 模型,然后尝试了所有给定的 MPEG 连接类型 URL 和http://IPADDRESS/videostream.cgi?user=[USERNAME]&pwd=[ PASSWORD]&resolution=32&rate=0 URL 适用于我的情况。但是仍然存在一个问题,它在 iOS5 上运行得非常好,在 iOS6 上它仍然停留在第一帧。为了解决这个问题,这个链接对我帮助很大。此方法适用于 iOS5 和 6。

于 2013-06-17T11:23:41.870 回答