Android mediaPlayer播放报PVMFErrNotSupported Prepare failed.: status=0x1解析
今天做android的一个音乐播放器时,当播放列表里的歌曲时,总是报一个错误:PVMFErrNotSupported
Prepare failed.: status=0x1
检查了半天也没看出是哪里的错误;但是将文件的权限或者文件所在目录的文件夹权限改成777,就可以正常播放了;后来经过查阅资料发现里面有一段代码:
try{
??? mp = new MediaPlayer();
??? mp.setDataSource(somePathToAudioFile);
??? mp.prepare();
??? mp.start();
}catch(Exception e){
}
里面mp.setDataSource(somePathToAudioFile);这个方法中调用的是setDataSource(String);在Java中有一个FileDescriptor;我们可以通过getFD()方法得到一个FileDescriptor;以避免这些错误;
代码修改后如下:
String audioFilePath = getFilesDir().getAbsolutePath() + File.separator + "aa.mp4";
???????
try {
??? File file = new File(audioFilePath);
??? FileInputStream fis = new FileInputStream(file);
??? mediaPlayer.setDataSource(fis.getFD());
??? mediaPlayer.prepare();
??? mediaPlayer.start();
} catch(FileNotFoundException e){
} catch (IllegalArgumentException e) {
} catch (IllegalStateException e) {
} catch (IOException e) {
}
经过测试通过;