我们正在尝试使用javaFlacEncoder将wav文件转换为flac。
呼叫成功并创建了一个文件。但该文件根本没有音频内容。
代码非常简单:
val flacEncoder = new FLAC_FileEncoder()
val path = Paths.get(wavPath)
val outputFile = File.createTempFile("talkingbirdTemp", ".flac")
val status = flacEncoder.encode(path.toFile, outputFile)
if (status != Status.FULL_ENCODE) {
outputFile.delete
throw new RuntimeException("FLAC conversion failed with: " + status)
}
wav文件采样率为22050.生成的文件根本没有有效的音频信号。
我们做错了什么?
答案 0 :(得分:0)
您确定要在java中编写代码吗?