- 授权协议: LGPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://www.tagtraum.com/jipes/index.html
- 软件文档: http://www.tagtraum.com/jipes/getting_started.html
软件介绍
Jipes 是一个开源的 Java 类库用于高效的计算音频特效,可获取音频文件的元数据信息。
示例代码:
SignalPipeline<AudioBuffer, Float> pipeline = new SignalPipeline<AudioBuffer, Float>(
new Mono(),
zeroCrossingRateProcessor
);
SignalPump<AudioBuffer> stereoPump = new SignalPump<AudioBuffer>(new AudioSignalSource(new File("stereo.wav")));
stereoPump.add(pipeline);
Map<Object, Object> results = stereoPump.pump();
Float zeroCrossingRate = (Float)results.get(id);
Linux Device Drivers
Jonathan Corbet、Alessandro Rubini、Greg Kroah-Hartman / O'Reilly Media / 2005-2-17 / USD 39.95
Device drivers literally drive everything you're interested in--disks, monitors, keyboards, modems--everything outside the computer chip and memory. And writing device drivers is one of the few areas ......一起来看看 《Linux Device Drivers》 这本书的介绍吧!
