Android - What is the maximum file size that setMaxFileSize can be set to in respect to Androids mediarecorder? I know it's somewhere between 4147483650 and 5147483650. Why is there a limit in the first place?

I'm recording on to a SDCARD, detecting the size of the cards space before we run.

"ERROR/AuthorDriver(31): setParameter(max-filesize = 7270309850) failed with result -5" "ERROR/AuthorDriver(31): Ln 903 handleSetParameters("max-filesize=7270309850") error" "ERROR/AndroidRuntime(409): java.lang.RuntimeException: setMaxFileSize failed."

link|improve this question

50% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Why is there a limit in the first place?

SD cards use the msdos (FAT16) filesystem, which has a file size limit. This is not an Android limitation, but a limitation of SD cards in general.

link|improve this answer
Thanks for the reply. Nice to know MS's legacy still bites...arrrgh!! – andy_spoo May 30 '10 at 13:31
feedback

I'm working on an android recorder as well.

use StatFs and pass the path of the external storage directory to the constructor and you can call functions such as getAvailableBlocks() and getBlockSize() on the StatFs object.

So that way you know how much more space is available on the SD card.

link|improve this answer
Ah yes, that was what I used. That part of it worked, it's just that when I create a file over the 4Gb, I got the problem above. If your recording to an 2Gb SD-card for example, you'll never see the limitations above. You could create 2 x 4Gb files and play one after another, with a tiny gap between. – andy_spoo Jul 13 '10 at 18:30
feedback

If you look in AuthorDriver.cpp, you'll see that it performs a check to see if the time value you passed in will fit into a 16bit int. There's a comment that reads "PV API expects this to fit in a uint16". So, yeah, there doesn't appear to be a way to get around this for now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.