Reputation: 111
I'm developing an android application that has over 111MB of mp3 files.
I need to compress these files and put them in my package (like raw folder) and after my app was installed on a device, it decompresses files to use them.
How could I do this? Is this possible?
Upvotes: 2
Views: 3387
Reputation: 2462
You can reduce mp3 file size by reducing the bit rate. Reducing the bit rate will result in smaller file size but lower quality, so you have to check what works best for you. You can improve the quality by using Variable Bit Rate (VBR) instead of Constant Bit Rate (CBR).
You can do that using a software such as Audacity.
Upvotes: 1