2012-05-11 9 views
0

私は自分のアプリケーションでオーディオレコーディングを実装しましたが、オーディオレコーディングファイルをドキュメントディレクトリに保存し、他のクラスの同じファイルをオーディオ再生する方法を知る必要があります。iphoneオーディオファイルをドキュメントディレクトリに保存する方法

ここにソースコードがあります。

-(void)startPushed 
{ 
     NSMutableDictionary *rs = [[NSMutableDictionary alloc] init]; 
     [rs setValue:[NSNumber numberWithInt:kAudioFormatAppleIMA4] forKey:AVFormatIDKey]; 
     [rs setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey]; 
     [rs setValue:[NSNumber numberWithInt:2] forKey:AVNumberOfChannelsKey]; 
     recordedTmpFile = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"%.0f.%@", [NSDate timeIntervalSinceReferenceDate] * 1000.0, @"caf"]]]; 

     recorder = [[AVAudioRecorder alloc] initWithURL:recordedTmpFile settings:rs error:&error]; 
     [recorder setDelegate:self]; 
     [recorder prepareToRecord]; 
     [recorder record]; 


     NSArray *docPath = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES); 
     NSString *docDir = [docPath objectAtIndex:0]; 
     NSString *fullPath = [docDir stringByAppendingPathComponent:[NSString stringWithFormat:@"%@", recordedTmpFile]]; 
     NSLog(@"%@", fullPath); 
} 

-(void)playbackPushed 
    { 
    AVAudioPlayer *avPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:recordedTmpFile error:&error]; 
     NSLog(@"Play Path:%@", recordedTmpFile); 
     [avPlayer prepareToPlay]; 
     [avPlayer play]; 
    } 

(フォーマット.caf)オーディオファイルを読み書きする方法を教えてくださいドキュメントディレクトリ内 と、他のクラスのオーディオ再生のための情報を提供します。事前に

おかげで、このコード

-(NSURL *)documentDirectory{ 
return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject]; 

}

とパスにファイルをコピーするNSFileManagerを使用してiOSの中

答えて

0

アクセスドキュメントディレクトリ。

関連する問題