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

ios - Xamarin.iOS - ExportAsynchronously 失败

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

首先我应该提到我是新的(iOS 和 Xamarin)。 我正在尝试使用图像和文本为视频添加水印。

我已从链接中移植了大部分代码:https://stackoverflow.com/a/22016800/5275669 .

整个代码贴在这里:

try {

            var videoAsset = AVUrlAsset.FromUrl (new NSUrl (filepath, false)) as AVUrlAsset;
            AVMutableComposition mixComposition = AVMutableComposition.Create ();
            var compositionVideoTracks = mixComposition.AddMutableTrack (AVMediaType.Video, 0);
            AVAssetTrack clipVideoTrack = videoAsset.TracksWithMediaType (AVMediaType.Video) [0];
            var compositionAudioTrack = mixComposition.AddMutableTrack (AVMediaType.Audio, 0);
            AVAssetTrack clipAudioTrack = videoAsset.TracksWithMediaType (AVMediaType.Audio) [0];

            NSError error;
            CMTimeRange timeRangeInAsset = new CMTimeRange ();
            timeRangeInAsset.Start = CMTime.Zero;
            timeRangeInAsset.Duration = videoAsset.Duration;
            compositionVideoTracks.InsertTimeRange (timeRangeInAsset, clipVideoTrack, CMTime.Zero, out error);
            compositionVideoTracks.InsertTimeRange (timeRangeInAsset, clipAudioTrack, CMTime.Zero, out error);
            compositionVideoTracks.PreferredTransform = clipVideoTrack.PreferredTransform;

            CGSize sizeOfVideo = videoAsset.NaturalSize;

            CATextLayer textOfvideo = (CATextLayer)CATextLayer.Create ();
            textOfvideo.String = String.Format ("{0} {1}", DateTime.Now.ToLongTimeString (), "Test app");
            textOfvideo.SetFont (CGFont.CreateWithFontName ("Helvetica"));
            textOfvideo.FontSize = 50;
            textOfvideo.AlignmentMode = CATextLayer.AlignmentCenter;
            textOfvideo.Frame = new CGRect (0, 0, sizeOfVideo.Width, sizeOfVideo.Height / 6);
            textOfvideo.ForegroundColor = new CGColor (255, 0, 0);

            UIImage myImage = UIImage.FromFile ("Icon-Small.png");
            CALayer layerCa = CALayer.Create ();
            layerCa.Contents = myImage.CGImage;
            layerCa.Frame = new CGRect (0, 0, 100, 100);
            layerCa.Opacity = 0.65F;

            CALayer optionalLayer = CALayer.Create ();
            optionalLayer.AddSublayer (textOfvideo);
            optionalLayer.Frame = new CGRect (0, 0, sizeOfVideo.Width, sizeOfVideo.Height);
            optionalLayer.MasksToBounds = true;

            CALayer parentLayer = CALayer.Create ();
            CALayer videoLayer = CALayer.Create ();
            parentLayer.Frame = new CGRect (0, 0, sizeOfVideo.Width, sizeOfVideo.Height);
            videoLayer.Frame = new CGRect (0, 0, sizeOfVideo.Width, sizeOfVideo.Height);
            parentLayer.AddSublayer (videoLayer);
            parentLayer.AddSublayer (layerCa);
            parentLayer.AddSublayer (textOfvideo);

            AVMutableVideoComposition videoComposition = AVMutableVideoComposition.Create ();
            videoComposition.RenderSize = sizeOfVideo;
            videoComposition.FrameDuration = new CMTime (1, 30);
            videoComposition.AnimationTool = AVVideoCompositionCoreAnimationTool.FromLayer (videoLayer, parentLayer);

            AVMutableVideoCompositionInstruction instruction = AVMutableVideoCompositionInstruction.Create () as AVMutableVideoCompositionInstruction;
            CMTimeRange timeRangeInstruction = new CMTimeRange ();
            timeRangeInstruction.Start = CMTime.Zero;
            timeRangeInstruction.Duration = mixComposition.Duration;
            instruction.TimeRange = timeRangeInstruction;
            AVAssetTrack videoTrack = mixComposition.TracksWithMediaType (AVMediaType.Video) [0];

            AVMutableVideoCompositionLayerInstruction layerInstruction = AVMutableVideoCompositionLayerInstruction.FromAssetTrack (videoTrack);
            instruction.LayerInstructions = new AVVideoCompositionLayerInstruction[] { layerInstruction };
            List<AVVideoCompositionInstruction> instructions = new List<AVVideoCompositionInstruction> ();
            instructions.Add (instruction);
            videoComposition.Instructions = instructions.ToArray ();

            var exportSession = new AVAssetExportSession (mixComposition, AVAssetExportSession.PresetMediumQuality);
            exportSession.VideoComposition = videoComposition;

            Console.WriteLine ("Original path is {0}", filepath);
            string newFileName = Path.GetFileName (filepath);
            newFileName = newFileName.Replace (".mp4", "_wm.mp4");
            string directoryName = Path.GetDirectoryName (filepath);
            string videoOutFilePath = Path.Combine (directoryName, newFileName);
            Console.WriteLine ("New path is {0}", videoOutFilePath);

            exportSession.OutputFileType = AVFileType.Mpeg4;
            exportSession.OutputUrl = NSUrl.FromFilename (videoOutFilePath);
            exportSession.ShouldOptimizeForNetworkUse = true;
            exportSession.ExportAsynchronously (() => {
                AVAssetExportSessionStatus status = exportSession.Status;
                Console.WriteLine ("Done with handler. Status: " + status.ToString ());
                switch (status) {
                case AVAssetExportSessionStatus.Completed:
                    Console.WriteLine ("Sucessfully Completed");
                    if (File.Exists (videoOutFilePath)) {
                        Console.WriteLine ("Created!!");
                    } else
                        Console.WriteLine ("Failed");
                    break;
                case AVAssetExportSessionStatus.Cancelled:
                    break;
                case AVAssetExportSessionStatus.Exporting:
                    break;
                case AVAssetExportSessionStatus.Failed:
                    Console.WriteLine ("Task failed => {0}", exportSession.Error);
                    Console.WriteLine (exportSession.Error.Description);
                    break;
                case AVAssetExportSessionStatus.Unknown:
                    break;
                case AVAssetExportSessionStatus.Waiting:
                    break;
                default:
                    break;
                }
            });

            if (File.Exists (videoOutFilePath))
                return videoOutFilePath;
        } catch (Exception ex) {
            Console.WriteLine ("Error occured : {0}", ex.Message);
        }

