Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルサイズを見てiLBCの声の長さを知ることはできますか? これのための式はありますか?
ファイルサイズは音声の長さに正比例しますか?
NSFileManager を使用するだけです:
NSFileManager *fm = [[NSFileManager alloc] init]; NSDictionary *attrs = [fm attributesOfItemAtPath:recordedFile.path error: NULL]; NSLog(@"File size: %@", [NSString stringWithFormat:@"%lld", [attrs fileSize]]);