java - 无法使用 MediaPlayer 播放反转的 .wav 文件

标签 java android wav

我创建了一个应用程序来录制音频,将样本保存到 SD 卡,然后使用录制和播放按钮进行播放。我需要反转这个样本。我可以做所有这些,并且反转样本以不同的名称保存在 SD 卡上。原始样本是test.wav,同样的样本反转保存为revFile.wav。当我尝试播放 revFile.wav 时,android 说它无法播放这种格式。

我已经将样本随意地放入一个数组中,然后反转内容,有些东西告诉我样本的开头可能有标题信息,需要首先进行 strip 化,任何想法。谢谢。

这是我目前所拥有的。

public class recorder extends Activity  {
    MediaRecorder myRecorder = null;
    DataInputStream dis = null;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
    public void onClickPlay(View v){
        Log.v("onClickplay", "play clicked");

        try{
            MediaPlayer mp = new MediaPlayer();
            mp.setDataSource(Environment.getExternalStorageDirectory().getPath() + "/test.wav");
            mp.prepare();
            mp.start();
        } catch(Exception e3) {
            e3.printStackTrace();
        }
        TextView text = (TextView)findViewById(R.id.TextView01);
        text.setText("playing");
    }

    public void onClickRecord(View v){
        Log.v("onClickRecord", "record clicked");

        File path = Environment.getExternalStorageDirectory();
        Log.v("file path", ""+path.getAbsolutePath());

        File file = new File(path, "test.wav");
        if(file.exists()){
            file.delete();
        }
        path.mkdirs();
        Log.v("file path", ""+file.getAbsolutePath());
        myRecorder = new MediaRecorder();
        myRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        myRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
        myRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

        myRecorder.setOutputFile(file.getAbsolutePath()); 
        Log.i("myrecorder", "about to prepare recording");
        try{
            myRecorder.prepare();
        } catch(Exception e) {
            e.printStackTrace();
        }

        Log.i("myrecorder", "prepared");
        myRecorder.start();   // Recording is now started
        Log.i("myrecorder", "recording");
        TextView text = (TextView)findViewById(R.id.TextView01);
        text.setText("recording");
    }

    public void onClickStop(View v){
        Log.v("onClickStop", "stop clicked");

            try{
             myRecorder.stop();
             myRecorder.reset();   // You can reuse the object by going back to setAudioSource() step
             myRecorder.release(); // Now the object cannot be reused
            }catch(Exception e){} 

            TextView text = (TextView)findViewById(R.id.TextView01);
             text.setText("recording stopped");

        }    



public void onClickReverse(View v){
        Log.v("onClickReverse", "reverse clicked");

        File f = Environment.getExternalStorageDirectory();
        String path = f.getAbsolutePath();
        path = path + "/test.wav";
        Log.v("path = ", ""+path);
        Log.v("dir = ", ""+f.getAbsolutePath());
        Log.v("test file exists? = ", ""+f.getAbsolutePath()+"/test.wav");

        File f2 = new File(path);
        Log.v("f2 = ", ""+f2.getAbsolutePath());

        try {
            InputStream is = new FileInputStream(f2);
            BufferedInputStream bis = new BufferedInputStream(is);
            dis = new DataInputStream(bis);
        } catch (Exception e) {
            e.printStackTrace();
        }

        int fileLength = (int)f2.length();
        byte[] buffer = new byte[fileLength];

        /*File reversedFile = Environment.getExternalStorageDirectory();
          File revFile = new File(reversedFile, "reversedFile.wav");
          Log.v("reversedfile path", ""+ revFile.getAbsolutePath());

          if(revFile.exists()){
              revFile.delete();
          }

          reversedFile.mkdirs();
    */

        byte[] byteArray = new byte[fileLength +1];
        Log.v("bytearray size = ", ""+byteArray.length);

        try {
            while(dis.read(buffer) != -1 ) {
                dis.read(buffer);
                Log.v("about to read buffer", "buffer");

                byteArray = buffer;
            }

            Log.v(" buffer size = ", ""+ buffer.length);
        } catch (IOException e) {
            e.printStackTrace();
        }

          byte[] tempArray = new byte[fileLength];

          int j=0;
          for (int i=byteArray.length-1; i >=0; i--) {
              tempArray[ j++ ] = byteArray[i];
          }

          File revPath = Environment.getExternalStorageDirectory();
          Log.v("revpath path", ""+revPath.getAbsolutePath());

          File revFile = new File(revPath, "revFile.wav");
          Log.v("revfile path ", ""+revFile.getAbsolutePath());
          if(revFile.exists()){
              revFile.delete();
          }

          revPath.mkdirs();

          try {
              OutputStream os = new FileOutputStream(revFile);
              BufferedOutputStream bos = new BufferedOutputStream(os);
              DataOutputStream dos = new DataOutputStream(bos);
              Log.v("temparray size = ", ""+ tempArray.length);
              dos.write(tempArray);
              dos.flush();
              dos.close();
          } catch (Exception e) {
              e.printStackTrace();
          }

          try{
              MediaPlayer mp = new MediaPlayer();
              mp.setDataSource(Environment.getExternalStorageDirectory().getPath()
                                                                    +"/revFile.wav");

              mp.prepare();
              mp.start();
         } catch(Exception e3) {
                e3.printStackTrace();
         }
          TextView text = (TextView)findViewById(R.id.TextView01);
           text.setText("playing reversed file");
      }

}// end of onclickrev

最佳答案

WAV 文件格式包括一个 44 字节的 header block 。大多数 WAV 文件都包含这个 44 字节的 header ,后面是实际的样本数据。因此,要反转 WAV 文件,您应该首先从原始文件中复制 44 字节的 header ,然后在 header 之后从原始文件中复制反向样本数据。如果只是把原来整个文件的字节顺序倒过来,那肯定不行。如果您复制 header 然后反转文件其余部分的字节顺序,它也不会工作(实际上它会某种工作,除了您得到的只是噪音)。您实际上需要反转,其中帧大小取决于每个样本的字节数以及文件是立体声还是单声道(例如,如果文件是立体声且每个样本 2 个字节, 那么每一帧就是4个字节)。

请注意,并非所有 WAV 文件都像这样“规范”。 WAV 文件实际上是 RIFF 文件的变体,因此从技术上讲,您需要更复杂的代码才能在原始文件中找到 header 和样本数据的各个部分。然而,大多数 WAV 文件只是标题后面是样本(如果您自己录制音频,这肯定是正确的),在这种情况下,您可以节省很多工作。

Joe Cullity 的链接很好地描述了 WAV 文件格式。

关于java - 无法使用 MediaPlayer 播放反转的 .wav 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4771933/

相关文章:

java - 使用 glide 从服务器加载图像

java - HttpServletResponse.sendError() 不重定向到错误页面

java - 如果 catch 语句返回,那么为什么它最终会阻塞?

java - 无法找到显式 Activity 类并且无法实例化 Activity

java - 为什么 new FileWriter ("abc.txt") 创建一个新文件而 new File ("abc.txt") 不创建?

javascript - 地理位置共享对话框不会在每次页面刷新时显示

java - 安卓和微软 Access

ffmpeg - 如何使用 ffmpeg 删除所有元数据?

vb.net - 将.WAV文件存储在变量中

c# - 从多个 WAV 文件中删除 header ,然后将剩余数据连接到一个 RAW 文件中