unable to resync .      Signalling end of stream截图不知道怎么摆上来- -

解决方案 »

  1.   

    报错信息如下:
    <code lang='java' width='auto' height='auto'>MP3Extractor: Unable to resync. Signalling end of stream</code>使用代码:
    //针对指定资源创建播放对象
    mPlayer = MediaPlayer.create(ctx, resID);
    mPlayer.setVolume(1000, 1000);//监听播放结束事件
    mPlayer.setOnCompletionListener(new OnCompletionListener() {
    @Override public void onCompletion(MediaPlayer mp) {
    mPlaying = false;if(mLoop) {
    mp.start();
    }
    }
    });原文地址:解决MediaPlayer问题: [MP3Extractor: Unable to resync. Signalling end of stream]| http://orgcent.com/mediaplayer-mp3-unable-resync/