博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java Sound Technology
阅读量:6224 次
发布时间:2019-06-21

本文共 1319 字,大约阅读时间需要 4 分钟。

hot3.png

The Java Platform includes a powerful API for capturing, processing, and playing back audio and MIDI (Musical Instrument Digital Interface) data. This API is supported by an efficient sound engine which guarantees high-quality audio mixing and MIDI synthesis capabilities for the platform.

The provided reference implementation of this API supports the following features:

  • Audio file formats: AIFF, AU and WAV
  • Music file formats: MIDI Type 0, MIDI Type 1, and Rich Music Format (RMF)
  • Sound formats: 8-bit and 16-bit audio data, in mono and stereo, with sample rates from 8 kHz to 48 kHz
  • Linear, a-law, and mu-law encoded data in any of the supported audio file formats
  • MIDI wavetable synthesis and sequencing in software, and access to hardware MIDI devices
  • An all-software mixer that can mix and render up to 64 total channels of digital audio and synthesized MIDI music

The above list describes the reference implementation, not the API itself. The API permits flexible configuration of the audio and MIDI system, including ways for applications to ask the system exactly what resources are installed and available.

API Reference

Tutorials and Programmer's Guides

  •  - A conceptual description of the Java Sound API, with code examples.

API Enhancements

More Information

转载于:https://my.oschina.net/u/3134761/blog/2050045

你可能感兴趣的文章
什么是构建工具
查看>>
HSF调用Dubbo
查看>>
Web工程中各类地址的写法
查看>>
openStack queens 功能验证调试
查看>>
如何在 Django 中保证并发的数据一致性
查看>>
查看library的依赖树
查看>>
MySQL一般查询日志或者慢查询日志历史数据的清理
查看>>
ubuntu的ufw如何开放特定端口?
查看>>
MySQL--MHA与GTID
查看>>
Laravel5.5 支付宝手机网站支付的教程
查看>>
TimeLine CSS/Javascript 时间线
查看>>
一篇文章了解架构师能力模型
查看>>
管理培训笔记
查看>>
SpringMVC上传图片总结(2)--- 使用百度webuploader上传组件进行上传图片
查看>>
numRecordsIn 在哪里实现?
查看>>
http keep-alive 解释
查看>>
Nginx或Apache通过反向代理配置wss服务
查看>>
用双十一的故事串起碎片的网络协议(下)
查看>>
python设计模式之猴子补丁模式
查看>>
Facade外观模式(结构性模式)
查看>>