iPad上的IP Camera Streaming卡住了

时间:2013-06-17 08:11:48

标签: ios objective-c ipad streaming ip-camera

我从一台名为Foscam的IP摄像机上获取iPad。如果我在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?"];
}

1 个答案:

答案 0 :(得分:0)

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