黑莓是否可以录制语音并以编程方式播放。 请告诉我一下我们如何实现这一目标。 如果可能的话,任何参考链接。
提前致谢。
答案 0 :(得分:1)
试试这个。
- 记录代码
Player player = Manager.createPlayer("capture://audio?encoding=amr");
RecordControl recorder = (RecordControl)player.getControl("RecordControl");
recorder.setRecordLocation("file:///SDCard/BlackBerry/Music/recordingFile.amr");
recorder.startRecord();
player.start();
Thread.sleep(5000);
recorder.commit();
player.close();
- 播放代码
Player music = Manager.createPlayer("file:///SDCard/BlackBerry/Music/Musicfile.mp3");
music.realize();
music.start();