iOS 녹음
AVAudioRecorder
녹음으로 생성wav
형식 오디오lame
wav
형식을 mp3
- (void)recordAudio
{
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryRecord error:nil];
NSError *error = nil;
audioRecorder = [[ AVAudioRecorder alloc] initWithURL:[NSURL URLWithString:[self getAudioFilePath]] settings:[self audioRecordingSettings] error:&error];
audioRecorder.meteringEnabled = YES;
if ([audioRecorder prepareToRecord] == YES)
{
audioRecorder.meteringEnabled = YES;
[audioRecorder record];
}
else
{
NSLog(@" ");
}
}
- (void)convertToMp3
{
NSString *mp3FilePath = [self getMp3FilePath];
@try {
int read, write;
FILE *pcm = fopen([[self getAudioFilePath] cStringUsingEncoding:1], "rb"); //source
fseek(pcm, 4*1024, SEEK_CUR); //skip file header
FILE *mp3 = fopen([mp3FilePath cStringUsingEncoding:1], "wb"); //output Mp3
const int PCM_SIZE = 8192;
const int MP3_SIZE = 8192;
short int pcm_buffer[PCM_SIZE*2];
unsigned char mp3_buffer[MP3_SIZE];
lame_t lame = lame_init();
lame_set_in_samplerate(lame, 11025.0);
lame_set_VBR(lame, vbr_default);
lame_init_params(lame);
do {
read = fread(pcm_buffer, 2*sizeof(short int), PCM_SIZE, pcm);
if (read == 0)
write = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
else
write = lame_encode_buffer_interleaved(lame, pcm_buffer, read, mp3_buffer, MP3_SIZE);
fwrite(mp3_buffer, write, 1, mp3);
} while (read != 0);
lame_close(lame);
fclose(mp3);
fclose(pcm);
}
@catch (NSException *exception)
{
NSLog(@"%@",[exception description]);
}
@finally
{
NSLog(@"MP3 : %@",mp3FilePath);
[self loadData];
}
}
- (NSDictionary *)audioRecordingSettings{
NSDictionary *result = nil;
NSMutableDictionary *recordSetting = [[NSMutableDictionary alloc]init];
// AVFormatIDKey==kAudioFormatLinearPCM
[recordSetting setValue:[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];
// [recordSetting setValue:[NSNumber numberWithInt:kAudioFormatAppleLossless] forKey:AVFormatIDKey];
// (Hz) :AVSampleRateKey==8000/44100/96000( )
[recordSetting setValue:[NSNumber numberWithFloat:11025.0] forKey:AVSampleRateKey];
// 1 2
[recordSetting setValue:[NSNumber numberWithInt:2] forKey:AVNumberOfChannelsKey];
// 8、16、24、32
// [recordSetting setValue:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
//
[recordSetting setValue:[NSNumber numberWithInt:AVAudioQualityHigh] forKey:AVEncoderAudioQualityKey];
result = [NSDictionary dictionaryWithDictionary:recordSetting];
return result;
}
- (NSString *)getAudioFilePath
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
return [paths[0] stringByAppendingPathComponent:@"asrview.wav"];
}
- (NSString *)getMp3FilePath
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
return [paths[0] stringByAppendingPathComponent:@"asrview.mp3"];
}
http://blog.csdn.net/ysy441088327/article/details/7392842 https://github.com/Superbil/build-lame-for-iOS
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.