0
我試圖以wav格式錄製音頻,並且我成功了,但是當我嘗試播放該文件時,它給出了'媒體文件是不支持的格式'。無法播放我通過黑莓編碼錄製的.wav聲音
的代碼的主要部分如下:
player = Manager.createPlayer("capture://audio?encoding=pcm&rate=44100&bits=16&channels=1");
player.realize();
controller = (RecordControl) player.getControl("RecordControl");
controller.setRecordLocation("file:///SDCard/BlackBerry/voicenotes/voice.wav");
//controller.setRecordSizeLimit(396900);
controller.startRecord();
player.start();
Thread.sleep(7000);
controller.commit();
player.close();
此代碼工作得很好,它給了我一個voice.wav文件,但我不能玩這個file.Is有一些東西,我忘了?
在此先感謝。