Android 录音有暂停/恢复功能吗?

发布于 2024-12-03 12:54:41 字数 101 浏览 0 评论 0原文

我看过很多 Android 语音录制教程,但没有找到任何有关暂停/恢复功能的教程。

有人可以指导我吗?这在 Android 中可能吗? 如果可以的话能提供一下代码示例吗?

I have seen so many voice recording tutorials for Android but I did not find any tutorials for a pause/resume feature.

Can any one guide me? Is this possible in Android or not
If it is possible, can you provide a code example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愚人国度 2024-12-10 12:54:41

AudioRecorder 不支持暂停/恢复。您需要停止它并重新启动它。

此外,您还需要连接音频文件:合并 pcm 音频文件

AudioRecorder does not support pause/resume. You will need to stop it and restart it.

Also you'll need to concatenate audio files: Merging pcm audio files

公布 2024-12-10 12:54:41
    byte fileContent[]=null;
    FileInputStream ins;
    FileOutputStream fos = null;
    try{
        fos = new FileOutputStream(getFilename(),true);
        Log.i(TAG, "OutputFile created");
    }
    catch (FileNotFoundException e1){
        // TODO Auto-generated catch block
        Log.i(TAG, "OutputFile Not created");
        e1.printStackTrace();
    }
    for(int i=1;i<listOfFilesToCombine.size();i+=2){
        try{
            File f=new File(listOfFilesToCombine.get(i));
            Log.v("TAG", "File Length:"+f.length());
            fileContent = new byte[(int)f.length()];
            ins=new FileInputStream(listOfFilesToCombine.get(i));
            int r=ins.read(fileContent);
            Log.v("TAG", "Number Of Bytes Readed:"+r);
            if(i>1){
                byte[] headerlessFileContent = new byte[fileContent.length-6];
                for(int j=6; j<fileContent.length;j++){
                    headerlessFileContent[j-6] = fileContent[j];
                }
                fileContent = headerlessFileContent;
            }
            fos.write(fileContent);         
            Log.v("TAG", "File"+i+"is Appended");
        }
        catch (FileNotFoundException e){
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        catch (IOException e) 
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    try{
        fos.close();
        Log.v("Record Message", "===== Combine File Closed =====");
    }
    catch (IOException e){
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    byte fileContent[]=null;
    FileInputStream ins;
    FileOutputStream fos = null;
    try{
        fos = new FileOutputStream(getFilename(),true);
        Log.i(TAG, "OutputFile created");
    }
    catch (FileNotFoundException e1){
        // TODO Auto-generated catch block
        Log.i(TAG, "OutputFile Not created");
        e1.printStackTrace();
    }
    for(int i=1;i<listOfFilesToCombine.size();i+=2){
        try{
            File f=new File(listOfFilesToCombine.get(i));
            Log.v("TAG", "File Length:"+f.length());
            fileContent = new byte[(int)f.length()];
            ins=new FileInputStream(listOfFilesToCombine.get(i));
            int r=ins.read(fileContent);
            Log.v("TAG", "Number Of Bytes Readed:"+r);
            if(i>1){
                byte[] headerlessFileContent = new byte[fileContent.length-6];
                for(int j=6; j<fileContent.length;j++){
                    headerlessFileContent[j-6] = fileContent[j];
                }
                fileContent = headerlessFileContent;
            }
            fos.write(fileContent);         
            Log.v("TAG", "File"+i+"is Appended");
        }
        catch (FileNotFoundException e){
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        catch (IOException e) 
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    try{
        fos.close();
        Log.v("Record Message", "===== Combine File Closed =====");
    }
    catch (IOException e){
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文