2014-11-04 31 views
0

我一直在爲我製作的應用程序編寫一些代碼,並且需要播放大型PCM文件(600mb以上)。如何通過AudioTrack播放大型PCM文件? (目前出現錯誤)

這是我的打法當前代碼()方法:

public void play(View view) { 
     Toast.makeText(this, "play", Toast.LENGTH_SHORT).show(); 

// Get the file we want to playback. 
     File file = new File(Environment.getExternalStorageDirectory() + File.separator + "ACS.pcm"); 
// Get the length of the audio stored in the file (16 bit so 2 bytes per short) 
// and create a short array to store the recorded audio. 
     int musicLength = (int)(file.length()/2); 
     short[] music = new short[musicLength]; 


     try { 
// Create a DataInputStream to read the audio data back from the saved file. 
      InputStream is = new FileInputStream(file); 
      BufferedInputStream bis = new BufferedInputStream(is); 
      DataInputStream dis = new DataInputStream(bis); 

// Read the file into the music array. 
      int i = 0; 
      while (dis.available() > 0) { 
       music[musicLength-1-i] = dis.readShort(); 
       i++; 
      } 


// Close the input streams. 
      dis.close(); 


// Create a new AudioTrack object using the same parameters as the AudioRecord 
// object used to create the file. 
      AudioTrack audioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, 
        44100, 
        AudioFormat.CHANNEL_OUT_MONO, 
        AudioFormat.ENCODING_PCM_16BIT, 
        musicLength, 
        AudioTrack.MODE_STREAM); 
// Start playback 
      audioTrack.play(); 

// Write the music buffer to the AudioTrack object 
      audioTrack.write(music, 0, musicLength); 


     } catch (Throwable t) { 
      Log.e("AudioTrack","Playback Failed"); 
     } 
    } 

然而上線的應用程序崩潰:short[] music = new short[musicLength]; 我相信這是因爲應用程序試圖創建一個非常大的一個數組大小,因此佔用了大量的內存(ram)。

從崩潰的logcat的是:

`11-03 16:31:03.654 16916-16916/com.bacon.corey.audiotimeshift I/art﹕ Alloc sticky concurrent mark sweep GC freed 6307(421KB) AllocSpace objects, 1(12KB) LOS objects, 33% free, 15MB/23MB, paused 678us total 14.444ms 
11-03 16:31:03.663 16916-16916/com.bacon.corey.audiotimeshift I/art﹕ Alloc partial concurrent mark sweep GC freed 213(22KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 15MB/26MB, paused 659us total 7.132ms 
11-03 16:31:03.679 16916-16916/com.bacon.corey.audiotimeshift I/art﹕ Alloc concurrent mark sweep GC freed 15(12KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 15MB/26MB, paused 830us total 14.191ms 
11-03 16:31:03.681 16916-16916/com.bacon.corey.audiotimeshift I/art﹕ Forcing collection of SoftReferences for 641MB allocation 
11-03 16:31:03.695 16916-16916/com.bacon.corey.audiotimeshift I/art﹕ Alloc concurrent mark sweep GC freed 11(344B) AllocSpace objects, 0(0B) LOS objects, 39% free, 15MB/26MB, paused 645us total 13.989ms 
11-03 16:31:03.700 16916-16916/com.bacon.corey.audiotimeshift E/art﹕ Throwing OutOfMemoryError "Failed to allocate a 672164876 byte allocation with 11094652 free bytes and 176MB until OOM" 
11-03 16:31:03.703 16916-16916/com.bacon.corey.audiotimeshift D/AndroidRuntime﹕ Shutting down VM 
11-03 16:31:03.713 16916-16916/com.bacon.corey.audiotimeshift E/AndroidRuntime﹕ FATAL EXCEPTION: main 
    Process: com.bacon.corey.audiotimeshift, PID: 16916 
    java.lang.IllegalStateException: Could not execute method of the activity 
      at android.view.View$1.onClick(View.java:4007) 
      at android.view.View.performClick(View.java:4756) 
      at android.view.View$PerformClick.run(View.java:19749) 
      at android.os.Handler.handleCallback(Handler.java:739) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at android.os.Looper.loop(Looper.java:135) 
      at android.app.ActivityThread.main(ActivityThread.java:5221) 
      at java.lang.reflect.Method.invoke(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:372) 
      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899) 
      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694) 
    Caused by: java.lang.reflect.InvocationTargetException 
      at java.lang.reflect.Method.invoke(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:372) 
      at android.view.View$1.onClick(View.java:4002) 
      at android.view.View.performClick(View.java:4756) 
      at android.view.View$PerformClick.run(View.java:19749) 
      at android.os.Handler.handleCallback(Handler.java:739) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at android.os.Looper.loop(Looper.java:135) 
      at android.app.ActivityThread.main(ActivityThread.java:5221) 
      at java.lang.reflect.Method.invoke(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:372) 
      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899) 
      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694) 
    Caused by: java.lang.OutOfMemoryError: Failed to allocate a 672164876 byte allocation with 11094652 free bytes and 176MB until OOM 
      at com.bacon.corey.audiotimeshift.MainActivity.play(MainActivity.java:87) 
      at java.lang.reflect.Method.invoke(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:372) 
      at android.view.View$1.onClick(View.java:4002) 
      at android.view.View.performClick(View.java:4756) 
      at android.view.View$PerformClick.run(View.java:19749) 
      at android.os.Handler.handleCallback(Handler.java:739) 
      at android.os.Handler.dispatchMessage(Handler.java:95) 
      at android.os.Looper.loop(Looper.java:135) 
      at android.app.ActivityThread.main(ActivityThread.java:5221) 
      at java.lang.reflect.Method.invoke(Native Method) 
      at java.lang.reflect.Method.invoke(Method.java:372) 
      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899) 
      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)` 

我已搜查谷歌,但我似乎無法找到打不先加載它的PCM文件轉換成短陣的任何方式。 如果有人知道解決方法,並不介意分享,我會非常感激。

感謝 科瑞

+0

嗨,感謝您的建議,但我試圖讓一個應用程序可以編輯需要PCM格式的音頻文件。感謝Corey – Fishingfon 2014-11-06 01:05:32

回答

2

的問題是,你想讀一個600多MB的文件到內存中一氣呵成,和你的應用程序無法獲得足夠的內存來做到這一點。

你需要做的是創建一個更小的緩衝區,並以塊讀取音頻文件,將每個塊寫入AudioTrack ...循環中。

(注:我只是從什麼AudoioTrackjavadoc說要去你會爲自己做的更好的閱讀吧...)

相關問題