我有文件位置05-11 22:43:41.793: D/Play audio(9996): /storage/emulated/0/QRSpeech/sounds/Introduction_to_Android_1.3gpp
我想使用MediaPlayer
下面的代码来播放这个文件:
mediaPlayer.setDataSource(tempDestFile);
mediaPlayer.prepare();
mediaPlayer.start();
其中tempDestFile
是上面打印的文件路径。
没有声音?为什么 ?