gpt4 book ai didi

android - 如何保存内部存储器中录制的音频

转载 作者:行者123 更新时间:2023-12-01 16:28:35 25 4
gpt4 key购买 nike

我正在开发的Android应用程序;它有录音选项;我希望它将新的音频录制文件保存在设备的内部存储中,以便用户和其他应用程序都无法访问这些录制的音频文件,除非他们打开我的应用程序。

我的主要困难是能够将该音频文件保存在内部存储中:我花时间回顾了我的 Android 编程书籍并在这里阅读了一些问题和答案:How to save an audio file in internal storage androidhttps://developer.android.com/guide/topics/data/data-storage#filesInternalhttps://www.tutorialspoint.com/android/android_internal_storage.htm但不幸的是,我从那里得到的东西根本无法解决我的问题。

我用来记录的代码如下:

        private MediaRecorder rec;
private String file_folder="/scholar/";


String
file_path=Environment.getExternalStorageDirectory().getPath();

File file= new File(file_path,file_folder);

Long date=new Date().getTime();
Date current_time = new Date(Long.valueOf(date));

rec=new MediaRecorder();

rec.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
rec.setAudioChannels(1);
rec.setAudioSamplingRate(8000);
rec.setAudioEncodingBitRate(44100);
rec.setOutputFormat(MediaRecorder.AudioEncoder.AMR_NB);
rec.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

if (!file.exists()){
file.mkdirs();
}
/*the file here this one:File file= new File(file_path,file_folder);
it means the value of the outputfile is the one which will be provided by
rec.setOutputFile() method, so it will be saved as this name:

file.getAbsolutePath()+"/"+"_"+current_time+".amr"

*/
rec.setOutputFile(file.getAbsolutePath()+"/"+"_"+current_time+".amr");

try {
rec.prepare();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(Recording_Service.this,"Sorry! file creation failed!",Toast.LENGTH_SHORT).show();
return;
}
rec.start();

rec.stop();
rec.reset();

不幸的是,我在那里所做的是将我的文件保存在外部存储上,这意味着录制后,设备文件资源管理器中的每个人都可以看到该文件,他们甚至可以删除该文件。

那么!拜托,我需要你们的帮助,如果有任何帮助,我将不胜感激。谢谢!

最佳答案

我找到了这个问题的答案,我使用了getFilesDir();

       private MediaRecorder rec;
String file_path=getApplicationContext().getFilesDir().getPath();

File file= new File(file_path);

Long date=new Date().getTime();
Date current_time = new Date(Long.valueOf(date));

rec=new MediaRecorder();

rec.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
rec.setAudioChannels(1);
rec.setAudioSamplingRate(8000);
rec.setAudioEncodingBitRate(44100);
rec.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
rec.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

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

String file_name=file+"/"+current_time+".3gp";
rec.setOutputFile(file_name);

try {
rec.prepare();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(Recording_Service.this,"Sorry! file creation failed!"+e.getMessage(),Toast.LENGTH_SHORT).show();
return;
}
rec.start();

rec.stop();
rec.reset();

感谢所有试图帮助我回答的人。让我们继续享受编码的乐趣,让我们的世界变得更加甜蜜、愉快和愉快。

关于android - 如何保存内部存储器中录制的音频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62102307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com