求J2ME音频或者视频播放器代码
答案:2 悬赏:20 手机版
解决时间 2021-08-11 06:46
- 提问者网友:呐年旧曙光
- 2021-08-10 19:02
求J2ME音频或者视频播放器代码,另外,WAV格式的音频为什么要等一段时间才能放,而且并不是所有的WAV都能放?
最佳答案
- 五星知识达人网友:老鼠爱大米
- 2021-08-10 19:59
从网上可以搜到的,我就是从网上搜的
全部回答
- 1楼网友:神鬼未生
- 2021-08-10 21:21
规范:Mobile Media API (JSR-135)
平台:J2ME
类/接口:javax.microedition.media.control.RecordControl
方法:
setRecordLocation(java.lang.String locator) //设定录音输出的位置
startRecord() //开始
stopRecord() //结束
commit() //提交录音
示范Java代码:
// Create a Player that captures live audio.
Player p = Manager.createPlayer("capture://audio");
p.realize();
// Get the RecordControl, set the record stream,
// start the Player and record for 5 seconds.
RecordControl rc = (RecordControl)p.getControl("RecordControl");
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