• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 无法从共享扩展 ios 保存视频

[复制链接]
菜鸟教程小白 发表于 2022-12-12 19:43:59 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我创建了一个共享扩展程序,其目的是将视频共享到我的容器应用程序。 作为共享流程的一部分,我想检查用户是否已登录等。 所以我创建了一个应用组,并在容器应用和扩展之间共享数据。(同时使用 NSUserDefaults 和核心数据)

 let  sharedUserDefaults = NSUserDefaults(suiteName:"group.app.group.name")
lazy var applicationDocumentsDirectory: NSURL = {
    NSFileManager.defaultManager().containerURLForSecurityApplicationGroupIdentifier("group.app.group.name")!
}()

这工作正常。

现在我正在尝试使用 SDAVAssetExportSession 压缩视频

let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd'T'HH-mm-ss"
let timeStamp = NSDate()
let asset = AVAsset(URL: self.shareVideoURL)
let exportSession = SDAVAssetExportSession(asset: asset)
let outputURL = self.applicationDocumentsDirectory.URLByAppendingPathComponent("\(dateFormatter.stringFromDate(timeStamp)).MP4")
exportSession.outputURL = outputURL
exportSession.outputFileType = AVFileTypeMPEG4
exportSession.shouldOptimizeForNetworkUse = true

let assetTrack = asset.tracksWithMediaType(AVMediaTypeVideo).first!

let videoWidth:NSNumber = assetTrack.naturalSize.width, videoHeight:NSNumber = assetTrack.naturalSize.height, 
let desiredBitrate:NSNumber = 3*1024*1024 , desiredKeyFrameInterval:NSNumber = 20
exportSession.videoSettings = [AVVideoCodecKey:AVVideoCodecH264,
    AVVideoWidthKey:videoWidth,
    AVVideoHeightKey:videoHeight,
    AVVideoCompressionPropertiesKey: [
        AVVideoAverageBitRateKey:desiredBitrate,
        AVVideoMaxKeyFrameIntervalKey:desiredKeyFrameInterval]]

exportSession.audioSettings = [AVFormatIDKey: NSNumber(unsignedInt: kAudioFormatMPEG4AAC),
    AVNumberOfChannelsKey: 2,
    AVSampleRateKey: 44100,
    AVEncoderBitRateKey: 64000]

exportSession.exportAsynchronouslyWithCompletionHandler({
    switch exportSession.status {
    case .Completed:
        print("Compressed Video size : \(Double(NSData(contentsOfURL: outputURL)!.length)/(1024*1024)) mb")
    case  .Failed:
        print("Export Failed :\(exportSession.error)")
    case .Cancelled:
        print("Export Cancelled :\(exportSession.error)")
    default:
        print("complete")
    }
})         

当我在共享扩展中执行此操作时,我收到错误:

Error Domain=NSURLErrorDomain Code=-3000 "Cannot create file" 
UserInfo={NSLocalizedDescription=Cannot create file, NSUnderlyingError=0x160900450 
{Error Domain=NSOSStatusErrorDomain Code=-12149 "(null)"}}

当我使用文档目录在另一个应用程序中运行此代码时,它可以正常工作,没有任何问题,但是当我开始使用应用程序组容器时,它不允许保存文件。

谁能指出正确的方向,将压缩文件保存在共享应用组容器中



Best Answer-推荐答案


我找不到 AVAssetExportSession 的解决方案并开始直接使用 AVAssetWriter,然后也通过 SDAVAssetExportSession

而且看起来很有效,它可以保存视频。 因此,请检查您保存到的那个 URL 对应于 this.

我重写了从链接到 Objective-C 的 Swift 代码

NSURL *groupPath = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier: @"group.**.***"];
groupPath = [groupPath URLByAppendingPathComponent: @"Library" isDirectory: YES];
groupPath = [groupPath URLByAppendingPathComponent"Caches" isDirectory: YES];

Rao's 之后添加的代码评论

希望你能解决这个问题,让我更新。

关于ios - 无法从共享扩展 ios 保存视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37026547/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap