开发者

Android PVMFErrResourceConfiguration in Video play

开发者 https://www.devze.com 2023-03-26 17:54 出处:网络
I used the following code for playing a progressive steaming video. path = \"http://www.languagehostess.com/videos/aka1.mp4\";

I used the following code for playing a progressive steaming video.

path = "http://www.languagehostess.com/videos/aka1.mp4";
Uri myUri = Uri.parse(path);
mMediaPlayer = new MediaPlayer();
mMediaPlayer.setDataSource(this,myUri);
mMediaPlayer.setDisplay(holder);
mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mMediaPlayer.prepare();
mMediaPlayer.setOnBufferingUpdateListener(this);
mMediaPlayer.setOnCompletionListener(this);
mMediaPlayer.setOnPreparedListener(this);
mMediaPlayer.setOnVideoSizeChangedListener(this);

Initially it is giving PVMFErrContentInvalidForProgressivePlayback error. To solve it, I use MP4Box with "hint for rtp/rtsp" and mux it to solve moov/mdat problem. When I upload the new muxed file and try to play it, it is giving PVMFErrResourceConfiguration error. What is the problem in my code or video?

Addition: This problem is arising in Android 2.1, But in Android 2.2, it is wor开发者_运维问答king fine. Does Android 2.1 not support progressive MP4 video steaming?

0

精彩评论

暂无评论...
验证码 换一张
取 消