音頻格式轉(zhuǎn)化 m4a 轉(zhuǎn) wav

還是因為音頻合成的原因,合成的音頻是m4a 格式,上傳到七牛后,形成的鏈接,瀏覽器可以播放。但是手機不行,m4a 是偏視頻格式,用原有的avplayer 方法不能播放,所以需要進行轉(zhuǎn)化后上傳播放,

??:更新 之前刪除臨時m4a轉(zhuǎn)化文件的位置不對導(dǎo)致音頻過段,還有采樣率一定要對上。
下面是一些采樣率的基礎(chǔ)值介紹:

一定要采用合適的采樣率,要不音頻是播不出來的。

代碼如下:

-(void)convetM4aToWav:(NSURL *)originalUrl
               destUrl:(NSString *)destUrlStr
             completed:(void (^)(NSError *error)) completed {
    NSLog(@"\n\n\nM4A-WAV\n\n\n");
    
    
    if ([[NSFileManager defaultManager] fileExistsAtPath:destUrlStr]) {
        [[NSFileManager defaultManager] removeItemAtPath:destUrlStr error:nil];
    }
    NSURL *destUrl     = [NSURL fileURLWithPath:destUrlStr];
    AVURLAsset *songAsset = [AVURLAsset URLAssetWithURL:originalUrl options:nil];
    
    //讀取原始文件信息
    NSError *error = nil;
    AVAssetReader *assetReader = [AVAssetReader assetReaderWithAsset:songAsset error:&error];
    if (error) {
        NSLog (@"error: %@", error);
        completed(error);
        return;
    }
    AVAssetReaderOutput *assetReaderOutput = [AVAssetReaderAudioMixOutput
                                              assetReaderAudioMixOutputWithAudioTracks:songAsset.tracks
                                              audioSettings: nil];
    if (![assetReader canAddOutput:assetReaderOutput]) {
        NSLog (@"can't add reader output... die!");
        completed(error);
        return;
    }
    [assetReader addOutput:assetReaderOutput];
    
    AVAssetWriter *assetWriter = [AVAssetWriter assetWriterWithURL:destUrl
                                                          fileType:AVFileTypeCoreAudioFormat
                                                             error:&error];
    if (error) {
        NSLog (@"error: %@", error);
        completed(error);
        return;
    }
    AudioChannelLayout channelLayout;
    memset(&channelLayout, 0, sizeof(AudioChannelLayout));
    channelLayout.mChannelLayoutTag = kAudioChannelLayoutTag_Stereo;
    NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:
                                    [NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
                                    [NSNumber numberWithFloat:8000], AVSampleRateKey,
                                    [NSNumber numberWithInt:2], AVNumberOfChannelsKey,
                                    [NSNumber numberWithInt:16], AVLinearPCMBitDepthKey,
                                   [NSData dataWithBytes :&channelLayout             length:sizeof(AudioChannelLayout)],AVChannelLayoutKey,
                                    [NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
                                    [NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,
                                    [NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
                                    nil];
    AVAssetWriterInput *assetWriterInput = [AVAssetWriterInput assetWriterInputWithMediaType:AVMediaTypeAudio
                                                                              outputSettings:outputSettings];
    if ([assetWriter canAddInput:assetWriterInput]) {
        [assetWriter addInput:assetWriterInput];
    } else {
        NSLog (@"can't add asset writer input... die!");
        completed(error);
        return;
    }
    
    assetWriterInput.expectsMediaDataInRealTime = NO;
    
    [assetWriter startWriting];
    [assetReader startReading];
    
    AVAssetTrack *soundTrack = [songAsset.tracks objectAtIndex:0];
    CMTime startTime = CMTimeMake (0, soundTrack.naturalTimeScale);
    [assetWriter startSessionAtSourceTime:startTime];
    
    __block UInt64 convertedByteCount = 0;
    
    dispatch_queue_t mediaInputQueue = dispatch_queue_create("mediaInputQueue", NULL);
    [assetWriterInput requestMediaDataWhenReadyOnQueue:mediaInputQueue
                                            usingBlock: ^
     {
         while (assetWriterInput.readyForMoreMediaData) {
             CMSampleBufferRef nextBuffer = [assetReaderOutput copyNextSampleBuffer];
             if (nextBuffer) {
                 // append buffer
                 [assetWriterInput appendSampleBuffer: nextBuffer];
                 //                 NSLog (@"appended a buffer (%zu bytes)",
                 //                        CMSampleBufferGetTotalSampleSize (nextBuffer));
                 convertedByteCount += CMSampleBufferGetTotalSampleSize (nextBuffer);
                 
                 
             } else {
                 [assetWriterInput markAsFinished];
                 [assetWriter finishWritingWithCompletionHandler:^{
                     
                 }];
                 [assetReader cancelReading];
                 NSDictionary *outputFileAttributes = [[NSFileManager defaultManager]
                                                       attributesOfItemAtPath:[destUrl path]
                                                       error:nil];
                 NSLog (@"FlyElephant %lld",[outputFileAttributes fileSize]);

                    NSLog(@"轉(zhuǎn)換結(jié)束");
         // 刪除臨時temprecordAudio.m4a文件
         NSError *removeError = nil;
         
         if ([[NSFileManager defaultManager] fileExistsAtPath:[originalUrl path]]) {
             BOOL success = [[NSFileManager defaultManager] removeItemAtPath:[originalUrl path] error:&removeError];
             if (!success) {
                 NSLog(@"刪除臨時temprecordAudio.m4a文件失敗:%@",removeError);
                 completed(removeError);
             }else{
                 NSLog(@"刪除臨時temprecordAudio.m4a文件:%@成功",originalUrl);
                 completed(removeError);
             }
         }else {
             NSLog(@"文件不存在");
         }
                 break;
             }
         }
     
     }];
}

文檔目錄相關(guān)代碼如下:

- (NSString *)documentPath
{
    NSString *documentPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).lastObject;
    return documentPath;
}

- (NSString *)audioCacheFolder
{
    NSString *audioFolder = [[self documentPath] stringByAppendingPathComponent:AUDIOCACHE];
    if (![FILEMANAGER fileExistsAtPath:audioFolder]) {
        NSError *error = nil;
        [FILEMANAGER createDirectoryAtPath:audioFolder withIntermediateDirectories:YES attributes:nil error:&error];
        if (error) {
            NSLog(@"音頻文件夾創(chuàng)建失敗----%@", error);
        }
    }

    return audioFolder;
}
//用url作為文件名
- (NSString *)audioFilePath:(NSString *)audioURL
{
    NSString *fileName = [audioURL stringByReplacingOccurrencesOfString:@"/" withString:@"-"];
    return [[self audioCacheFolder] stringByAppendingPathComponent:fileName];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容