6

私はビデオを圧縮するために以下のコードを使用しています。

- (void)convertVideoToLowQuailtyWithInputURL:(NSURL*)inputURL
                                   outputURL:(NSURL*)outputURL
                                     handler:(void (^)(AVAssetExportSession*))handler
{

    [[NSFileManager defaultManager] removeItemAtURL:outputURL error:nil];
    AVURLAsset *asset = [AVURLAsset URLAssetWithURL:inputURL options:nil];
    AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetMediumQuality];
    exportSession.outputURL = outputURL;
    exportSession.outputFileType = AVFileTypeQuickTimeMovie;

    [exportSession exportAsynchronouslyWithCompletionHandler:^(void)
     {

         if (exportSession.status == AVAssetExportSessionStatusCompleted)
         {

             printf("completed\n");
             NSLog(@"outputurl is %@",outputURL);

         }
         else
         {
             printf("error\n");
             NSLog(@"error is %@",exportSession.error);

         }

     }];

}

圧縮後、iOS6ではビデオのサウンドが非常に低くなりますが、iOS 5では完全な元のボリュームを取得していますが、iOS6で元のボリュームを取得するにはどうすればよいですか。

4

1 に答える 1

1

iOS 6 でサウンドの問題が発生しました。以下の URL が役立つことを願っています。

https://discussions.apple.com/thread/4339660?start=90&tstart=0

于 2013-02-28T06:58:12.983 に答える