我已阅读网上提供的所有错误代码。
错误指定:
const PVMFStatus PVMFInfoLast = 100; “结束范围的占位符”
但是我无法处理这个错误,谢谢你的帮助。
答案 0 :(得分:12)
将OnErrorListener实现到您的类。
在类体内写
video_view.setOnErrorListener(this);
然后用这个方法覆盖方法OnError(MediaPlayer mp,int what,int extra)
@Override
public boolean onError(MediaPlayer mp, int what, int extra)
{
if (what == 100)
{
video_view.stopPlayback();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
else if (what == 1)
{
pb2.setVisibility(View.GONE);
Log.i("My Error ", "handled here");
video_view.stopPlayback();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
else if(what == 800)
{
video_view.stopPlayback();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
else if (what == 701)
{
video_view.stopPlayback();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
else if(what == 700)
{
video_view.stopPlayback();
Toast.makeText(getApplicationContext(), "Bad Media format ", Toast.LENGTH_SHORT).show();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
else if (what == -38)
{
video_view.stopPlayback();
Intent inn = new Intent(HelloInterruptVideoStream.this,TabAct.class);
startActivity(inn);
}
return false;
}
答案 1 :(得分:8)
我在Android 1.5上遇到过这个问题。
mMP = new MediaPlayer();
mMP.setOnCompletionListener(new CompletionListener());
mMP.setOnErrorListener(new ErrorListener());
final FileInputStream fileInStream = new FileInputStream(mFileName);
mMP.setDataSource(fileInStream.getFD());
mMP.prepare();
mMP.play();
01-14 01:57:26.248: W/MediaPlayer(1971): MediaPlayer server died!
01-14 01:57:26.258: E/MediaPlayer(1971): error (100, 0)
01-14 01:57:26.258: E/MediaPlayer(1971): Error (100,0)
当mp3文件持续时间小于1秒时发生。这是一个android.media.MediaPlayer
错误。
解决方案是让mp3文件的持续时间超过1秒。