gpt4 book ai didi

iphone - 使用 iPhone 上传视频

转载 作者:行者123 更新时间:2023-11-28 21:39:46 24 4
gpt4 key购买 nike

是否可以将视频上传到服务器?我知道图像是可能的。如果有人能给我指出正确的方向,那就太棒了。

谢谢

最佳答案

2015 年 8 月编辑

这个答案现在已经严重过时了。在撰写本文时,没有太多选择,视频也相对较小。如果您现在正在考虑这样做,我会使用 AFNetworking,这会让事情变得更简单。它将从文件流式传输上传,而不是将其全部保存在内存中,并且还支持新的 Apple 后台上传任务。

此处的文档:https://github.com/AFNetworking/AFNetworking#creating-an-upload-task

--

是的,这是可能的,我就是这样做的。

实现以下函数,该函数在媒体选择器完成时运行。

- (NSData *)generatePostDataForData:(NSData *)uploadData
{
// Generate the post header:
NSString *post = [NSString stringWithCString:"--AaB03x\r\nContent-Disposition: form-data; name=\"upload[file]\"; filename=\"somefile\"\r\nContent-Type: application/octet-stream\r\nContent-Transfer-Encoding: binary\r\n\r\n" encoding:NSASCIIStringEncoding];

// Get the post header int ASCII format:
NSData *postHeaderData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];

// Generate the mutable data variable:
NSMutableData *postData = [[NSMutableData alloc] initWithLength:[postHeaderData length] ];
[postData setData:postHeaderData];

// Add the image:
[postData appendData: uploadData];

// Add the closing boundry:
[postData appendData: [@"\r\n--AaB03x--" dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]];

// Return the post data:
return postData;
}


- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{

//assign the mediatype to a string
NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];

//check the media type string so we can determine if its a video
if ([mediaType isEqualToString:@"public.movie"]){
NSLog(@"got a movie");
NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL];
NSData *webData = [NSData dataWithContentsOfURL:videoURL];
[self post:webData];
[webData release];

}

对于 post 函数,我从其他地方得到了类似这样的东西(抱歉,我不知道我在哪里找到它):

- (void)post:(NSData *)fileData
{

NSLog(@"POSTING");

// Generate the postdata:
NSData *postData = [self generatePostDataForData: fileData];
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

// Setup the request:
NSMutableURLRequest *uploadRequest = [[[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://www.example.com:3000/"] cachePolicy: NSURLRequestReloadIgnoringLocalCacheData timeoutInterval: 30 ] autorelease];
[uploadRequest setHTTPMethod:@"POST"];
[uploadRequest setValue:postLength forHTTPHeaderField:@"Content-Length"];
[uploadRequest setValue:@"multipart/form-data; boundary=AaB03x" forHTTPHeaderField:@"Content-Type"];
[uploadRequest setHTTPBody:postData];

// Execute the reqest:
NSURLConnection *conn=[[NSURLConnection alloc] initWithRequest:uploadRequest delegate:self];
if (conn)
{
// Connection succeeded (even if a 404 or other non-200 range was returned).
NSLog(@"sucess");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Got Server Response" message:@"Success" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
}
else
{
// Connection failed (cannot reach server).
NSLog(@"fail");
}

}

上面的代码片段构建了 http post 请求并提交了它。如果您想要适当的错误处理并考虑使用允许异步上传的库(github 上有一个),您将需要修改它

还要注意上面服务器 url 上的端口 :3000,我发现在开发模式下在其默认端口 3000 上启动 rails 服务器很容易进行错误测试,这样我就可以看到用于调试目的的请求参数

希望对你有帮助

关于iphone - 使用 iPhone 上传视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1065628/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com