Hi,
I have got an audio file which is quite quiet. I'd am playing it using AVAudioPlayer, but I can barely hear anything, especially without headphones.
Is there a way to increase the volume of an audio record?
Thanks.
Hi,
I have got an audio file which is quite quiet. I'd am playing it using AVAudioPlayer, but I can barely hear anything, especially without headphones.
Is there a way to increase the volume of an audio record?
Thanks.
You have a volume property for that. If even at it's highest setting the volume is still too low, I think you should edit the media file in some kind of music editor (i.e. Audacity) and increase the volume there.
player.volume = 2.0;
The doco says that volume is "nominally" between 0 and 1.0,
which seems to suggest that you can overdrive it.
Good luck, and try not to accidentally deafen users.