2011-04-30 40 views
1

我的应用程序创建一个mp4文件。我验证过的代码,我对以下设备的工作原理:AVAssetWriter startWriting在iPod Touch第三代操作系统4.2.1上失败

  • 的iPad(OS 4.3.2)
  • 的iPhone4(OS 4.2.1)
  • 的iPhone 3GS(OS 4.2.1)

..但我的iPod Touch第三代运行OS 4.2.1的init失败。

这与这里的another question有关,但我在另一个iOS设备上看到了它,而我在这里包含了我的init代码。与其他问题一样,我尝试过不同的像素格式以及比特率,但AVAssetWriter的状态在调用其startWriting函数后始终更改为AVAssetWriterStatusFailed

任何想法将不胜感激。我知道在这个设备上可以创建mp4,因为我已经下载了另一个应用程序,它可以在我的代码失败的相同设备上正常工作。

这是做视频设置的最小代码。

#import "AVFoundation/AVFoundation.h" 
#import "AVFoundation/AVAssetWriterInput.h" 
#import "AVFoundation/AVAssetReader.h" 
#import "Foundation/NSUrl.h" 


void VideoSetupTest() 
{ 
    int width = 320; 
    int height = 480; 

    // Setup the codec settings. 
    int nBitsPerSecond = 100000; 
    NSDictionary *codecSettings = [NSDictionary dictionaryWithObjectsAndKeys: 
            [NSNumber numberWithInt: nBitsPerSecond], AVVideoAverageBitRateKey, 
            nil];   

    // Create the AVAssetWriterInput. 
    NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys: 
            AVVideoCodecH264, AVVideoCodecKey, 
            codecSettings, AVVideoCompressionPropertiesKey, 
            [NSNumber numberWithInt: width], AVVideoWidthKey, 
            [NSNumber numberWithInt: height], AVVideoHeightKey, 
            nil]; 

    AVAssetWriterInput *assetWriterInput = [AVAssetWriterInput assetWriterInputWithMediaType: AVMediaTypeVideo outputSettings: outputSettings]; 
    [assetWriterInput retain]; 

    // Create the AVAssetWriterPixelBufferAdaptor. 
    NSDictionary *pixelBufferAdaptorAttribs = [NSDictionary dictionaryWithObjectsAndKeys: 
               [NSNumber numberWithInt: kCVPixelFormatType_32BGRA], kCVPixelBufferPixelFormatTypeKey, 
               [NSNumber numberWithInt: width], kCVPixelBufferWidthKey, 
               [NSNumber numberWithInt: height], kCVPixelBufferHeightKey, 
               nil]; 
    AVAssetWriterInputPixelBufferAdaptor *pixelBufferAdaptor = [AVAssetWriterInputPixelBufferAdaptor alloc]; 
    [pixelBufferAdaptor initWithAssetWriterInput: assetWriterInput sourcePixelBufferAttributes: pixelBufferAdaptorAttribs]; 



    // Figure out a filename. 
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
    NSString *documentsDirectory = [paths objectAtIndex:0]; 
    char szFilename[256]; 
    sprintf(szFilename, "%s/test.mp4", [documentsDirectory UTF8String]); 
    unlink(szFilename); 
    printf("Filename:\n%s\n\n", szFilename); 


    // Create the AVAssetWriter. 
    NSError *pError; 
    NSURL *url = [NSURL fileURLWithPath: [NSString stringWithUTF8String: szFilename]]; 
    AVAssetWriter *assetWriter = [AVAssetWriter alloc]; 
    [assetWriter initWithURL:url fileType:AVFileTypeMPEG4 error:&pError]; 


    // Bind these things together and start! 
    assetWriterInput.expectsMediaDataInRealTime = YES; 
    [assetWriter addInput:assetWriterInput]; 


    // 
    // ** NOTE: Here's the call where [assetWriter status] starts returning AVAssetWriterStatusFailed 
    //   on an iPod 3rd Gen running iOS 4.2.1. 
    // 
    [assetWriter startWriting]; 
} 
+0

**下面是我运行的一个额外的测试:**以.mp4并尝试为它创建一个AVAssetExportSession,然后查看_ [AVAssetExportSession supportedFileTypes] _返回的内容。结果:在** iPhone4 **和** iPad **上,我可以创建会话并支持com.apple.quicktime-电影文件。在** iPod Touch第3代**上,我甚至无法创建AVAssetExportSession。 _ [AVAssetExportSession exportSessionWithAsset] _只返回NULL。请注意,它_does_将.mp4文件正确加载到iPodT3上的AVAsset中。 – Mike 2011-05-05 22:53:01

+0

**另一个测试:**看看iPodT3是否可以播放这些.mp4视频。我通过电子邮件(通过gmail)发送了我的iPhone4创建的.mp4文件之一,并在iPodT3上阅读该电子邮件。我能够播放.mp4文件就好了。 – Mike 2011-05-05 22:53:43

+0

**另一个测试:**尝试使用AVAssetWriterInput创建一个.wav文件(使用LinearPCM 16,单声道,11025hz)或.m4a(kAudioFormatMPEG4AAC)。我可以在iPodT3上创建这两个。所以我可以用它来创建mpeg4音频文件,但我无法创建(任何)视频文件。 – Mike 2011-05-05 22:57:00

回答

2

我得出的结论是,iPod Touch第三代无法创建.mp4视频,句号。这是有道理的 - 为什么包含视频编码硬件的设备甚至没有相机捕捉视频?

这让我觉得它可以可能创建.mp4视频的事情是,我有另一个应用程序,它能够从我的iPod Touch 3创建它们。但是在分析该应用程序的.mp4视频时,它实际上是用ffmpeg创建的H.263(MPEG-4 part-2)视频。 (而AVFoundation将创建H.264视频,如果它可以在设备上完成的话)。

+0

我在我的iPod Touch 2nd Gen上运行OS 4.2.1时遇到了同样的问题,试图创建一个QuickTime电影。你还认为他们不能制作视频,因为他们缺乏编码硬件? – user258279 2012-01-07 03:21:41

相关问题