我正在尝试使用 MediaPlayer 类创建从互联网即时传输广播的应用程序,并且工作正常。
我想将录制功能添加到应用程序中,我使用 MediaRecorder 类进行此设置
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
但我抓住了麦克风的声音。我只想录制流声音。
我可以做什么 ?