5

How I can get an audio file recorded via iPhone to play back in Android.

Jonik
  • 80,077
  • 70
  • 264
  • 372
Newy
  • 38,977
  • 9
  • 43
  • 59
  • If you're just looking to play it, VLC for android can play CAF files on device. I am not sure how it does it but it can. – Grayson Lynch Jul 16 '21 at 11:24

3 Answers3

0

I don't see iLBC codec listed in the decoder section of Android supported media formats

Looking at the iPhone list of supported audio formats: iPhone audio formats, it looks like if you're just going iPhone => Android, then AAC or PCM are your best bets for encoding on iPhone, decoding on Android.

typo.pl
  • 8,812
  • 2
  • 28
  • 29
0

You should record your audio on iPhone with AVAudioRecorder .wav format. See this thread how to configure AVAudioRecorder to get wav format on iOS.

Good luck

Community
  • 1
  • 1
fyasar
  • 3,996
  • 2
  • 42
  • 55
-2

In terms of a built-in capability you can check the documentation as easily as I can.

Assuming no built-in capability, if you have working java, C, or (with caveats) C++ code capable of decoding the file to linear pcm samples and no legal obstacles to using it, then you can write an application to do so.

Chris Stratton
  • 39,853
  • 6
  • 84
  • 117