如何以编程方式将录制的音频文件保存在另一个文件夹中?

2023-12-02

我试图将录制的音频文件保存在我希望的文件夹中,而不是默认文件夹中。但不知何故我没能做到。

my code:

Intent recordIntent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION);
Uri mUri = Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "/Record/sound_"+ String.valueOf(System.currentTimeMillis()) + ".amr"));
recordIntent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, mUri);
startActivityForResult(recordIntent, RESULT_OK);

它确实调用了录音机应用程序。而且当我按下停止按钮时,它会返回到我的应用程序,并出现一个吐司,表示已保存。但是,它不是保存在我的 Record 文件夹中,而是保存在默认文件夹中。

我意识到 logcat 中有错误消息:

01-29 01:34:23.900: E/ActivityThread(10824): Activity com.sec.android.app.voicerecorder.VoiceRecorderMainActivity has leaked ServiceConnection com.sec.android.app.voicerecorder.util.VRUtil$ServiceBinder@405ce7c8 that was originally bound here

我不确定出了什么问题,因为当我调用相机应用程序时代码有效。


这样做,用 MediaRecorder 进行录制:

开始录音:

public  void startRecording()
        {


                MediaRecorder recorder = new MediaRecorder();

                recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
                recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
                recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
                recorder.setOutputFile(getFilename());

                recorder.setOnErrorListener(errorListener);
                recorder.setOnInfoListener(infoListener);

                try 
                {
                        recorder.prepare();
                        recorder.start();
                } 
                catch (IllegalStateException e) 
                {
                        e.printStackTrace();
                } catch (IOException e) 
                {
                        e.printStackTrace();
                }
        }

To Stop:

 private void stopRecording()
    {


            if(null != recorder)
            {     
                    recorder.stop();
                    recorder.reset();
                    recorder.release();
                   recorder = null;
            }

对于选定的文件夹:

 private String getFilename()
        {
                String filepath = Environment.getExternalStorageDirectory().getPath();
                File file = new File(filepath,AUDIO_RECORDER_FOLDER);

                if(!file.exists()){
                        file.mkdirs();
                }

                return (file.getAbsolutePath() + "/" + System.currentTimeMillis() + ".mp3");
        }
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

如何以编程方式将录制的音频文件保存在另一个文件夹中? 的相关文章

随机推荐