首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >将音频线性pcm转换为mp3 (使用LAME )低、中、高音频质量设置

将音频线性pcm转换为mp3 (使用LAME )低、中、高音频质量设置
EN

Stack Overflow用户
提问于 2013-08-22 04:29:01
回答 1查看 1.5K关注 0票数 0

我在iOS.I中编码一个LinearPCM到mp3。我试图用AudioToolbox框架和Lame.And将原始的PCM数据从麦克风编码到mp3,尽管一切似乎都很好--如果我记录了一个音频--它是在lame编码概念的帮助下转换为MP3的,同时播放录制的mp3音频文件工作fine.now --我想转换音频(使用lame)就像低、中、高质量的MP3文件一样。我不知道确切的设置(采样率,比特率,比特率,切尼,质量),同时跛行转换过程。

代码语言:javascript
复制
void AQRecorder::MyInputBufferHandler(  void *                              inUserData,
                                AudioQueueRef                       inAQ,
                                AudioQueueBufferRef                 inBuffer,
                                const AudioTimeStamp *              inStartTime,
                                UInt32                              inNumPackets,
                                const AudioStreamPacketDescription* inPacketDesc)
  {
  AQRecorder *aqr = (AQRecorder *)inUserData;
  //    NSLog(@"%f",inStartTime->mSampleTime);
  try
  {
    if (inNumPackets > 0)
    {
        AudioFileWritePackets(aqr->mRecordFile, FALSE, inBuffer->mAudioDataByteSize, inPacketDesc, aqr->mRecordPacket, &inNumPackets, inBuffer->mAudioData);

        aqr->mRecordPacket += inNumPackets;

        int MP3_SIZE =inBuffer->mAudioDataByteSize * 4;
        unsigned char mp3_buffer[MP3_SIZE];
        lame_t lame = lame_init();
        lame_set_in_samplerate(lame, 44100);
        lame_set_VBR(lame, vbr_default);
        lame_init_params(lame);

  //                int encodedBytes=lame_encode_buffer_interleaved(lame, (short int *)inBuffer->mAudioData , inNumPackets, mp3_buffer, MP3_SIZE);


        int encodedBytes = lame_encode_buffer(lame, (short*)inBuffer->mAudioData,  (short*)inBuffer->mAudioData, inNumPackets, mp3_buffer, MP3_SIZE);

        [delegate.mp3AudioData appendBytes:mp3_buffer length:encodedBytes];

        if (inBuffer->mAudioDataByteSize != 0) {
        }
        else
        {
            int encode=lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
            [delegate.mp3AudioData appendBytes:mp3_buffer length:encode];
        }
        lame_close(lame);
    }

    if (aqr->IsRunning())
    {
        AudioQueueEnqueueBuffer(inAQ, inBuffer, 0, NULL);
    }
  } catch (CAXException e)
 {
 char buf[256];
 fprintf(stderr, "Error: %s (%s)\n", e.mOperation, e.FormatError(buf));
}
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-08-30 06:04:22

尝尝这个,

低质量:

代码语言:javascript
复制
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
        NSMutableDictionary *dictAudioQuality =[[NSMutableDictionary alloc]init];
        [dictAudioQuality setValue:@"Low" forKey:@"audioquality"];
        [dictAudioQuality setValue:@"11025" forKey:@"samplerate"];
        [dictAudioQuality setValue:@"16" forKey:@"bitdepth"];
        [dictAudioQuality setValue:@"120" forKey:@"bitrate"];
        [dictAudioQuality setValue:@"1" forKey:@"channel"];

介质质量:

代码语言:javascript
复制
 AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
        NSMutableDictionary *dictAudioQuality =[[NSMutableDictionary alloc]init];
        [dictAudioQuality setValue:@"Medium" forKey:@"audioquality"];
        [dictAudioQuality setValue:@"22050" forKey:@"samplerate"];
        [dictAudioQuality setValue:@"16" forKey:@"bitdepth"];
        [dictAudioQuality setValue:@"240" forKey:@"bitrate"];
        [dictAudioQuality setValue:@"1" forKey:@"channel"];

高质量:

代码语言:javascript
复制
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
        NSMutableDictionary *dictAudioQuality =[[NSMutableDictionary alloc]init];
        [dictAudioQuality setValue:@"High" forKey:@"audioquality"];
        [dictAudioQuality setValue:@"44100" forKey:@"samplerate"];
        [dictAudioQuality setValue:@"24" forKey:@"bitdepth"];
        [dictAudioQuality setValue:@"320" forKey:@"bitrate"];
        [dictAudioQuality setValue:@"2" forKey:@"channel"];

AQRecorder.m启动记录

代码语言:javascript
复制
void AQRecorder::StartRecord(CFStringRef inRecordFile)
{
int i, bufferByteSize;
UInt32 size;

delegate =[[UIApplication sharedApplication]delegate];
nSampleRate =[[delegate.dictMP3Quality valueForKey:@"samplerate"] intValue];
nBitRate =[[delegate.dictMP3Quality valueForKey:@"bitrate"] intValue];
nChannel =[[delegate.dictMP3Quality valueForKey:@"channel"] intValue];

try {

    UInt32 category = kAudioSessionCategory_RecordAudio;

    OSStatus error = AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(category), &category);
    if (error) printf("couldn't set audio category!");

    // specify the recording format
    SetupAudioFormat(kAudioFormatLinearPCM);

    // create the queue
    XThrowIfError(AudioQueueNewInput(
                                     &mRecordFormat,
                                     MyInputBufferHandler,
                                     this /* userData */,
                                     NULL /* run loop */, NULL /* run loop mode */,
                                     0 /* flags */, &mQueue), "AudioQueueNewInput failed");

    // get the record format back from the queue's audio converter --
    // the file may require a more specific stream description than was necessary to create the encoder.
    mRecordPacket = 0;

    size = sizeof(mRecordFormat);
    XThrowIfError(AudioQueueGetProperty(mQueue, kAudioQueueProperty_StreamDescription,
                                        &mRecordFormat, &size), "couldn't get queue's format");

    // copy the cookie first to give the file object as much info as we can about the data going in
    // not necessary for pcm, but required for some compressed audio
    CopyEncoderCookieToFile();

    // allocate and enqueue buffers
    bufferByteSize = ComputeRecordBufferSize(&mRecordFormat, kBufferDurationSeconds);   // enough bytes for half a second
    for (i = 0; i < kNumberRecordBuffers; ++i) {
        XThrowIfError(AudioQueueAllocateBuffer(mQueue, bufferByteSize, &mBuffers[i]),
                      "AudioQueueAllocateBuffer failed");
        XThrowIfError(AudioQueueEnqueueBuffer(mQueue, mBuffers[i], 0, NULL),
                      "AudioQueueEnqueueBuffer failed");
    }
    // start the queue
    mIsRunning = true;
    XThrowIfError(AudioQueueStart(mQueue, NULL), "AudioQueueStart failed");

    lame = lame_init();
    lame_set_in_samplerate(lame, mRecordFormat.mSampleRate);
    lame_set_out_samplerate(lame, nSampleRate);
    lame_set_num_channels(lame, nChannel);
    //  lame_set_brate(lame, nBitRate);
    lame_set_VBR(lame, vbr_default);
    lame_init_params(lame);
}
catch (CAXException e) {
    char buf[256];
    fprintf(stderr, "Error: %s (%s)\n", e.mOperation, e.FormatError(buf));
}
catch (...) {
    fprintf(stderr, "An unknown error occurred\n");;
}
}

