0

ファイルサイズを見てiLBCの声の長さを知ることはできますか? これのための式はありますか?

ファイルサイズは音声の長さに正比例しますか?

4

1 に答える 1

0

NSFileManager を使用するだけです:

NSFileManager *fm = [[NSFileManager alloc] init];
NSDictionary *attrs = [fm attributesOfItemAtPath:recordedFile.path error: NULL];
NSLog(@"File size: %@", [NSString stringWithFormat:@"%lld", [attrs fileSize]]);
于 2012-11-07T09:28:56.820 に答える