vikeyToy 2013-05-17 05:55 采纳率: 0%
浏览 2673

转码mp3格式时显示进度条。

使用 LAME 将.caf音频文件编码为.mp3文件。

只有一个问题,需要计算转换文件的时间,用UIProgressView给用户显示转换进度,这点实现不了。

NSArray *dirPaths;
NSString *docsDir;

dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
docsDir = [dirPaths objectAtIndex:0];
_mp3FilePath = [docsDir stringByAppendingPathComponent:@"file.mp3"];

NSString* cafFile = [[NSBundle mainBundle] pathForResource:@"background" ofType:@"caf"];
char cstr[512] = {0};
[cafFile getCString:cstr maxLength:512 encoding:NSASCIIStringEncoding];
@try {
    int read, write;
    FILE *pcm = fopen([cafFile cStringUsingEncoding:1], "rb");
    FILE *mp3 = fopen([_mp3FilePath cStringUsingEncoding:1], "wb");
    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, 44100);
    lame_set_VBR(lame, vbr_default);
    lame_init_params(lame);

    NSFileManager *fileManger = [NSFileManager defaultManager];
    NSData *data = [fileManger contentsAtPath:cafFile];
    NSString* str = [NSString stringWithFormat:@"%d K",[data length]/1024];
    NSLog(@"size of caf=%@",str);

    printf("Using LAME v%s\n", get_lame_version());

    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 {
    //Detrming the size of mp3 file
    NSFileManager *fileManger = [NSFileManager defaultManager];
    NSData *data = [fileManger contentsAtPath:_mp3FilePath];
    NSString* str = [NSString stringWithFormat:@"%d K",[data length]/1024];
    NSLog(@"size of mp3=%@",str);
}
  • 写回答

1条回答 默认 最新

  • LPPloveROU 2013-05-17 06:52
    关注

    我建议使用lame_set_num_samples ,像这样:

    int sampleRate = 44100;
    int bitsPerSample = 16;
    int numberOfChannels = 2;
    lame_t lame = lame_init();
    lame_set_in_samplerate(lame, 44100);
    lame_set_VBR(lame, vbr_default);
    lame_init_params(lame);
    NSString* cafFile = [[NSBundle mainBundle] pathForResource:@"background" ofType:@"caf"];
    char cstr[512] = {0};
    [cafFile getCString:cstr maxLength:512 encoding:NSASCIIStringEncoding];
    int fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:cafFile error:nil] fileSize];
    int duration = (fileSize * 8) / (sampleRate * bitsPerSample * numberOfChannels);
    lame_set_num_samples(lame, (duration * sampleRate));
    lame_get_num_samples(lame);
    int percent     = 0;
    int samp_rate   = lame_get_out_samplerate(lame);
    int frameNum    = lame_get_frameNum(lame);
    int totalframes = lame_get_totalframes(lame);
    
    if (frameNum < totalframes) {
            percent = (int) (100. * frameNum / totalframes + 0.5);
        }
        else {
            percent = 100;
        }
    float progress = (float) percent/100;
    dispatch_async(dispatch_get_main_queue(), ^{
           self.percentageLabel.text = [NSString stringWithFormat:@"%d%%",percent];
           self.progressBar.progress =  progress;
    
        });
    
    评论

报告相同问题?

悬赏问题

  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误