AQRecorder::MyInputBufferHandler

代码语言:javascript
复制
void AQRecorder::MyInputBufferHandler(  void *                              inUserData,
                                  AudioQueueRef                     inAQ,
                                  AudioQueueBufferRef                   inBuffer,
                                  const AudioTimeStamp *                inStartTime,
                                  UInt32                                inNumPackets,
                                  const AudioStreamPacketDescription*   inPacketDesc)
{
AQRecorder *aqr = (AQRecorder *)inUserData;
try
{

    if (inNumPackets > 0)
    {
        AudioFileWritePackets(aqr->mRecordFile, FALSE, inBuffer->mAudioDataByteSize, inPacketDesc, aqr->mRecordPacket, &inNumPackets, inBuffer->mAudioData);

        aqr->mRecordPacket += inNumPackets;

        int MP3_SIZE =inNumPackets * 4;
        unsigned char mp3_buffer[MP3_SIZE];

        memset(mp3_buffer, 0, sizeof(mp3_buffer));
    //  int encodedBytes=lame_encode_buffer_interleaved(lame, (short int*)inBuffer->mAudioData , inNumPackets, mp3_buffer, MP3_SIZE);

        int encodedBytes = lame_encode_buffer(aqr->lame, (short int*)inBuffer->mAudioData,  (short int*)inBuffer->mAudioData, inNumPackets, mp3_buffer, MP3_SIZE);

        [aqr->delegate.mp3AudioData appendBytes:mp3_buffer length:encodedBytes];

        if (inBuffer->mAudioDataByteSize != 0) {
        }
        else
        {
            int encode=lame_encode_flush(aqr->lame, mp3_buffer, MP3_SIZE);
            [aqr->delegate.mp3AudioData appendBytes:mp3_buffer length:encode];
        }

        {
            NSLog(@"------------");
            NSLog(@"%d",encodedBytes);
            NSLog(@"%lu",inNumPackets);
            NSLog(@"%d",MP3_SIZE);
            NSLog(@"------------");
        }
    }

    if (aqr->IsRunning())
    {
        AudioQueueEnqueueBuffer(inAQ, inBuffer, 0, NULL);
    }
} catch (CAXException e)
{
    char buf[256];
    fprintf(stderr, "Error: %s (%s)\n", e.mOperation, e.FormatError(buf));
}
}
票数 -2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18371708

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档