English 中文(简体)
如何确定 8bit WAV 文件是否签名或未签名, 使用 Java 且不带 Javax. sound
原标题:How to determine if 8bit WAV File is signed or unsigned, using Java and without javax.sound

我需要知道8位数的“.wav”是否签名或未签名的PCM, 只需读取文件即可。 我不能使用“ javax. sound. samped. * ” 或音频系统库 。

最佳回答

In the wav File, 8-bit samples are stored as unsigned bytes, ranging from 0 to 255. The 16-bit samples are stored as signed integers in 2 s-complement.

问题回答

8位(或以下) WAV 文件总是没有签名。 9位或以上总是签名:

每个样本都包含在整数 i 中。 i 的大小是需要包含指定样本大小的最小字节数。最小的字节首先存储。代表样本振幅的位数存储在最显著的 i 位数中,剩下的位数被设为零。

For example, if the sample size (recorded in nBitsPerSample) is 12 bits, then each sample is stored in a two-byte integer. The least significant four bits of the first (least significant) byte is set to zero.

不同尺寸的PCM波形样品的数据格式、最大值和最低值如下:

Multimedia Programming Interface and Data Specifications 1.0 - IBM/Microsoft, August 1991





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签