我不断收到以下错误: 任务失败 => 无法完成导出 Error Domain=AVFoundationErrorDomain Code=-11820 "Cannot Complete Export"UserInfo=0x18896070 {NSLocalizedRecoverySuggestion=再次尝试导出。, NSLocalizedDescription=Cannot Complete Export}

如果我替换这个

var exportSession = new AVAssetExportSession (mixComposition, AVAssetExportSession.PresetMediumQuality);

var exportSession = new AVAssetExportSession (videoAsset, AVAssetExportSession.PresetMediumQuality);

它工作正常,但没有水印

有人可以帮忙吗?



Best Answer-推荐答案


所以我设法通过更改这些行来解决这个问题

compositionVideoTracks.InsertTimeRange (timeRangeInAsset, clipVideoTrack, CMTime.Zero, out error);
compositionVideoTracks.InsertTimeRange (timeRangeInAsset, clipAudioTrack, CMTime.Zero, out error);
compositionVideoTracks.PreferredTransform = clipVideoTrack.PreferredTransform;

到这里:

compositionVideoTracks.InsertTimeRange (timeRangeInAsset, clipVideoTrack, CMTime.Zero, out error);
compositionAudioTrack.InsertTimeRange (timeRangeInAsset, clipAudioTrack, CMTime.Zero, out error);
compositionVideoTracks.PreferredTransform = clipVideoTrack.PreferredTransform;

虽然我不确定为什么会这样。谁能解释一下?

关于ios - Xamarin.iOS - ExportAsynchronously 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33929938/

回复

使用道具 举报

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

本版积分规则

关注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