Audio, best option to record in mp3 (android)

Im trying to use the Audio recording, which is currently working.

My current problem is with the Recording options. I need to record in mp3 format, which of the outputFormat and audioEncoder are the best for mp3 format? (for outputFormat and audioEncoder)

Currently I’m using:

const quality: RecordingOptions = {
            android: {
                extension: '.mp3',
                outputFormat: RECORDING_OPTION_ANDROID_OUTPUT_FORMAT_MPEG_4,
                audioEncoder: RECORDING_OPTION_ANDROID_AUDIO_ENCODER_DEFAULT,
                sampleRate: 44100,
                numberOfChannels: 2,
                bitRate: 128000,
            },
            ios: {
                extension: '.caf',
                audioQuality: RECORDING_OPTION_IOS_AUDIO_QUALITY_MAX,
                sampleRate: 44100,
                numberOfChannels: 2,
                bitRate: 128000,
                linearPCMBitDepth: 16,
                linearPCMIsBigEndian: false,
                linearPCMIsFloat: false,
            },
        };

thanks

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.