How to convert WAV file to M4A?

℡╲_俬逩灬. 提交于 2019-12-05 00:17:57

问题


Is there any way to convert my recorded .WAV file to .M4A file in iOS?

And also I have to convert .M4A file to .WAV file.

I tried with Audio Queue Services, but I am not able to do.


回答1:


This post: From iPod Library to PCM Samples in Far Fewer Steps Than Were Previously Necessary describes how to load a file from the users ipod library and write it to the file system as a linear pcm (wav) file.

I believe that the change that you will need to make to the code to load a file from the file system instead would be in the NSURL that describes where the asset is:

-(IBAction) convertTapped: (id) sender {
// set up an AVAssetReader to read from the iPod Library
NSURL *assetURL = [[NSURL alloc]  initFileURLWithPath:@"your_m4a.m4a"];
AVURLAsset *songAsset =
    [AVURLAsset URLAssetWithURL:assetURL options:nil];

NSError *assetError = nil;
AVAssetReader *assetReader =
    [[AVAssetReader assetReaderWithAsset:songAsset
           error:&assetError]
      retain];
if (assetError) {
    NSLog (@"error: %@", assetError);
    return;
}

If you are going in the opposite direction, you will need to change the formatting on the output end:

NSDictionary *outputSettings =[NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
[NSNumber numberWithFloat:44100.0], AVSampleRateKey,
[NSNumber numberWithInt:2], AVNumberOfChannelsKey,
[NSData dataWithBytes:&channelLayout length:sizeof(AudioChannelLayout)],
    AVChannelLayoutKey,
[NSNumber numberWithInt:16], AVLinearPCMBitDepthKey,
[NSNumber numberWithBool:NO], AVLinearPCMIsNonInterleaved,
[NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,
[NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
nil];

I am not sure of the exact settings that would go in here for m4a, but this should get you closer.

The other option would be to load in ffmpeg lib and do all your conversion in there, but that seems like different than what you want.




回答2:


TPAACAudioConverter works fine



来源:https://stackoverflow.com/questions/4824980/how-to-convert-wav-file-to-m4a

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!