现在我尝试在网络服务器上传记录视频路径文件。但是当我上传由设备捕获的录制视频时,我将面临一些严重错误。
我已经将PBJVision自定义视频录制用于录制选项,例如Vine应用。我整合到我的应用程序中。
首先,我从PBJVision类文件中获取路径值,如“/var/mobile/Applications/9C4A08BC-9190-4A37-A875-3077236731AB/Documents/13-11-2013||05:54:78.mp4”
在这里,我使用NSDateFormat来识别制作不同的视频。
然后我使用上述路径的修剪字符功能。然后我将此路径更改为NSURL格式。
然后我使用以下代码
使用上传视频路径文件 NSURL *urlvalue = [NSURL fileURLWithPath:self.videoPath];
NSLog(@"The urlvalue is = %@",urlvalue);
NSData *urldata = [NSData dataWithContentsOfURL:urlvalue];
//NSURL *fileURL = [NSURL fileURLWithPath:videoPath];
//NSLog(@"fileurl is = %@",fileURL);
//NSData *videoData1 = [videoPath dataUsingEncoding:NSUTF8StringEncoding];
//NSData *videoData1=[NSData dataWithContentsOfFile:videoPath];
NSData *videoData1=urldata;
//NSLog(@"URL FOR VIDEO = %@",videoData);
NSString *postLength = [NSString stringWithFormat:@"%d", [videoData1 length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://demo.xyzxyzxyz.com/client/vine-clone/mobile/video_upload"]]];
[request setHTTPMethod:@"POST"];
[request setTimeoutInterval:60000];
NSString *boundary = [NSString stringWithFormat:@"---------------------------14737809831466499882746641449"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *body = [NSMutableData data];
//video
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
//[body appendData:[@"Content-Disposition: form-data; name=\"uploadedfile\"; filename=\"video.mp4\"\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
//Video Name with Date-Time
NSDateFormatter *dateFormat=[[NSDateFormatter alloc]init];
[dateFormat setDateFormat:@"yyyy-MM-dd-hh:mm:ssa"];
NSString *currDate = [dateFormat stringFromDate:[NSDate date]];
NSString *str = [NSString stringWithFormat:@"Content-Disposition: form-data; name=\"file\"; filename=\"video-%@.mov\"\r\n", currDate];
NSLog(@"String name:: %@",str);
[body appendData:[[NSString stringWithString:str] dataUsingEncoding:NSUTF8StringEncoding]];
//[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"uploadedfile\"; filename=\"video.mp4\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
//[body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:videoData1]];
//[body appendData:videoData];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
//set the body to the request
[request setHTTPBody:body];
// send the request
NSError *error13;
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error13];
if(error13 != nil)
{
NSLog(@"erro is = %@",error13);
}
NSLog(@"return data %@",returnData);
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"response from server is= %@",returnString);
这里我只得到结果字符串,
11月13日05:55:41 Lion-Users-iPod Vision [17484]:返回数据< 0909>
11月13日05:55:41 Lion-Users-iPod Vision [17484]:来自服务器的响应=
我不知道为什么我得到这个空值。因为路径不是空值,所以在我使用MPMoviePlayercontroller使用该路径进行节目预览之前就会这样做。
演奏得很好。我检查了一些video.mp4文件作为一个包,并创建了一个在代码上面使用的本地路径。它是使用上述格式从系统编译和设备上传的。
你可以指导我如何在服务器上上传视频文件以及我犯错的地方。
答案 0 :(得分:0)
拉曼这是IOS设备的经典用例。哪个不允许您直接使用路径值访问任何相册资产。要交叉检查我的答案,请检查FileExistsAtPath,如下所示 -
println(NSFileManager.defaultManager().fileExistsAtPath( urlvalue.path!))
O/P you will get => False
在阅读整个IOS文档之后,几天前我也回到了这个问题。我已经弄清楚了什么"当且仅当我们打开PHImageManager会话时才能访问PhotoAlbum资产"。要交叉检查此声明,请尝试以下代码 - :
var currentVideofetch: PHFetchResult!
required init(coder aDecoder: NSCoder) {
let options = PHFetchOptions()
options.sortDescriptors = [
NSSortDescriptor(key: "creationDate", ascending: true)
]
currentVideofetch = PHAsset.fetchAssetsWithMediaType(.Video, options: options)
super.init(coder: aDecoder)
}
func checkImageExists(){
let asset = self.currentVideofetch.objectAtIndex(1) as? PHAsset
}
if let checkedAsset = asset {
PHImageManager.defaultManager().requestAVAssetForVideo(checkedAsset, options: nil, resultHandler: {[weak self](result: AVAsset!, audioMix: AVAudioMix!, info: [NSObject : AnyObject]!) in
println(NSFileManager.defaultManager().fileExistsAtPath(self.urlvalue.path!))
})
}
O/P you will get => True
打开PHImageManager会话后,当我尝试使用路径访问视频时。它工作正常。还可以使用相册中的视频的相对路径成功上传背景中的所有视频文件。
如果您需要我可以发送给我我的实现。但不确定它是否正确。但对我来说工作正常。
希望它有所帮助。