1

我已经在 Iphone 中编写了客户端代码。

self.postRequest = [[ASIFormDataRequest alloc] initWithURL:[NSURL URLWithString:@"http://Services/UploadVideo.asmx"]];

NSString *urlString=[self.videoURL path];
NSLog(@"urlString=%@",urlString);
[self.postRequest setFile:urlString forKey:@"videoUrl"];
[self.postRequest setRequestMethod:@"POST"];
[self.postRequest setDelegate:self];
[self.postRequest setDidFailSelector:@selector(postFailed:)];
[self.postRequest setDidFinishSelector:@selector(postSuccessful:)];
[self.postRequest startAsynchronous];

LOG output:// urlString=/private/var/mobile/Applications/09108E9E-1494-4C25-8C3E-328B95BD1504/tmp/capture-T0x1e569fd0.tmp.w37766/capturedvideo.MOV

我应该如何捕获它并将其保存在服务器上?提前致谢..

4

1 回答 1

1

首先,您需要将视频转换为 nsdata

NSData *data = [NSData dataWithContentsOfFile:video_url];

然后将 nsdata 转换为 base64 字符串(您需要下载 base64 的单独文件)

NSString *encodedString=[data base64EncodedString];

所以最后你可以将编码的字符串发送到你的.net服务器(你需要在你的.net服务器中解码编码的字符串来检索视频)

上面的代码适用于我作为图像转换(我认为它也适用于视频)

于 2013-04-17T11:25:34.780 回答