如何从 iPhone 导入无时长的视频

发布于 2024-11-06 05:56:47 字数 116 浏览 0 评论 0原文

谁能帮帮我吗 我只想从 iphone 中挑选已经在 uiimagepicker 控制器的帮助下录制的视频。 我想复制我的应用程序文档目录。 ---------------------------------- 普拉桑特

can any one help me please
i just want to pick video from iphone which already recorded with help of uiimagepicker controller.
i want to copy my apps document directory.
---------------------------------- prashant

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无风消散 2024-11-13 05:56:48

我不确定你的意思是没有持续时间。但是您可以在 UIImagePickerDelegate 方法中进行复制/移动。

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

    NSURL *movieURL = (NSURL*)[info objectForKey:UIImagePickerControllerMediaURL];

    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSURL *saveURL = [NSURL fileURLWithPath:[documentsDirectory stringByAppendingPathComponent:@"movie.mov"]];

    NSError *error;
    if (!([[NSFileManager defaultManager] moveItemAtURL:movieURL toURL:saveURL error:&error])) {
        NSLog(@"Error saving: %@", [error localizedDescription]);
    }

    [picker dismissModalViewControllerAnimated:YES];
}

I am unsure of what you mean with no time duration. But you can do the copying/moving in the UIImagePickerDelegate method.

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

    NSURL *movieURL = (NSURL*)[info objectForKey:UIImagePickerControllerMediaURL];

    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSURL *saveURL = [NSURL fileURLWithPath:[documentsDirectory stringByAppendingPathComponent:@"movie.mov"]];

    NSError *error;
    if (!([[NSFileManager defaultManager] moveItemAtURL:movieURL toURL:saveURL error:&error])) {
        NSLog(@"Error saving: %@", [error localizedDescription]);
    }

    [picker dismissModalViewControllerAnimated:YES];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文