How convert audio raw to flac in Android
问题 I recording audio with class audoiRecord. Now I want convert audio raw file to *flac format. I convert *raw file to wav next way: private void copyWaveFile(String inFilename,String outFilename){ FileInputStream in = null; FileOutputStream out = null; long totalAudioLen = 0; long totalDataLen = totalAudioLen + 36; long longSampleRate = sampleRate; int channels = 2; long byteRate = RECORDER_BPP * sampleRate * channels/8; byte[] data_pcm = new byte[mAudioBufferSize]; try { in = new