diff --git a/lib/pages/chat/recording_dialog.dart b/lib/pages/chat/recording_dialog.dart index 881727af7..2546cdbde 100644 --- a/lib/pages/chat/recording_dialog.dart +++ b/lib/pages/chat/recording_dialog.dart @@ -31,9 +31,6 @@ class RecordingDialogState extends State { final _audioRecorder = AudioRecorder(); final List amplitudeTimeline = []; - static const int bitRate = - 64000; // Lower makes the audio messages unplayable on iOS for some reason - Future startRecording() async { try { // We try to pick Opus where supported, since that is a codec optimized @@ -60,7 +57,6 @@ class RecordingDialogState extends State { autoGain: true, noiseSuppress: true, echoCancel: true, - bitRate: bitRate, ), path: path, );